InventoryLocation

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

Relationships

Click entity to navigate
erDiagram
    InventoryLocation {
                string id PK
                boolean completed
                    }
                InventoryLocation }o--|| WarehouseStorageLocation : "location"
        WarehouseStorageLocation {
        int id PK
    }
                InventoryLocation }o--|| Inventory : "inventory"
        Inventory {
        int id PK
    }
                InventoryLocation ||--o{ InventoryLocationItem : "items"
        InventoryLocationItem {
        int id PK
    }
                    

Metadaten

Tabelle inventorylocation
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
completed completed boolean
{{ entity.completed }}

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
location DB
read write
{{ entity.location }}
getLocation()
setLocation()
\Aggrosoft\WAWIBundle\Entity\WarehouseStorageLocation
inventory DB
read write
{{ entity.inventory }}
getInventory()
setInventory()
\Aggrosoft\WAWIBundle\Entity\Inventory
items DB
read
{{ entity.items }}
getItems()
\Doctrine\Common\Collections\Collection
completed DB
read write
{{ entity.completed }}
getCompleted()
setCompleted()
boolean
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
location ManyToOne WarehouseStorageLocation - inventorylocations - {{ entity.location }}
inventory ManyToOne Inventory - items - {{ entity.inventory }}
items OneToMany InventoryLocationItem inventorylocation -
persist remove refresh
{{ entity.items }}
Keine Indexes definiert