VoucherReport

Aggrosoft\WAWIBundle\Entity\VoucherReport
6
Columns
4
Relations
21
Properties

Relationships

Click entity to navigate
erDiagram
    VoucherReport {
                string id PK
                integer number
                boolean completed
                datetime completedDate
                date date
                decimal receiptTotal
                    }
                VoucherReport ||--|| CashReport : "cashReport"
        CashReport {
        int id PK
    }
                VoucherReport }o--|| CashJournal : "cashJournal"
        CashJournal {
        int id PK
    }
                VoucherReport }o--|| User : "user"
        User {
        int id PK
    }
                VoucherReport ||--o{ VoucherReportItem : "items"
        VoucherReportItem {
        int id PK
    }
                    

Metadaten

Tabelle voucherreport
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
number number integer
{{ entity.number }}
completed completed boolean
{{ entity.completed }}
completedDate completedDate datetime
{{ entity.completedDate }}
date date date
{{ entity.date }}
receiptTotal receiptTotal decimal
{{ entity.receiptTotal }}

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

Property Access Twig Usage Methods Return Type
receiptTotalSum Computed
read
{{ entity.receiptTotalSum }}
getReceiptTotalSum()
-
taxTotalSum Computed
read
{{ entity.taxTotalSum }}
getTaxTotalSum()
-
voucherReceiptTotalSum Computed
read
{{ entity.voucherReceiptTotalSum }}
getVoucherReceiptTotalSum()
-
voucherTaxTotalSum Computed
read
{{ entity.voucherTaxTotalSum }}
getVoucherTaxTotalSum()
-
customerCardReceiptTotalSum Computed
read
{{ entity.customerCardReceiptTotalSum }}
getCustomerCardReceiptTotalSum()
-
customerCardTaxTotalSum Computed
read
{{ entity.customerCardTaxTotalSum }}
getCustomerCardTaxTotalSum()
-
id DB
read
{{ entity.id }}
getId()
string
number DB
read write
{{ entity.number }}
getNumber()
setNumber()
integer
completed DB
read write
{{ entity.completed }}
getCompleted()
setCompleted()
boolean
completedDate DB
read write
{{ entity.completedDate }}
getCompletedDate()
setCompletedDate()
\DateTime
date DB
read write
{{ entity.date }}
getDate()
setDate()
\DateTime
receiptTotal DB
read write
{{ entity.receiptTotal }}
getReceiptTotal()
setReceiptTotal()
string
cashReport DB
read write
{{ entity.cashReport }}
getCashReport()
setCashReport()
\Aggrosoft\WAWIBundle\Entity\CashReport
cashJournal DB
read write
{{ entity.cashJournal }}
getCashJournal()
setCashJournal()
\Aggrosoft\WAWIBundle\Entity\CashJournal
user DB
read write
{{ entity.user }}
getUser()
setUser()
\Aggrosoft\WAWIBundle\Entity\User
items DB
read
{{ entity.items }}
getItems()
\Doctrine\Common\Collections\Collection
voucherItems Computed
read
{{ entity.voucherItems }}
getVoucherItems()
-
customerCardItems Computed
read
{{ entity.customerCardItems }}
getCustomerCardItems()
-
taxTotals Computed
read
{{ entity.taxTotals }}
getTaxTotals()
-
voucherTaxTotals Computed
read
{{ entity.voucherTaxTotals }}
getVoucherTaxTotals()
-
customerCardTaxTotals Computed
read
{{ entity.customerCardTaxTotals }}
getCustomerCardTaxTotals()
-
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
cashReport OneToOne CashReport - voucherReport - {{ entity.cashReport }}
cashJournal ManyToOne CashJournal - - - {{ entity.cashJournal }}
user ManyToOne User - - - {{ entity.user }}
items OneToMany VoucherReportItem voucherReport -
persist remove refresh
{{ entity.items }}
Keine Indexes definiert