ECReport

Aggrosoft\WAWIBundle\Entity\ECReport
6
Columns
4
Relations
15
Properties

Relationships

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

Metadaten

Tabelle ecreport
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()
-
invoiceReceiptTotalSum Computed
read
{{ entity.invoiceReceiptTotalSum }}
getInvoiceReceiptTotalSum()
-
taxTotalSum Computed
read
{{ entity.taxTotalSum }}
getTaxTotalSum()
-
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
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
receiptTotal DB
read write
{{ entity.receiptTotal }}
getReceiptTotal()
setReceiptTotal()
string
cashReport DB
read write
{{ entity.cashReport }}
getCashReport()
setCashReport()
\Aggrosoft\WAWIBundle\Entity\CashReport
taxTotals Computed
read
{{ entity.taxTotals }}
getTaxTotals()
-
pawnTaxTotals Computed
read
{{ entity.pawnTaxTotals }}
getPawnTaxTotals()
-
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
cashReport OneToOne CashReport - ecReport - {{ entity.cashReport }}
cashJournal ManyToOne CashJournal - ecReports - {{ entity.cashJournal }}
user ManyToOne User - - - {{ entity.user }}
items OneToMany ECReportItem ecReport -
persist remove refresh
{{ entity.items }}
Keine Indexes definiert