CashJournal

Aggrosoft\WAWIBundle\Entity\CashJournal
5
Columns
6
Relations
11
Properties

Relationships

Click entity to navigate
erDiagram
    CashJournal {
                string id PK
                boolean completed
                datetime completedDate
                datetime created
                integer number
                    }
                CashJournal }o--|| User : "completedByUser"
        User {
        int id PK
    }
                CashJournal }o--|| PosTerminal : "posTerminal"
        PosTerminal {
        int id PK
    }
                CashJournal ||--o{ CashReport : "cashReports"
        CashReport {
        int id PK
    }
                CashJournal ||--o{ ECReport : "ecReports"
        ECReport {
        int id PK
    }
                CashJournal ||--o{ VoucherReport : "voucherReports"
        VoucherReport {
        int id PK
    }
                CashJournal }o--|| Client : "client"
        Client {
        int id PK
    }
                    

Metadaten

Tabelle cashjournal
Bundle WAWIBundle
Interfaces
IClientable
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
completed completed boolean
{{ entity.completed }}
completedDate completedDate datetime
{{ entity.completedDate }}
created created datetime
{{ entity.created }}
number number integer
{{ entity.number }}

Tipp: Diese Properties sind über Getter/Setter-Methoden in Twig verfügbar. Verwende {{ entity.propertyName }} zum Lesen.

Property Access Twig Usage Methods Return Type
client DB
read write
{{ entity.client }}
getClient()
setClient()
\Aggrosoft\WAWIBundle\Entity\Client
id DB
read
{{ entity.id }}
getId()
string
created DB
read write
{{ entity.created }}
getCreated()
setCreated()
\DateTime
number DB
read write
{{ entity.number }}
getNumber()
setNumber()
integer
cashReports DB
read
{{ entity.cashReports }}
getCashReports()
\Doctrine\Common\Collections\Collection
posTerminal DB
read write
{{ entity.posTerminal }}
getPosTerminal()
setPosTerminal()
\Aggrosoft\WAWIBundle\Entity\PosTerminal
completed DB
read write
{{ entity.completed }}
getCompleted()
setCompleted()
boolean
completedDate DB
read write
{{ entity.completedDate }}
getCompletedDate()
setCompletedDate()
\DateTime
completedByUser DB
read write
{{ entity.completedByUser }}
getCompletedByUser()
setCompletedByUser()
\Aggrosoft\WAWIBundle\Entity\User
ecReports DB
read
{{ entity.ecReports }}
getEcReports()
\Doctrine\Common\Collections\Collection
voucherReports DB
read
{{ entity.voucherReports }}
getVoucherReports()
\Doctrine\Common\Collections\Collection
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
completedByUser ManyToOne User - - - {{ entity.completedByUser }}
posTerminal ManyToOne PosTerminal - - - {{ entity.posTerminal }}
cashReports OneToMany CashReport cashJournal -
persist remove refresh
{{ entity.cashReports }}
ecReports OneToMany ECReport cashJournal -
persist remove refresh
{{ entity.ecReports }}
voucherReports OneToMany VoucherReport cashJournal -
persist remove refresh
{{ entity.voucherReports }}
client ManyToOne Client - customers - {{ entity.client }}
Keine Indexes definiert