RetailStore

Aggrosoft\WAWIBundle\Entity\RetailStore
11
Columns
7
Relations
18
Properties

Relationships

Click entity to navigate
erDiagram
    RetailStore {
                string id PK
                string title
                string number
                string contactPerson
                string street
                string zip
                        ___ ___more___
            }
                RetailStore }o--|| Country : "country"
        Country {
        int id PK
    }
                RetailStore ||--o{ PosTerminal : "posTerminals"
        PosTerminal {
        int id PK
    }
                RetailStore }o--|| Client : "client"
        Client {
        int id PK
    }
                RetailStore }o--o{ Client : "crossClients"
        Client {
        int id PK
    }
                RetailStore }o--o{ Warehouse : "warehouses"
        Warehouse {
        int id PK
    }
                RetailStore }o--o{ Payment : "altPayments"
        Payment {
        int id PK
    }
                RetailStore }o--o{ Payment : "cashlessPayments"
        Payment {
        int id PK
    }
                    

Metadaten

Tabelle retailstore
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
title title string(255)
{{ entity.title }}
number number string(255)
{{ entity.number }}
contactPerson contactPerson string(255)
{{ entity.contactPerson }}
street street string(255)
{{ entity.street }}
zip zip string(255)
{{ entity.zip }}
city city string(255)
{{ entity.city }}
state state string(255)
{{ entity.state }}
phone phone string(255)
{{ entity.phone }}
fax fax string(255)
{{ entity.fax }}
receiptTemplate receiptTemplate text
{{ entity.receiptTemplate }}

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
contactPerson DB
read write
{{ entity.contactPerson }}
getContactPerson()
setContactPerson()
string
street DB
read write
{{ entity.street }}
getStreet()
setStreet()
string
zip DB
read write
{{ entity.zip }}
getZip()
setZip()
string
city DB
read write
{{ entity.city }}
getCity()
setCity()
string
state DB
read write
{{ entity.state }}
getState()
setState()
string
phone DB
read write
{{ entity.phone }}
getPhone()
setPhone()
string
fax DB
read write
{{ entity.fax }}
getFax()
setFax()
string
country DB
read write
{{ entity.country }}
getCountry()
setCountry()
\Aggrosoft\WAWIBundle\Entity\Country
posTerminals DB
read
{{ entity.posTerminals }}
getPosTerminals()
\Doctrine\Common\Collections\Collection
client DB
read write
{{ entity.client }}
getClient()
setClient()
\Aggrosoft\WAWIBundle\Entity\Client
receiptTemplate DB
read write
{{ entity.receiptTemplate }}
getReceiptTemplate()
setReceiptTemplate()
string
number DB
read write
{{ entity.number }}
getNumber()
setNumber()
string
warehouses DB
read
{{ entity.warehouses }}
getWarehouses()
\Doctrine\Common\Collections\Collection
crossClients DB
read
{{ entity.crossClients }}
getCrossClients()
\Doctrine\Common\Collections\Collection
altPayments DB
read
{{ entity.altPayments }}
getAltPayments()
\Doctrine\Common\Collections\Collection
cashlessPayments DB
read
{{ entity.cashlessPayments }}
getCashlessPayments()
\Doctrine\Common\Collections\Collection
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
country ManyToOne Country - - - {{ entity.country }}
posTerminals OneToMany PosTerminal retailStore - - {{ entity.posTerminals }}
client ManyToOne Client - retailStores - {{ entity.client }}
crossClients ManyToMany Client - crossRetailStores - {{ entity.crossClients }}
warehouses ManyToMany Warehouse - retailStores - {{ entity.warehouses }}
altPayments ManyToMany Payment - retailStores - {{ entity.altPayments }}
cashlessPayments ManyToMany Payment - cashlessRetailStores - {{ entity.cashlessPayments }}
Keine Indexes definiert