OfferItemMaterial

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

Relationships

Click entity to navigate
erDiagram
    OfferItemMaterial {
                string id PK
                decimal quantity
                boolean notBookMaterialInProductionOrders
                    }
                OfferItemMaterial }o--|| Product : "materialProduct"
        Product {
        int id PK
    }
                OfferItemMaterial }o--|| OfferItem : "offerItem"
        OfferItem {
        int id PK
    }
                    

Metadaten

Tabelle offeritemmaterial
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
materialProduct DB
read write
{{ entity.materialProduct }}
getMaterialProduct()
setMaterialProduct()
\Aggrosoft\WAWIBundle\Entity\Product
offerItem DB
read write
{{ entity.offerItem }}
getOfferItem()
setOfferItem()
\Aggrosoft\WAWIBundle\Entity\OfferItem
notBookMaterialInProductionOrders DB
read write
{{ entity.notBookMaterialInProductionOrders }}
getNotBookMaterialInProductionOrders()
setNotBookMaterialInProductionOrders()
boolean
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
materialProduct ManyToOne Product - - - {{ entity.materialProduct }}
offerItem ManyToOne OfferItem - materials - {{ entity.offerItem }}
Keine Indexes definiert