CommissionContractItem

Aggrosoft\WAWIBundle\Entity\CommissionContractItem
11
Columns
2
Relations
13
Properties

Relationships

Click entity to navigate
erDiagram
    CommissionContractItem {
                string id PK
                integer sort
                decimal quantity
                decimal soldQuantity
                decimal salePrice
                decimal purchasePrice
                        ___ ___more___
            }
                CommissionContractItem }o--|| Product : "product"
        Product {
        int id PK
    }
                CommissionContractItem }o--|| CommissionContract : "commissionContract"
        CommissionContract {
        int id PK
    }
                    

Metadaten

Tabelle commissioncontractitem
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 }}
soldQuantity soldQuantity decimal
{{ entity.soldQuantity }}
salePrice salePrice decimal
{{ entity.salePrice }}
purchasePrice purchasePrice decimal
{{ entity.purchasePrice }}
percentFee percentFee decimal
{{ entity.percentFee }}
fixFee fixFee decimal
{{ entity.fixFee }}
feeFormula feeFormula string(255)
{{ entity.feeFormula }}
note note text
{{ entity.note }}
ignoreStorno ignoreStorno boolean
{{ entity.ignoreStorno }}

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
sort DB
read write
{{ entity.sort }}
getSort()
setSort()
integer
quantity DB
read write
{{ entity.quantity }}
getQuantity()
setQuantity()
string
note DB
read write
{{ entity.note }}
getNote()
setNote()
string
product DB
read write
{{ entity.product }}
getProduct()
setProduct()
\Aggrosoft\WAWIBundle\Entity\Product
commissionContract DB
read write
{{ entity.commissionContract }}
getCommissionContract()
setCommissionContract()
\Aggrosoft\WAWIBundle\Entity\CommissionContract
salePrice DB
read write
{{ entity.salePrice }}
getSalePrice()
setSalePrice()
string
purchasePrice DB
read write
{{ entity.purchasePrice }}
getPurchasePrice()
setPurchasePrice()
string
fixFee DB
read write
{{ entity.fixFee }}
getFixFee()
setFixFee()
string
feeFormula DB
read write
{{ entity.feeFormula }}
getFeeFormula()
setFeeFormula()
string
percentFee DB
read write
{{ entity.percentFee }}
getPercentFee()
setPercentFee()
string
soldQuantity DB
read write
{{ entity.soldQuantity }}
getSoldQuantity()
setSoldQuantity()
string
ignoreStorno DB
read write
{{ entity.ignoreStorno }}
getIgnoreStorno()
setIgnoreStorno()
boolean
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
product ManyToOne Product - - - {{ entity.product }}
commissionContract ManyToOne CommissionContract - items - {{ entity.commissionContract }}
Keine Indexes definiert