ShippingCost

Aggrosoft\WAWIBundle\Entity\ShippingCost
18
Columns
10
Relations
29
Properties

Relationships

Click entity to navigate
erDiagram
    ShippingCost {
                string id PK
                integer sort
                decimal value
                decimal minProductQuantity
                decimal maxProductQuantity
                decimal minProductWeight
                        ___ ___more___
            }
                ShippingCost }o--o{ SalesChannel : "salesChannels"
        SalesChannel {
        int id PK
    }
                ShippingCost }o--o{ Country : "countries"
        Country {
        int id PK
    }
                ShippingCost }o--o{ Country : "excludedCountries"
        Country {
        int id PK
    }
                ShippingCost }o--o{ CustomerGroup : "customerGroups"
        CustomerGroup {
        int id PK
    }
                ShippingCost }o--o{ CustomerGroup : "excludedCustomerGroups"
        CustomerGroup {
        int id PK
    }
                ShippingCost }o--o{ Category : "categories"
        Category {
        int id PK
    }
                ShippingCost }o--o{ Product : "products"
        Product {
        int id PK
    }
                ShippingCost }o--o{ Category : "excludedCategories"
        Category {
        int id PK
    }
                ShippingCost }o--o{ Product : "excludedProducts"
        Product {
        int id PK
    }
                ShippingCost }o--|| Shipping : "shipping"
        Shipping {
        int id PK
    }
                    

Metadaten

Tabelle shippingcost
Bundle WAWIBundle
Interfaces
IChildEntity
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
sort sort integer(11)
{{ entity.sort }}
value value decimal
{{ entity.value }}
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 }}
minProductPrice minProductPrice decimal
{{ entity.minProductPrice }}
maxProductPrice maxProductPrice decimal
{{ entity.maxProductPrice }}
minMaxPriceNetto minMaxPriceNetto boolean
{{ entity.minMaxPriceNetto }}

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
sort DB
read write
{{ entity.sort }}
getSort()
setSort()
integer
value DB
read write
{{ entity.value }}
getValue()
setValue()
string
salesChannels DB
read
{{ entity.salesChannels }}
getSalesChannels()
\Doctrine\Common\Collections\Collection
countries DB
read
{{ entity.countries }}
getCountries()
\Doctrine\Common\Collections\Collection
customerGroups DB
read
{{ entity.customerGroups }}
getCustomerGroups()
\Doctrine\Common\Collections\Collection
shipping DB
read write
{{ entity.shipping }}
getShipping()
setShipping()
\Aggrosoft\WAWIBundle\Entity\Shipping
products DB
read write
{{ entity.products }}
getProducts()
setProducts()
\Doctrine\Common\Collections\Collection
categories DB
read write
{{ entity.categories }}
getCategories()
setCategories()
\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
excludedCountries DB
read
{{ entity.excludedCountries }}
getExcludedCountries()
\Doctrine\Common\Collections\Collection
excludedCustomerGroups DB
read
{{ entity.excludedCustomerGroups }}
getExcludedCustomerGroups()
\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
minProductPrice DB
read write
{{ entity.minProductPrice }}
getMinProductPrice()
setMinProductPrice()
string
maxProductPrice DB
read write
{{ entity.maxProductPrice }}
getMaxProductPrice()
setMaxProductPrice()
string
minMaxPriceNetto DB
read write
{{ entity.minMaxPriceNetto }}
getMinMaxPriceNetto()
setMinMaxPriceNetto()
boolean
parentEntityForForms Computed
read
{{ entity.parentEntityForForms }}
getParentEntityForForms()
-
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
salesChannels ManyToMany SalesChannel - shippingcosts - {{ entity.salesChannels }}
countries ManyToMany Country - shippingcosts - {{ entity.countries }}
excludedCountries ManyToMany Country - excludedshippingcosts - {{ entity.excludedCountries }}
customerGroups ManyToMany CustomerGroup - shippingcosts - {{ entity.customerGroups }}
excludedCustomerGroups ManyToMany CustomerGroup - excludedshippingcosts - {{ entity.excludedCustomerGroups }}
categories ManyToMany Category - shippingcosts - {{ entity.categories }}
products ManyToMany Product - shippingcosts - {{ entity.products }}
excludedCategories ManyToMany Category - excludedshippingcosts - {{ entity.excludedCategories }}
excludedProducts ManyToMany Product - excludedshippingcosts - {{ entity.excludedProducts }}
shipping ManyToOne Shipping - - - {{ entity.shipping }}
Keine Indexes definiert