VendorOrderItemMaterial

Aggrosoft\WAWIBundle\Entity\VendorOrderItemMaterial
3
Columns
2
Relations
5
Properties

Relationships

Click entity to navigate
erDiagram
    VendorOrderItemMaterial {
                string id PK
                decimal quantity
                boolean notBookMaterialInProductionOrders
                    }
                VendorOrderItemMaterial }o--|| Product : "materialProduct"
        Product {
        int id PK
    }
                VendorOrderItemMaterial }o--|| VendorOrderItem : "orderItem"
        VendorOrderItem {
        int id PK
    }
                    

Metadaten

Tabelle vendororderitemmaterial
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
quantity quantity decimal
{{ entity.quantity }}
notBookMaterialInProductionOrders notBookMaterialInProductionOrders boolean
{{ entity.notBookMaterialInProductionOrders }}

Tipp: Diese Properties sind über Getter/Setter-Methoden in Twig verfügbar. Verwende {{ entity.propertyName }} zum Lesen.

Property Access Twig Usage Methods Return Type
id DB
read
{{ entity.id }}
getId()
string
quantity DB
read write
{{ entity.quantity }}
getQuantity()
setQuantity()
string
notBookMaterialInProductionOrders DB
read write
{{ entity.notBookMaterialInProductionOrders }}
getNotBookMaterialInProductionOrders()
setNotBookMaterialInProductionOrders()
boolean
materialProduct DB
read write
{{ entity.materialProduct }}
getMaterialProduct()
setMaterialProduct()
\Aggrosoft\WAWIBundle\Entity\Product
orderItem DB
read write
{{ entity.orderItem }}
getOrderItem()
setOrderItem()
\Aggrosoft\WAWIBundle\Entity\VendorOrderItem
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
materialProduct ManyToOne Product - - - {{ entity.materialProduct }}
orderItem ManyToOne VendorOrderItem - materials - {{ entity.orderItem }}
Keine Indexes definiert