Tax

Aggrosoft\WAWIBundle\Entity\Tax
7
Columns
2
Relations
9
Properties

Relationships

Click entity to navigate
erDiagram
    Tax {
                string id PK
                string foreignId
                string title
                string fulltitle
                decimal value
                boolean reducedTaxRate
                        ___ ___more___
            }
                Tax }o--|| Country : "shipperCountry"
        Country {
        int id PK
    }
                Tax ||--o{ TaxMetaField : "metafields"
        TaxMetaField {
        int id PK
    }
                    

Metadaten

Tabelle tax
Bundle WAWIBundle
Repository Aggrosoft\WAWIBundle\Entity\TaxRepository
Interfaces
IMetaExtendable IPrototype IUpdateTimeTrackable
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
foreignId foreign_id string(36)
{{ entity.foreignId }}
title title string(255)
{{ entity.title }}
fulltitle fulltitle string(255)
{{ entity.fulltitle }}
value value decimal
{{ entity.value }}
reducedTaxRate reducedTaxRate boolean
{{ entity.reducedTaxRate }}
updated updated datetime
{{ entity.updated }}

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
foreignId DB
read write
{{ entity.foreignId }}
getForeignId()
setForeignId()
string
title DB
read write
{{ entity.title }}
getTitle()
setTitle()
string
value DB
read write
{{ entity.value }}
getValue()
setValue()
float
metafields DB
read
{{ entity.metafields }}
getMetafields()
\Doctrine\Common\Collections\Collection
shipperCountry DB
read write
{{ entity.shipperCountry }}
getShipperCountry()
setShipperCountry()
\Aggrosoft\WAWIBundle\Entity\Country
reducedTaxRate DB
read write
{{ entity.reducedTaxRate }}
getReducedTaxRate()
setReducedTaxRate()
boolean
fulltitle DB
read write
{{ entity.fulltitle }}
getFulltitle()
setFulltitle()
string
updated DB
read write
{{ entity.updated }}
getUpdated()
setUpdated()
\DateTime
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
shipperCountry ManyToOne Country - - - {{ entity.shipperCountry }}
metafields OneToMany TaxMetaField tax -
persist remove
{{ entity.metafields }}
Keine Indexes definiert