Shipping

Aggrosoft\WAWIBundle\Entity\Shipping
25
Columns
16
Relations
46
Properties

Relationships

Click entity to navigate
erDiagram
    Shipping {
                string id PK
                boolean active
                string handler
                string ident
                integer sort
                string title
                        ___ ___more___
            }
                Shipping }o--|| Client : "client"
        Client {
        int id PK
    }
                Shipping ||--o{ ShippingMetaField : "metafields"
        ShippingMetaField {
        int id PK
    }
                Shipping }o--o{ Category : "categories"
        Category {
        int id PK
    }
                Shipping }o--o{ Product : "products"
        Product {
        int id PK
    }
                Shipping }o--o{ Category : "excludedCategories"
        Category {
        int id PK
    }
                Shipping }o--o{ Product : "excludedProducts"
        Product {
        int id PK
    }
                Shipping ||--o{ ShippingCost : "shippingcosts"
        ShippingCost {
        int id PK
    }
                Shipping ||--o{ ShippingPackage : "shippingpackages"
        ShippingPackage {
        int id PK
    }
                Shipping }o--o{ ObjectGroup : "groups"
        ObjectGroup {
        int id PK
    }
                Shipping }o--o{ CustomerGroup : "customerGroups"
        CustomerGroup {
        int id PK
    }
                Shipping }o--o{ CustomerGroup : "excludedCustomerGroups"
        CustomerGroup {
        int id PK
    }
                Shipping }o--o{ SalesChannel : "saleschannels"
        SalesChannel {
        int id PK
    }
                Shipping }o--o{ Country : "countries"
        Country {
        int id PK
    }
                Shipping }o--o{ Country : "excludedCountries"
        Country {
        int id PK
    }
                Shipping }o--o{ Payment : "payments"
        Payment {
        int id PK
    }
                Shipping }o--o{ Payment : "excludedPayments"
        Payment {
        int id PK
    }
                    

Metadaten

Tabelle shipping
Bundle WAWIBundle
Repository Aggrosoft\WAWIBundle\Entity\Repository\ShippingRepository
Interfaces
IClientable IMetaExtendable Translatable IClientClonable IGroupable IHasLanguage IUpdateTimeTrackable
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
active active boolean
{{ entity.active }}
handler handler string(36)
{{ entity.handler }}
ident ident string(36)
{{ entity.ident }}
sort sort integer(11)
{{ entity.sort }}
title title string(255)
{{ entity.title }}
costs costs decimal
{{ entity.costs }}
costsForShipper costsForShipper decimal
{{ entity.costsForShipper }}
metadata metadata array
{{ entity.metadata }}
minProductQuantity minProductQuantity decimal
{{ entity.minProductQuantity }}
maxProductQuantity maxProductQuantity decimal
{{ entity.maxProductQuantity }}
minProductWeight minProductWeight decimal
{{ entity.minProductWeight }}
maxProductWeight maxProductWeight decimal
{{ entity.maxProductWeight }}
minProductVolume minProductVolume decimal
{{ entity.minProductVolume }}
maxProductVolume maxProductVolume decimal
{{ entity.maxProductVolume }}
minProductLength minProductLength decimal
{{ entity.minProductLength }}
maxProductLength maxProductLength decimal
{{ entity.maxProductLength }}
minProductWidth minProductWidth decimal
{{ entity.minProductWidth }}
maxProductWidth maxProductWidth decimal
{{ entity.maxProductWidth }}
minProductHeight minProductHeight decimal
{{ entity.minProductHeight }}
maxProductHeight maxProductHeight decimal
{{ entity.maxProductHeight }}
minDeliveryTime minDeliveryTime integer(11)
{{ entity.minDeliveryTime }}
maxDeliveryTime maxDeliveryTime integer(11)
{{ entity.maxDeliveryTime }}
customCondition customCondition text
{{ entity.customCondition }}
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
handler DB
read write
{{ entity.handler }}
getHandler()
setHandler()
string
ident DB
read write
{{ entity.ident }}
getIdent()
setIdent()
string
title DB
read write
{{ entity.title }}
getTitle()
setTitle()
string
client DB
read write
{{ entity.client }}
getClient()
setClient()
\Aggrosoft\WAWIBundle\Entity\Client
metadata DB
read write
{{ entity.metadata }}
getMetadata()
setMetadata()
array
metafields DB
read
{{ entity.metafields }}
getMetafields()
\Doctrine\Common\Collections\Collection
costs DB
read write
{{ entity.costs }}
getCosts()
setCosts()
string
translatableLocale Computed
write

setTranslatableLocale()
-
sort DB
read write
{{ entity.sort }}
getSort()
setSort()
integer
shippingcosts DB
read
{{ entity.shippingcosts }}
getShippingcosts()
\Doctrine\Common\Collections\Collection
categories DB
read write
{{ entity.categories }}
getCategories()
setCategories()
\Doctrine\Common\Collections\Collection
products DB
read write
{{ entity.products }}
getProducts()
setProducts()
\Doctrine\Common\Collections\Collection
excludedCategories DB
read write
{{ entity.excludedCategories }}
getExcludedCategories()
setExcludedCategories()
\Doctrine\Common\Collections\Collection
excludedProducts DB
read write
{{ entity.excludedProducts }}
getExcludedProducts()
setExcludedProducts()
\Doctrine\Common\Collections\Collection
deliveryTime Computed
read write
{{ entity.deliveryTime }}
getDeliveryTime()
setDeliveryTime()
integer
minDeliveryTime DB
read write
{{ entity.minDeliveryTime }}
getMinDeliveryTime()
setMinDeliveryTime()
integer
maxDeliveryTime DB
read write
{{ entity.maxDeliveryTime }}
getMaxDeliveryTime()
setMaxDeliveryTime()
integer
active DB
read write
{{ entity.active }}
getActive()
setActive()
boolean
shippingpackages DB
read
{{ entity.shippingpackages }}
getShippingpackages()
\Doctrine\Common\Collections\Collection
groups DB
read
{{ entity.groups }}
getGroups()
\Doctrine\Common\Collections\Collection
customerGroups DB
read
{{ entity.customerGroups }}
getCustomerGroups()
\Doctrine\Common\Collections\Collection
excludedCustomerGroups DB
read
{{ entity.excludedCustomerGroups }}
getExcludedCustomerGroups()
\Doctrine\Common\Collections\Collection
saleschannels DB
read
{{ entity.saleschannels }}
getSaleschannels()
\Doctrine\Common\Collections\Collection
countries DB
read
{{ entity.countries }}
getCountries()
\Doctrine\Common\Collections\Collection
excludedCountries DB
read
{{ entity.excludedCountries }}
getExcludedCountries()
\Doctrine\Common\Collections\Collection
payments DB
read
{{ entity.payments }}
getPayments()
\Doctrine\Common\Collections\Collection
excludedPayments DB
read
{{ entity.excludedPayments }}
getExcludedPayments()
\Doctrine\Common\Collections\Collection
minProductQuantity DB
read write
{{ entity.minProductQuantity }}
getMinProductQuantity()
setMinProductQuantity()
string
maxProductQuantity DB
read write
{{ entity.maxProductQuantity }}
getMaxProductQuantity()
setMaxProductQuantity()
string
minProductWeight DB
read write
{{ entity.minProductWeight }}
getMinProductWeight()
setMinProductWeight()
string
maxProductWeight DB
read write
{{ entity.maxProductWeight }}
getMaxProductWeight()
setMaxProductWeight()
string
minProductVolume DB
read write
{{ entity.minProductVolume }}
getMinProductVolume()
setMinProductVolume()
string
maxProductVolume DB
read write
{{ entity.maxProductVolume }}
getMaxProductVolume()
setMaxProductVolume()
string
minProductLength DB
read write
{{ entity.minProductLength }}
getMinProductLength()
setMinProductLength()
string
maxProductLength DB
read write
{{ entity.maxProductLength }}
getMaxProductLength()
setMaxProductLength()
string
minProductWidth DB
read write
{{ entity.minProductWidth }}
getMinProductWidth()
setMinProductWidth()
string
maxProductWidth DB
read write
{{ entity.maxProductWidth }}
getMaxProductWidth()
setMaxProductWidth()
string
minProductHeight DB
read write
{{ entity.minProductHeight }}
getMinProductHeight()
setMinProductHeight()
string
maxProductHeight DB
read write
{{ entity.maxProductHeight }}
getMaxProductHeight()
setMaxProductHeight()
string
language Computed
read
{{ entity.language }}
getLanguage()
-
selectedLanguage Computed
read write
{{ entity.selectedLanguage }}
getSelectedLanguage()
setSelectedLanguage()
-
customCondition DB
read write
{{ entity.customCondition }}
getCustomCondition()
setCustomCondition()
string
entityLocale Computed
read
{{ entity.entityLocale }}
getEntityLocale()
-
updated DB
read write
{{ entity.updated }}
getUpdated()
setUpdated()
\DateTime
costsForShipper DB
read write
{{ entity.costsForShipper }}
getCostsForShipper()
setCostsForShipper()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
client ManyToOne Client - shippings
persist refresh
{{ entity.client }}
metafields OneToMany ShippingMetaField shipping -
persist remove
{{ entity.metafields }}
categories ManyToMany Category - shippings - {{ entity.categories }}
products ManyToMany Product - shippings - {{ entity.products }}
excludedCategories ManyToMany Category - excludedshippings - {{ entity.excludedCategories }}
excludedProducts ManyToMany Product - excludedshippings - {{ entity.excludedProducts }}
shippingcosts OneToMany ShippingCost shipping -
persist remove refresh
{{ entity.shippingcosts }}
shippingpackages OneToMany ShippingPackage shipping -
persist remove refresh
{{ entity.shippingpackages }}
groups ManyToMany ObjectGroup - shippings - {{ entity.groups }}
customerGroups ManyToMany CustomerGroup - shippings - {{ entity.customerGroups }}
excludedCustomerGroups ManyToMany CustomerGroup - excludedshippings - {{ entity.excludedCustomerGroups }}
saleschannels ManyToMany SalesChannel - shippings
persist
{{ entity.saleschannels }}
countries ManyToMany Country - shippings - {{ entity.countries }}
excludedCountries ManyToMany Country - excludedshippings - {{ entity.excludedCountries }}
payments ManyToMany Payment - shippings
persist
{{ entity.payments }}
excludedPayments ManyToMany Payment - excludedshippings
persist
{{ entity.excludedPayments }}
Keine Indexes definiert