VendorProductScalePrice

Aggrosoft\WAWIBundle\Entity\VendorProductScalePrice
6
Columns
1
Relations
7
Properties

Relationships

Click entity to navigate
erDiagram
    VendorProductScalePrice {
                string id PK
                float amountFrom
                float amountTo
                integer priceType
                decimal price
                text priceFormula
                    }
                VendorProductScalePrice }o--|| VendorProduct : "vendorProduct"
        VendorProduct {
        int id PK
    }
                    

Metadaten

Tabelle vendorproductscaleprice
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
amountFrom amountFrom float
{{ entity.amountFrom }}
amountTo amountTo float
{{ entity.amountTo }}
priceType priceType integer(1)
{{ entity.priceType }}
price price decimal
{{ entity.price }}
priceFormula priceFormula text
{{ entity.priceFormula }}

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
amountFrom DB
read write
{{ entity.amountFrom }}
getAmountFrom()
setAmountFrom()
float
amountTo DB
read write
{{ entity.amountTo }}
getAmountTo()
setAmountTo()
float
priceType DB
read write
{{ entity.priceType }}
getPriceType()
setPriceType()
integer
price DB
read write
{{ entity.price }}
getPrice()
setPrice()
string
vendorProduct DB
read write
{{ entity.vendorProduct }}
getVendorProduct()
setVendorProduct()
\Aggrosoft\WAWIBundle\Entity\VendorProduct
priceFormula DB
read write
{{ entity.priceFormula }}
getPriceFormula()
setPriceFormula()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
vendorProduct ManyToOne VendorProduct - scalePrices - {{ entity.vendorProduct }}
Keine Indexes definiert