ProductOptionField

Aggrosoft\WAWIBundle\Entity\ProductOptionField
9
Columns
2
Relations
20
Properties

Relationships

Click entity to navigate
erDiagram
    ProductOptionField {
                string id PK
                string foreignId
                string title
                string description
                decimal surcharge
                string surchargeType
                        ___ ___more___
            }
                ProductOptionField }o--|| ProductOption : "productoption"
        ProductOption {
        int id PK
    }
                ProductOptionField ||--o{ ProductOptionMaterial : "materials"
        ProductOptionMaterial {
        int id PK
    }
                    

Metadaten

Tabelle productoptionfield
Bundle WAWIBundle
Interfaces
IUpload Translatable IForeignClientable
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 }}
description description string(255)
{{ entity.description }}
surcharge surcharge decimal
{{ entity.surcharge }}
surchargeType surchargeType string(8)
{{ entity.surchargeType }}
sort sort integer(11)
{{ entity.sort }}
iconName icon string(255)
{{ entity.iconName }}
colorCode colorCode string(255)
{{ entity.colorCode }}

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

Property Access Twig Usage Methods Return Type
titleWithSurcharge Computed
read
{{ entity.titleWithSurcharge }}
getTitleWithSurcharge()
-
uploadFields Computed
read
{{ entity.uploadFields }}
getUploadFields()
-
id DB
read write
{{ entity.id }}
getId()
setId()
string
foreignId DB
read write
{{ entity.foreignId }}
getForeignId()
setForeignId()
string
title DB
read write
{{ entity.title }}
getTitle()
setTitle()
string
description DB
read write
{{ entity.description }}
getDescription()
setDescription()
string
surcharge DB
read write
{{ entity.surcharge }}
getSurcharge()
setSurcharge()
float
surchargeType DB
read write
{{ entity.surchargeType }}
getSurchargeType()
setSurchargeType()
string
sort DB
read write
{{ entity.sort }}
getSort()
setSort()
integer
productoption DB
read write
{{ entity.productoption }}
getProductoption()
setProductoption()
\Aggrosoft\WAWIBundle\Entity\ProductOption
translatableLocale Computed
write

setTranslatableLocale()
-
materials DB
read
{{ entity.materials }}
getMaterials()
\Doctrine\Common\Collections\Collection
iconName DB
read write
{{ entity.iconName }}
getIconName()
setIconName()
string
icon Computed
read write
{{ entity.icon }}
getIcon()
setIcon()
-
subPath Computed
read
{{ entity.subPath }}
getSubPath()
-
foreignClient Computed
read
{{ entity.foreignClient }}
getForeignClient()
-
removeRouter Computed
read
{{ entity.removeRouter }}
getRemoveRouter()
-
colorCode DB
read write
{{ entity.colorCode }}
getColorCode()
setColorCode()
string
fullTitle Computed
read
{{ entity.fullTitle }}
getFullTitle()
-
fullTitleWithoutSurcharge Computed
read
{{ entity.fullTitleWithoutSurcharge }}
getFullTitleWithoutSurcharge()
-
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
productoption ManyToOne ProductOption - fields - {{ entity.productoption }}
materials OneToMany ProductOptionMaterial productOptionField -
persist remove
{{ entity.materials }}
Keine Indexes definiert