ProductSerialNumber

Aggrosoft\WAWIBundle\Entity\ProductSerialNumber
12
Columns
2
Relations
16
Properties

Relationships

Click entity to navigate
erDiagram
    ProductSerialNumber {
                string id PK
                string serialNumber
                date bestBeforeDate
                decimal stock
                datetime deletedAt
                boolean exportAsVariant
                        ___ ___more___
            }
                ProductSerialNumber }o--|| Product : "product"
        Product {
        int id PK
    }
                ProductSerialNumber }o--|| Tax : "tax"
        Tax {
        int id PK
    }
                    

Metadaten

Tabelle productserialnumber
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
serialNumber serialNumber string(64)
{{ entity.serialNumber }}
bestBeforeDate bestBeforeDate date
{{ entity.bestBeforeDate }}
stock stock decimal
{{ entity.stock }}
deletedAt deletedAt datetime
{{ entity.deletedAt }}
exportAsVariant exportAsVariant boolean
{{ entity.exportAsVariant }}
price price decimal
{{ entity.price }}
priceFixSurcharge priceFixSurcharge decimal
{{ entity.priceFixSurcharge }}
pricePercentSurcharge pricePercentSurcharge decimal
{{ entity.pricePercentSurcharge }}
note note text
{{ entity.note }}
productCondition productCondition string(255)
{{ entity.productCondition }}
uniqId uniqId string(128)
{{ entity.uniqId }}

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
serialNumber DB
read write
{{ entity.serialNumber }}
getSerialNumber()
setSerialNumber()
string
product DB
read write
{{ entity.product }}
getProduct()
setProduct()
\Aggrosoft\WAWIBundle\Entity\Product
stock DB
read write
{{ entity.stock }}
getStock()
setStock()
string
deletedAt DB
read write
{{ entity.deletedAt }}
getDeletedAt()
setDeletedAt()
\DateTime
bestBeforeDate DB
read write
{{ entity.bestBeforeDate }}
getBestBeforeDate()
setBestBeforeDate()
\DateTime
otherProducts Computed
read write
{{ entity.otherProducts }}
getOtherProducts()
setOtherProducts()
-
price DB
read write
{{ entity.price }}
getPrice()
setPrice()
string
priceSurchage Computed
read write
{{ entity.priceSurchage }}
getPriceSurchage()
setPriceSurchage()
string
note DB
read write
{{ entity.note }}
getNote()
setNote()
string
exportAsVariant DB
read write
{{ entity.exportAsVariant }}
getExportAsVariant()
setExportAsVariant()
boolean
priceFixSurcharge DB
read write
{{ entity.priceFixSurcharge }}
getPriceFixSurcharge()
setPriceFixSurcharge()
string
pricePercentSurcharge DB
read write
{{ entity.pricePercentSurcharge }}
getPricePercentSurcharge()
setPricePercentSurcharge()
string
tax DB
read write
{{ entity.tax }}
getTax()
setTax()
\Aggrosoft\WAWIBundle\Entity\Tax
productCondition DB
read write
{{ entity.productCondition }}
getProductCondition()
setProductCondition()
string
uniqId DB
read write
{{ entity.uniqId }}
getUniqId()
setUniqId()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
product ManyToOne Product - serialNumbers - {{ entity.product }}
tax ManyToOne Tax - - - {{ entity.tax }}
Keine Indexes definiert