SalesChannel

Aggrosoft\WAWIBundle\Entity\SalesChannel
4
Columns
5
Relations
9
Properties

Relationships

Click entity to navigate
erDiagram
    SalesChannel {
                string id PK
                string title
                string ident
                text warehousekey
                    }
                SalesChannel }o--|| CostCenter : "costCenter"
        CostCenter {
        int id PK
    }
                SalesChannel }o--o{ Product : "products"
        Product {
        int id PK
    }
                SalesChannel }o--o{ ShippingCost : "shippingcosts"
        ShippingCost {
        int id PK
    }
                SalesChannel }o--o{ Warehouse : "warehouses"
        Warehouse {
        int id PK
    }
                SalesChannel }o--o{ Discount : "discounts"
        Discount {
        int id PK
    }
                    

Metadaten

Tabelle saleschannel
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
title title string(255)
{{ entity.title }}
ident ident string(64)
{{ entity.ident }}
warehousekey warehousekey text
{{ entity.warehousekey }}

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
title DB
read write
{{ entity.title }}
getTitle()
setTitle()
string
ident DB
read write
{{ entity.ident }}
getIdent()
setIdent()
string
products DB
read
{{ entity.products }}
getProducts()
\Doctrine\Common\Collections\Collection
shippingcosts DB
read
{{ entity.shippingcosts }}
getShippingcosts()
\Doctrine\Common\Collections\Collection
warehouses DB
read
{{ entity.warehouses }}
getWarehouses()
\Doctrine\Common\Collections\Collection
warehousekey DB
read write
{{ entity.warehousekey }}
getWarehousekey()
setWarehousekey()
string
discounts DB
read
{{ entity.discounts }}
getDiscounts()
\Doctrine\Common\Collections\Collection
costCenter DB
read write
{{ entity.costCenter }}
getCostCenter()
setCostCenter()
\Aggrosoft\WAWIBundle\Entity\CostCenter
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
costCenter ManyToOne CostCenter - - - {{ entity.costCenter }}
products ManyToMany Product saleschannels - - {{ entity.products }}
shippingcosts ManyToMany ShippingCost salesChannels - - {{ entity.shippingcosts }}
warehouses ManyToMany Warehouse - salesChannels - {{ entity.warehouses }}
discounts ManyToMany Discount salesChannels - - {{ entity.discounts }}
Index Name Columns Type
title_idx
title
INDEX