OrderReturnItem

Aggrosoft\WAWIBundle\Entity\OrderReturnItem
6
Columns
12
Relations
19
Properties

Relationships

Click entity to navigate
erDiagram
    OrderReturnItem {
                string id PK
                decimal quantity
                decimal otherQuantity
                datetime shippingDate
                string action
                text note
                    }
                OrderReturnItem }o--|| OrderReturn : "orderReturn"
        OrderReturn {
        int id PK
    }
                OrderReturnItem }o--|| OrderReturnReason : "reason"
        OrderReturnReason {
        int id PK
    }
                OrderReturnItem }o--|| OfferItem : "offerItem"
        OfferItem {
        int id PK
    }
                OrderReturnItem }o--|| LiabilityItem : "liabilityItem"
        LiabilityItem {
        int id PK
    }
                OrderReturnItem }o--|| VendorOrderItemDelivery : "deliveryItem"
        VendorOrderItemDelivery {
        int id PK
    }
                OrderReturnItem }o--|| Product : "materialProduct"
        Product {
        int id PK
    }
                OrderReturnItem }o--|| Product : "otherProduct"
        Product {
        int id PK
    }
                OrderReturnItem }o--|| ProductSerialNumber : "serialNumber"
        ProductSerialNumber {
        int id PK
    }
                OrderReturnItem }o--|| ProductSerialNumber : "otherSerialNumber"
        ProductSerialNumber {
        int id PK
    }
                OrderReturnItem }o--|| VendorOrderItemDelivery : "swapDeliveryItem"
        VendorOrderItemDelivery {
        int id PK
    }
                OrderReturnItem }o--|| Product : "wrongProduct"
        Product {
        int id PK
    }
                OrderReturnItem }o--|| ProductSerialNumber : "wrongSerialNumber"
        ProductSerialNumber {
        int id PK
    }
                    

Metadaten

Tabelle orderreturnitem
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
quantity quantity decimal
{{ entity.quantity }}
otherQuantity otherQuantity decimal
{{ entity.otherQuantity }}
shippingDate shippingDate datetime
{{ entity.shippingDate }}
action action string(2)
{{ entity.action }}
note note text
{{ entity.note }}

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()
float
orderReturn DB
read write
{{ entity.orderReturn }}
getOrderReturn()
setOrderReturn()
\Aggrosoft\WAWIBundle\Entity\OrderReturn
offerItem DB
read write
{{ entity.offerItem }}
getOfferItem()
setOfferItem()
\Aggrosoft\WAWIBundle\Entity\OfferItem
reason DB
read write
{{ entity.reason }}
getReason()
setReason()
\Aggrosoft\WAWIBundle\Entity\OrderReturnReason
pricingItem Computed
read
{{ entity.pricingItem }}
getPricingItem()
-
deliveryItem DB
read write
{{ entity.deliveryItem }}
getDeliveryItem()
setDeliveryItem()
\Aggrosoft\WAWIBundle\Entity\VendorOrderItemDelivery
action DB
read write
{{ entity.action }}
getAction()
setAction()
string
swapDeliveryItem DB
read write
{{ entity.swapDeliveryItem }}
getSwapDeliveryItem()
setSwapDeliveryItem()
\Aggrosoft\WAWIBundle\Entity\VendorOrderItemDelivery
shippingDate DB
read write
{{ entity.shippingDate }}
getShippingDate()
setShippingDate()
\DateTime
serialNumber DB
read write
{{ entity.serialNumber }}
getSerialNumber()
setSerialNumber()
\Aggrosoft\WAWIBundle\Entity\ProductSerialNumber
materialProduct DB
read write
{{ entity.materialProduct }}
getMaterialProduct()
setMaterialProduct()
\Aggrosoft\WAWIBundle\Entity\Product
otherProduct DB
read write
{{ entity.otherProduct }}
getOtherProduct()
setOtherProduct()
\Aggrosoft\WAWIBundle\Entity\Product
otherSerialNumber DB
read write
{{ entity.otherSerialNumber }}
getOtherSerialNumber()
setOtherSerialNumber()
\Aggrosoft\WAWIBundle\Entity\ProductSerialNumber
wrongProduct DB
read write
{{ entity.wrongProduct }}
getWrongProduct()
setWrongProduct()
\Aggrosoft\WAWIBundle\Entity\Product
wrongSerialNumber DB
read write
{{ entity.wrongSerialNumber }}
getWrongSerialNumber()
setWrongSerialNumber()
\Aggrosoft\WAWIBundle\Entity\ProductSerialNumber
note DB
read write
{{ entity.note }}
getNote()
setNote()
string
otherQuantity DB
read write
{{ entity.otherQuantity }}
getOtherQuantity()
setOtherQuantity()
string
liabilityItem DB
read write
{{ entity.liabilityItem }}
getLiabilityItem()
setLiabilityItem()
\Aggrosoft\WAWIBundle\Entity\LiabilityItem
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
orderReturn ManyToOne OrderReturn - items - {{ entity.orderReturn }}
reason ManyToOne OrderReturnReason - - - {{ entity.reason }}
offerItem ManyToOne OfferItem - returnItems - {{ entity.offerItem }}
liabilityItem ManyToOne LiabilityItem - returnItems - {{ entity.liabilityItem }}
deliveryItem ManyToOne VendorOrderItemDelivery - - - {{ entity.deliveryItem }}
materialProduct ManyToOne Product - - - {{ entity.materialProduct }}
otherProduct ManyToOne Product - - - {{ entity.otherProduct }}
serialNumber ManyToOne ProductSerialNumber - - - {{ entity.serialNumber }}
otherSerialNumber ManyToOne ProductSerialNumber - - - {{ entity.otherSerialNumber }}
swapDeliveryItem ManyToOne VendorOrderItemDelivery - - - {{ entity.swapDeliveryItem }}
wrongProduct ManyToOne Product - - - {{ entity.wrongProduct }}
wrongSerialNumber ManyToOne ProductSerialNumber - - - {{ entity.wrongSerialNumber }}
Keine Indexes definiert