InventoryLocationItem

Aggrosoft\WAWIBundle\Entity\InventoryLocationItem
4
Columns
3
Relations
9
Properties

Relationships

Click entity to navigate
erDiagram
    InventoryLocationItem {
                string id PK
                decimal quantity
                decimal sollQuantity
                decimal purchasePrice
                    }
                InventoryLocationItem }o--|| Product : "product"
        Product {
        int id PK
    }
                InventoryLocationItem }o--|| ProductSerialNumber : "serialNumber"
        ProductSerialNumber {
        int id PK
    }
                InventoryLocationItem }o--|| InventoryLocation : "inventorylocation"
        InventoryLocation {
        int id PK
    }
                    

Metadaten

Tabelle inventorylocationitem
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
quantity quantity decimal
{{ entity.quantity }}
sollQuantity sollQuantity decimal
{{ entity.sollQuantity }}
purchasePrice purchasePrice decimal
{{ entity.purchasePrice }}

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()
integer
product DB
read write
{{ entity.product }}
getProduct()
setProduct()
\Aggrosoft\WAWIBundle\Entity\Product
serialNumber DB
read write
{{ entity.serialNumber }}
getSerialNumber()
setSerialNumber()
\Aggrosoft\WAWIBundle\Entity\ProductSerialNumber
inventorylocation DB
read write
{{ entity.inventorylocation }}
getInventorylocation()
setInventorylocation()
\Aggrosoft\WAWIBundle\Entity\InventoryLocation
purchasePrice DB
read write
{{ entity.purchasePrice }}
getPurchasePrice()
setPurchasePrice()
string
difference Computed
read
{{ entity.difference }}
getDifference()
-
sollQuantity DB
read write
{{ entity.sollQuantity }}
getSollQuantity()
setSollQuantity()
string
purchaseSum Computed
read
{{ entity.purchaseSum }}
getPurchaseSum()
-
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
product ManyToOne Product - - - {{ entity.product }}
serialNumber ManyToOne ProductSerialNumber - - - {{ entity.serialNumber }}
inventorylocation ManyToOne InventoryLocation - items - {{ entity.inventorylocation }}
Keine Indexes definiert