ScalePrice

Aggrosoft\WAWIBundle\Entity\ScalePrice
11
Columns
4
Relations
16
Properties

Relationships

Click entity to navigate
erDiagram
    ScalePrice {
                string id PK
                string foreignId
                float amountFrom
                float amountTo
                integer priceType
                decimal price
                        ___ ___more___
            }
                ScalePrice }o--|| Product : "product"
        Product {
        int id PK
    }
                ScalePrice }o--|| Client : "client"
        Client {
        int id PK
    }
                ScalePrice }o--|| CustomerGroup : "customerGroup"
        CustomerGroup {
        int id PK
    }
                ScalePrice }o--|| SalesChannel : "salesChannel"
        SalesChannel {
        int id PK
    }
                    

Metadaten

Tabelle scaleprice
Bundle WAWIBundle
Interfaces
IPrototype
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
foreignId foreign_id string(36)
{{ entity.foreignId }}
amountFrom amountFrom float
{{ entity.amountFrom }}
amountTo amountTo float
{{ entity.amountTo }}
priceType priceType integer(1)
{{ entity.priceType }}
price price decimal(11,4)
{{ entity.price }}
uvp uvp decimal(11,2)
{{ entity.uvp }}
priceFormula priceFormula text
{{ entity.priceFormula }}
note note string(255)
{{ entity.note }}
priceMode priceMode integer(1)
{{ entity.priceMode }}
skipDiscounts skipDiscounts boolean
{{ entity.skipDiscounts }}

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
foreignId DB
read write
{{ entity.foreignId }}
getForeignId()
setForeignId()
string
amountForm Computed
read write
{{ entity.amountForm }}
getAmountForm()
setAmountForm()
float
amountTo DB
read write
{{ entity.amountTo }}
getAmountTo()
setAmountTo()
float
price DB
read write
{{ entity.price }}
getPrice()
setPrice()
float
product DB
read write
{{ entity.product }}
getProduct()
setProduct()
\Aggrosoft\WAWIBundle\Entity\Product
client DB
read write
{{ entity.client }}
getClient()
setClient()
\Aggrosoft\WAWIBundle\Entity\Client
priceType DB
read write
{{ entity.priceType }}
getPriceType()
setPriceType()
integer
amountFrom DB
read write
{{ entity.amountFrom }}
getAmountFrom()
setAmountFrom()
float
customerGroup DB
read write
{{ entity.customerGroup }}
getCustomerGroup()
setCustomerGroup()
\Aggrosoft\WAWIBundle\Entity\CustomerGroup
note DB
read write
{{ entity.note }}
getNote()
setNote()
string
salesChannel DB
read write
{{ entity.salesChannel }}
getSalesChannel()
setSalesChannel()
\Aggrosoft\WAWIBundle\Entity\SalesChannel
priceFormula DB
read write
{{ entity.priceFormula }}
getPriceFormula()
setPriceFormula()
string
priceMode DB
read write
{{ entity.priceMode }}
getPriceMode()
setPriceMode()
integer
skipDiscounts DB
read write
{{ entity.skipDiscounts }}
getSkipDiscounts()
setSkipDiscounts()
boolean
uvp DB
read write
{{ entity.uvp }}
getUvp()
setUvp()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
product ManyToOne Product - scalePrices - {{ entity.product }}
client ManyToOne Client - - - {{ entity.client }}
customerGroup ManyToOne CustomerGroup - - - {{ entity.customerGroup }}
salesChannel ManyToOne SalesChannel - - - {{ entity.salesChannel }}
Keine Indexes definiert