VendorOrderSubmissionItemDelivery

Aggrosoft\WAWIBundle\Entity\VendorOrderSubmissionItemDelivery
7
Columns
6
Relations
14
Properties

Relationships

Click entity to navigate
erDiagram
    VendorOrderSubmissionItemDelivery {
                string id PK
                integer sort
                decimal quantity
                string serialNumber
                string bestBeforeDate
                decimal purchasePrice
                        ___ ___more___
            }
                VendorOrderSubmissionItemDelivery }o--|| Product : "product"
        Product {
        int id PK
    }
                VendorOrderSubmissionItemDelivery }o--|| Vendor : "vendor"
        Vendor {
        int id PK
    }
                VendorOrderSubmissionItemDelivery }o--|| VendorOrderDelivery : "delivery"
        VendorOrderDelivery {
        int id PK
    }
                VendorOrderSubmissionItemDelivery }o--|| WarehouseStorageLocation : "location"
        WarehouseStorageLocation {
        int id PK
    }
                VendorOrderSubmissionItemDelivery }o--|| WarehouseStorageLocation : "relocatedLocation"
        WarehouseStorageLocation {
        int id PK
    }
                VendorOrderSubmissionItemDelivery }o--|| VendorOrderItem : "orderItem"
        VendorOrderItem {
        int id PK
    }
                    

Metadaten

Tabelle vendorordersubmissionitemdelivery
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
sort sort integer(11)
{{ entity.sort }}
quantity quantity decimal
{{ entity.quantity }}
serialNumber serialNumber string(36)
{{ entity.serialNumber }}
bestBeforeDate bestBeforeDate string(36)
{{ entity.bestBeforeDate }}
purchasePrice purchasePrice decimal
{{ entity.purchasePrice }}
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
pricingItem Computed
read
{{ entity.pricingItem }}
getPricingItem()
-
id DB
read
{{ entity.id }}
getId()
string
quantity DB
read write
{{ entity.quantity }}
getQuantity()
setQuantity()
string
serialNumber DB
read write
{{ entity.serialNumber }}
getSerialNumber()
setSerialNumber()
string
bestBeforeDate DB
read write
{{ entity.bestBeforeDate }}
getBestBeforeDate()
setBestBeforeDate()
string
product DB
read write
{{ entity.product }}
getProduct()
setProduct()
\Aggrosoft\WAWIBundle\Entity\Product
delivery DB
read write
{{ entity.delivery }}
getDelivery()
setDelivery()
\Aggrosoft\WAWIBundle\Entity\VendorOrderDelivery
location DB
read write
{{ entity.location }}
getLocation()
setLocation()
\Aggrosoft\WAWIBundle\Entity\WarehouseStorageLocation
relocatedLocation DB
read write
{{ entity.relocatedLocation }}
getRelocatedLocation()
setRelocatedLocation()
\Aggrosoft\WAWIBundle\Entity\WarehouseStorageLocation
purchasePrice DB
read write
{{ entity.purchasePrice }}
getPurchasePrice()
setPurchasePrice()
string
vendor DB
read write
{{ entity.vendor }}
getVendor()
setVendor()
\Aggrosoft\WAWIBundle\Entity\Vendor
orderItem DB
read write
{{ entity.orderItem }}
getOrderItem()
setOrderItem()
\Aggrosoft\WAWIBundle\Entity\VendorOrderItem
buying2saleUnitFormula DB
read write
{{ entity.buying2saleUnitFormula }}
getBuying2saleUnitFormula()
setBuying2saleUnitFormula()
string
sort DB
read write
{{ entity.sort }}
getSort()
setSort()
integer
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
product ManyToOne Product - - - {{ entity.product }}
vendor ManyToOne Vendor - - - {{ entity.vendor }}
delivery ManyToOne VendorOrderDelivery - submissionItems - {{ entity.delivery }}
location ManyToOne WarehouseStorageLocation - - - {{ entity.location }}
relocatedLocation ManyToOne WarehouseStorageLocation - - - {{ entity.relocatedLocation }}
orderItem ManyToOne VendorOrderItem - - - {{ entity.orderItem }}
Keine Indexes definiert