Address

Aggrosoft\WAWIBundle\Entity\Address
22
Columns
4
Relations
34
Properties

Relationships

Click entity to navigate
erDiagram
    Address {
                string id PK
                integer sort
                boolean defaultBillingAddress
                boolean defaultShippingAddress
                string foreignId
                string foreignCountryId
                        ___ ___more___
            }
                Address }o--|| Customer : "customer"
        Customer {
        int id PK
    }
                Address }o--|| Country : "country"
        Country {
        int id PK
    }
                Address }o--|| State : "state"
        State {
        int id PK
    }
                Address }o--|| Country : "exportCountry"
        Country {
        int id PK
    }
                    

Metadaten

Tabelle address
Bundle WAWIBundle
Interfaces
IPrototype
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
sort sort integer(11)
{{ entity.sort }}
defaultBillingAddress defaultBillingAddress boolean
{{ entity.defaultBillingAddress }}
defaultShippingAddress defaultShippingAddress boolean
{{ entity.defaultShippingAddress }}
foreignId foreign_id string(36)
{{ entity.foreignId }}
foreignCountryId foreign_country_id string(36)
{{ entity.foreignCountryId }}
foreignCustomerId foreign_customer_id string(36)
{{ entity.foreignCustomerId }}
title title string(255)
{{ entity.title }}
company company string(255)
{{ entity.company }}
salutation salutation string(128)
{{ entity.salutation }}
firstName firstName string(255)
{{ entity.firstName }}
lastName lastName string(255)
{{ entity.lastName }}
additionalInfo additionalInfo string(255)
{{ entity.additionalInfo }}
additionalInfo2 additionalInfo2 string(255)
{{ entity.additionalInfo2 }}
street street string(255)
{{ entity.street }}
city city string(255)
{{ entity.city }}
zip zip string(128)
{{ entity.zip }}
phone phone string(128)
{{ entity.phone }}
fax fax string(128)
{{ entity.fax }}
vatId vatId string(50)
{{ entity.vatId }}
status status string(128)
{{ entity.status }}
glnNumber glnNumber string(128)
{{ entity.glnNumber }}

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

Property Access Twig Usage Methods Return Type
fullAddress Computed
read
{{ entity.fullAddress }}
getFullAddress()
-
company DB
read write
{{ entity.company }}
getCompany()
setCompany()
string
fullName Computed
read
{{ entity.fullName }}
getFullName()
-
titleSalutation Computed
read
{{ entity.titleSalutation }}
getTitleSalutation()
-
streetWithoutHouseNumber Computed
read
{{ entity.streetWithoutHouseNumber }}
getStreetWithoutHouseNumber()
-
houseNumber Computed
read
{{ entity.houseNumber }}
getHouseNumber()
-
streetParts Computed
read
{{ entity.streetParts }}
getStreetParts()
-
id DB
read
{{ entity.id }}
getId()
string
foreignId DB
read write
{{ entity.foreignId }}
getForeignId()
setForeignId()
string
foreignCountryId DB
read write
{{ entity.foreignCountryId }}
getForeignCountryId()
setForeignCountryId()
string
foreignCustomerId DB
read write
{{ entity.foreignCustomerId }}
getForeignCustomerId()
setForeignCustomerId()
string
title DB
read write
{{ entity.title }}
getTitle()
setTitle()
string
firstName DB
read write
{{ entity.firstName }}
getFirstName()
setFirstName()
string
lastName DB
read write
{{ entity.lastName }}
getLastName()
setLastName()
string
street DB
read write
{{ entity.street }}
getStreet()
setStreet()
string
city DB
read write
{{ entity.city }}
getCity()
setCity()
string
zip DB
read write
{{ entity.zip }}
getZip()
setZip()
string
phone DB
read write
{{ entity.phone }}
getPhone()
setPhone()
string
fax DB
read write
{{ entity.fax }}
getFax()
setFax()
string
customer DB
read write
{{ entity.customer }}
getCustomer()
setCustomer()
Aggrosoft\WAWIBundle\Entity\Customer
country DB
read write
{{ entity.country }}
getCountry()
setCountry()
Aggrosoft\WAWIBundle\Entity\Country
state DB
read write
{{ entity.state }}
getState()
setState()
\Aggrosoft\WAWIBundle\Entity\State
vatId DB
read write
{{ entity.vatId }}
getVatId()
setVatId()
string
salutation DB
read write
{{ entity.salutation }}
getSalutation()
setSalutation()
string
additionalInfo DB
read write
{{ entity.additionalInfo }}
getAdditionalInfo()
setAdditionalInfo()
string
defaultShippingAddress DB
read write
{{ entity.defaultShippingAddress }}
getDefaultShippingAddress()
setDefaultShippingAddress()
boolean
defaultBillingAddress DB
read write
{{ entity.defaultBillingAddress }}
getDefaultBillingAddress()
setDefaultBillingAddress()
mixed
northIrland Computed
read
{{ entity.northIrland }}
isNorthIrland()
-
eUSpecialArea Computed
read
{{ entity.eUSpecialArea }}
isEUSpecialArea()
-
sort DB
read write
{{ entity.sort }}
getSort()
setSort()
integer
status DB
read write
{{ entity.status }}
getStatus()
setStatus()
string
exportCountry DB
read write
{{ entity.exportCountry }}
getExportCountry()
setExportCountry()
\Aggrosoft\WAWIBundle\Entity\Country
additionalInfo2 DB
read write
{{ entity.additionalInfo2 }}
getAdditionalInfo2()
setAdditionalInfo2()
string
glnNumber DB
read write
{{ entity.glnNumber }}
getGlnNumber()
setGlnNumber()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
customer ManyToOne Customer - addresses - {{ entity.customer }}
country ManyToOne Country - states - {{ entity.country }}
state ManyToOne State - addresses - {{ entity.state }}
exportCountry ManyToOne Country - - - {{ entity.exportCountry }}
Keine Indexes definiert