ProductSaleCondition

Aggrosoft\WAWIBundle\Entity\ProductSaleCondition
5
Columns
3
Relations
8
Properties

Relationships

Click entity to navigate
erDiagram
    ProductSaleCondition {
                string id PK
                decimal minimumAmount
                decimal maximumAmount
                decimal minimumAmountStep
                integer useTilBestBeforeWaitingPeriod
                    }
                ProductSaleCondition }o--|| Product : "product"
        Product {
        int id PK
    }
                ProductSaleCondition }o--|| Client : "client"
        Client {
        int id PK
    }
                ProductSaleCondition }o--|| CustomerGroup : "customerGroup"
        CustomerGroup {
        int id PK
    }
                    

Metadaten

Tabelle productsalecondition
Bundle WAWIBundle
Interfaces
IPrototype
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
minimumAmount minimumAmount decimal
{{ entity.minimumAmount }}
maximumAmount maximumAmount decimal
{{ entity.maximumAmount }}
minimumAmountStep minimumAmountStep decimal
{{ entity.minimumAmountStep }}
useTilBestBeforeWaitingPeriod useTilBestBeforeWaitingPeriod integer
{{ entity.useTilBestBeforeWaitingPeriod }}

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
minimumAmount DB
read write
{{ entity.minimumAmount }}
getMinimumAmount()
setMinimumAmount()
string
minimumAmountStep DB
read write
{{ entity.minimumAmountStep }}
getMinimumAmountStep()
setMinimumAmountStep()
string
useTilBestBeforeWaitingPeriod DB
read write
{{ entity.useTilBestBeforeWaitingPeriod }}
getUseTilBestBeforeWaitingPeriod()
setUseTilBestBeforeWaitingPeriod()
integer
product DB
read write
{{ entity.product }}
getProduct()
setProduct()
\Aggrosoft\WAWIBundle\Entity\Product
client DB
read write
{{ entity.client }}
getClient()
setClient()
\Aggrosoft\WAWIBundle\Entity\Client
customerGroup DB
read write
{{ entity.customerGroup }}
getCustomerGroup()
setCustomerGroup()
\Aggrosoft\WAWIBundle\Entity\CustomerGroup
maximumAmount DB
read write
{{ entity.maximumAmount }}
getMaximumAmount()
setMaximumAmount()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
product ManyToOne Product - saleConditions - {{ entity.product }}
client ManyToOne Client - - - {{ entity.client }}
customerGroup ManyToOne CustomerGroup - - - {{ entity.customerGroup }}
Keine Indexes definiert