VendorOrderItemDelivery

Aggrosoft\WAWIBundle\Entity\VendorOrderItemDelivery
7
Columns
7
Relations
17
Properties

Relationships

Click entity to navigate
erDiagram
    VendorOrderItemDelivery {
                string id PK
                datetime created
                string slipNumber
                decimal quantity
                decimal negativeQuantity
                integer remainingQuantity
                        ___ ___more___
            }
                VendorOrderItemDelivery }o--|| Product : "product"
        Product {
        int id PK
    }
                VendorOrderItemDelivery }o--|| ProductSerialNumber : "serialNumber"
        ProductSerialNumber {
        int id PK
    }
                VendorOrderItemDelivery }o--|| VendorOrderDelivery : "delivery"
        VendorOrderDelivery {
        int id PK
    }
                VendorOrderItemDelivery }o--|| VendorOrderItem : "orderItem"
        VendorOrderItem {
        int id PK
    }
                VendorOrderItemDelivery }o--|| Warehouse : "warehouse"
        Warehouse {
        int id PK
    }
                VendorOrderItemDelivery }o--|| WarehouseStorageLocation : "location"
        WarehouseStorageLocation {
        int id PK
    }
                VendorOrderItemDelivery }o--|| WarehouseStorageLocation : "relocatedLocation"
        WarehouseStorageLocation {
        int id PK
    }
                    

Metadaten

Tabelle vendororderitemdelivery
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
created created datetime
{{ entity.created }}
slipNumber slipNumber string(255)
{{ entity.slipNumber }}
quantity quantity decimal
{{ entity.quantity }}
negativeQuantity negativeQuantity decimal
{{ entity.negativeQuantity }}
remainingQuantity remainingQuantity integer(11)
{{ entity.remainingQuantity }}
buying2saleUnitFormula buying2saleUnitFormula string(255)
{{ entity.buying2saleUnitFormula }}

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

Property Access Twig Usage Methods Return Type
receiptLocation Computed
read
{{ entity.receiptLocation }}
getReceiptLocation()
-
pricingItem Computed
read
{{ entity.pricingItem }}
getPricingItem()
-
id DB
read
{{ entity.id }}
getId()
string
created DB
read write
{{ entity.created }}
getCreated()
setCreated()
\DateTime
slipNumber DB
read write
{{ entity.slipNumber }}
getSlipNumber()
setSlipNumber()
string
quantity DB
read write
{{ entity.quantity }}
getQuantity()
setQuantity()
float
remainingQuantity DB
read write
{{ entity.remainingQuantity }}
getRemainingQuantity()
setRemainingQuantity()
integer
product DB
read write
{{ entity.product }}
getProduct()
setProduct()
\Aggrosoft\WAWIBundle\Entity\Product
delivery DB
read write
{{ entity.delivery }}
getDelivery()
setDelivery()
\Aggrosoft\WAWIBundle\Entity\VendorOrderDelivery
orderItem DB
read write
{{ entity.orderItem }}
getOrderItem()
setOrderItem()
\Aggrosoft\WAWIBundle\Entity\VendorOrderItem
warehouse DB
read write
{{ entity.warehouse }}
getWarehouse()
setWarehouse()
\Aggrosoft\WAWIBundle\Entity\Warehouse
location DB
read write
{{ entity.location }}
getLocation()
setLocation()
\Aggrosoft\WAWIBundle\Entity\WarehouseStorageLocation
serialNumber DB
read write
{{ entity.serialNumber }}
getSerialNumber()
setSerialNumber()
\Aggrosoft\WAWIBundle\Entity\ProductSerialNumber
relocatedLocation DB
read write
{{ entity.relocatedLocation }}
getRelocatedLocation()
setRelocatedLocation()
\Aggrosoft\WAWIBundle\Entity\WarehouseStorageLocation
negativeQuantity DB
read write
{{ entity.negativeQuantity }}
getNegativeQuantity()
setNegativeQuantity()
string
totalQuantity Computed
read
{{ entity.totalQuantity }}
getTotalQuantity()
-
buying2saleUnitFormula DB
read write
{{ entity.buying2saleUnitFormula }}
getBuying2saleUnitFormula()
setBuying2saleUnitFormula()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
product ManyToOne Product - - - {{ entity.product }}
serialNumber ManyToOne ProductSerialNumber - - - {{ entity.serialNumber }}
delivery ManyToOne VendorOrderDelivery - items - {{ entity.delivery }}
orderItem ManyToOne VendorOrderItem - deliveries - {{ entity.orderItem }}
warehouse ManyToOne Warehouse - - - {{ entity.warehouse }}
location ManyToOne WarehouseStorageLocation - deliveries - {{ entity.location }}
relocatedLocation ManyToOne WarehouseStorageLocation - relocateddeliveries - {{ entity.relocatedLocation }}
Keine Indexes definiert