InvoiceLedger

Aggrosoft\WAWIBundle\Entity\InvoiceLedger
3
Columns
2
Relations
8
Properties

Relationships

Click entity to navigate
erDiagram
    InvoiceLedger {
                string id PK
                integer year
                integer month
                    }
                InvoiceLedger }o--|| Client : "client"
        Client {
        int id PK
    }
                InvoiceLedger ||--o{ InvoiceLedgerItem : "items"
        InvoiceLedgerItem {
        int id PK
    }
                    

Metadaten

Tabelle invoiceledger
Bundle WAWIBundle
Interfaces
IClientable
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
year year integer
{{ entity.year }}
month month integer
{{ entity.month }}

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

Property Access Twig Usage Methods Return Type
nettoSum Computed
read
{{ entity.nettoSum }}
getNettoSum()
number
bruttoSum Computed
read
{{ entity.bruttoSum }}
getBruttoSum()
number
vatSum Computed
read
{{ entity.vatSum }}
getVatSum()
number
id DB
read
{{ entity.id }}
getId()
string
year DB
read write
{{ entity.year }}
getYear()
setYear()
integer
month DB
read write
{{ entity.month }}
getMonth()
setMonth()
integer
client DB
read write
{{ entity.client }}
getClient()
setClient()
\Aggrosoft\WAWIBundle\Entity\Client
items DB
read
{{ entity.items }}
getItems()
\Doctrine\Common\Collections\Collection
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
client ManyToOne Client - - - {{ entity.client }}
items OneToMany InvoiceLedgerItem invoiceLedger -
persist remove refresh
{{ entity.items }}
Keine Indexes definiert