PosTerminal

Aggrosoft\WAWIBundle\Entity\PosTerminal
24
Columns
6
Relations
30
Properties

Relationships

Click entity to navigate
erDiagram
    PosTerminal {
                string id PK
                boolean active
                string number
                boolean customerDisplayActive
                string cashBoxNumber
                integer lastReceiptNumber
                        ___ ___more___
            }
                PosTerminal }o--|| PosTerminalModel : "model"
        PosTerminalModel {
        int id PK
    }
                PosTerminal }o--|| WarehouseStorageLocation : "defaultReturnLocation"
        WarehouseStorageLocation {
        int id PK
    }
                PosTerminal }o--|| RetailStore : "retailStore"
        RetailStore {
        int id PK
    }
                PosTerminal }o--o{ User : "users"
        User {
        int id PK
    }
                PosTerminal }o--o{ User : "grantedUsersForPrice"
        User {
        int id PK
    }
                PosTerminal }o--|| WAWIListener : "wawilistener"
        WAWIListener {
        int id PK
    }
                    

Metadaten

Tabelle posterminal
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
active active boolean
{{ entity.active }}
number number string(255)
{{ entity.number }}
customerDisplayActive customerDisplayActive boolean
{{ entity.customerDisplayActive }}
cashBoxNumber cashBoxNumber string(255)
{{ entity.cashBoxNumber }}
lastReceiptNumber lastReceiptNumber integer(11)
{{ entity.lastReceiptNumber }}
lastECReceiptNumber lastECReceiptNumber integer(11)
{{ entity.lastECReceiptNumber }}
lastVoucherReceiptNumber lastVoucherReceiptNumber integer(11)
{{ entity.lastVoucherReceiptNumber }}
lastSignature lastSignature string(255)
{{ entity.lastSignature }}
lastECSignature lastECSignature string(255)
{{ entity.lastECSignature }}
lastVoucherSignature lastVoucherSignature string(255)
{{ entity.lastVoucherSignature }}
bookReturnsInFixStorageLocations bookReturnsInFixStorageLocations boolean
{{ entity.bookReturnsInFixStorageLocations }}
paperWidth paperWidth integer(11)
{{ entity.paperWidth }}
fontSize fontSize float
{{ entity.fontSize }}
lineHeight lineHeight float
{{ entity.lineHeight }}
receiptTemplate receiptTemplate text
{{ entity.receiptTemplate }}
receiptNumberRange receiptNumberRange string(255)
{{ entity.receiptNumberRange }}
bookingAccount bookingAccount string(255)
{{ entity.bookingAccount }}
ecTerminalSettings ecTerminalSettings text
{{ entity.ecTerminalSettings }}
usezvt usezvt integer(1)
{{ entity.usezvt }}
printECTransaction printECTransaction integer(1)
{{ entity.printECTransaction }}
allowOpenCash allowOpenCash boolean
{{ entity.allowOpenCash }}
tseCertificate tseCertificate text
{{ entity.tseCertificate }}
customCSS customCSS text
{{ entity.customCSS }}

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
number DB
read write
{{ entity.number }}
getNumber()
setNumber()
string
lastReceiptNumber DB
read write
{{ entity.lastReceiptNumber }}
getLastReceiptNumber()
setLastReceiptNumber()
integer
paperWidth DB
read write
{{ entity.paperWidth }}
getPaperWidth()
setPaperWidth()
integer
model DB
read write
{{ entity.model }}
getModel()
setModel()
\Aggrosoft\WAWIBundle\Entity\PosTerminalModel
retailStore DB
read write
{{ entity.retailStore }}
getRetailStore()
setRetailStore()
\Aggrosoft\WAWIBundle\Entity\RetailStore
users DB
read
{{ entity.users }}
getUsers()
\Doctrine\Common\Collections\Collection
receiptTemplate DB
read write
{{ entity.receiptTemplate }}
getReceiptTemplate()
setReceiptTemplate()
string
cashBoxNumber DB
read write
{{ entity.cashBoxNumber }}
getCashBoxNumber()
setCashBoxNumber()
string
active DB
read write
{{ entity.active }}
getActive()
setActive()
boolean
receiptNumberRange DB
read write
{{ entity.receiptNumberRange }}
getReceiptNumberRange()
setReceiptNumberRange()
string
defaultReturnLocation DB
read write
{{ entity.defaultReturnLocation }}
getDefaultReturnLocation()
setDefaultReturnLocation()
\Aggrosoft\WAWIBundle\Entity\WarehouseStorageLocation
lastECReceiptNumber DB
read write
{{ entity.lastECReceiptNumber }}
getLastECReceiptNumber()
setLastECReceiptNumber()
integer
lastVoucherReceiptNumber DB
read write
{{ entity.lastVoucherReceiptNumber }}
getLastVoucherReceiptNumber()
setLastVoucherReceiptNumber()
integer
fontSize DB
read write
{{ entity.fontSize }}
getFontSize()
setFontSize()
float
lineHeight DB
read write
{{ entity.lineHeight }}
getLineHeight()
setLineHeight()
float
wawilistener DB
read write
{{ entity.wawilistener }}
getWawilistener()
setWawilistener()
\Aggrosoft\WAWIBundle\Entity\WAWIListener
bookingAccount DB
read write
{{ entity.bookingAccount }}
getBookingAccount()
setBookingAccount()
string
bookReturnsInFixStorageLocations DB
read write
{{ entity.bookReturnsInFixStorageLocations }}
getBookReturnsInFixStorageLocations()
setBookReturnsInFixStorageLocations()
boolean
lastSignature DB
read write
{{ entity.lastSignature }}
getLastSignature()
setLastSignature()
string
lastECSignature DB
read write
{{ entity.lastECSignature }}
getLastECSignature()
setLastECSignature()
string
lastVoucherSignature DB
read write
{{ entity.lastVoucherSignature }}
getLastVoucherSignature()
setLastVoucherSignature()
string
customerDisplayActive DB
read write
{{ entity.customerDisplayActive }}
getCustomerDisplayActive()
setCustomerDisplayActive()
boolean
ecTerminalSettings DB
read write
{{ entity.ecTerminalSettings }}
getEcTerminalSettings()
setEcTerminalSettings()
string
usezvt DB
read write
{{ entity.usezvt }}
getUsezvt()
setUsezvt()
integer
printECTransaction DB
read write
{{ entity.printECTransaction }}
getPrintECTransaction()
setPrintECTransaction()
integer
grantedUsersForPrice DB
read
{{ entity.grantedUsersForPrice }}
getGrantedUsersForPrice()
\Doctrine\Common\Collections\Collection
allowOpenCash DB
read write
{{ entity.allowOpenCash }}
getAllowOpenCash()
setAllowOpenCash()
boolean
tseCertificate DB
read write
{{ entity.tseCertificate }}
getTseCertificate()
setTseCertificate()
string
customCSS DB
read write
{{ entity.customCSS }}
getCustomCSS()
setCustomCSS()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
model ManyToOne PosTerminalModel - terminals - {{ entity.model }}
defaultReturnLocation ManyToOne WarehouseStorageLocation - posterminals - {{ entity.defaultReturnLocation }}
retailStore ManyToOne RetailStore - posTerminals - {{ entity.retailStore }}
users ManyToMany User - grantedPosTerminals - {{ entity.users }}
grantedUsersForPrice ManyToMany User - grantedPosTerminalsForPrice - {{ entity.grantedUsersForPrice }}
wawilistener ManyToOne WAWIListener - - - {{ entity.wawilistener }}
Keine Indexes definiert