Vendor

Aggrosoft\WAWIBundle\Entity\Vendor
10
Columns
8
Relations
30
Properties

Relationships

Click entity to navigate
erDiagram
    Vendor {
                string id PK
                string foreignId
                string title
                boolean active
                string description
                string customerNumber
                        ___ ___more___
            }
                Vendor ||--|| VendorInformation : "information"
        VendorInformation {
        int id PK
    }
                Vendor ||--|| VendorConditions : "conditions"
        VendorConditions {
        int id PK
    }
                Vendor ||--o{ VendorContact : "contacts"
        VendorContact {
        int id PK
    }
                Vendor }o--o{ ObjectGroup : "groups"
        ObjectGroup {
        int id PK
    }
                Vendor ||--o{ VendorProduct : "products"
        VendorProduct {
        int id PK
    }
                Vendor ||--o{ VendorOrder : "orders"
        VendorOrder {
        int id PK
    }
                Vendor ||--o{ VendorMetaField : "metafields"
        VendorMetaField {
        int id PK
    }
                Vendor }o--o{ Client : "clients"
        Client {
        int id PK
    }
                    

Metadaten

Tabelle vendor
Bundle WAWIBundle
Repository Aggrosoft\WAWIBundle\Entity\Repository\VendorRepository
Interfaces
IUpload IMultiClientable IPrototype IHasLanguage IGroupable IMetaExtendable 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 }}
active active boolean
{{ entity.active }}
description description string(255)
{{ entity.description }}
customerNumber customerNumber string(255)
{{ entity.customerNumber }}
vendorNumber vendorNumber string(255)
{{ entity.vendorNumber }}
iconName icon string(255)
{{ entity.iconName }}
lastUpdated lastupdated integer(11)
{{ entity.lastUpdated }}
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
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
active DB
read write
{{ entity.active }}
getActive()
setActive()
boolean
description DB
read write
{{ entity.description }}
getDescription()
setDescription()
string
products DB
read
{{ entity.products }}
getProducts()
Doctrine\Common\Collections\Collection
iconName DB
read write
{{ entity.iconName }}
getIconName()
setIconName()
string
icon Computed
read write
{{ entity.icon }}
getIcon()
setIcon()
-
lastUpdated DB
read write
{{ entity.lastUpdated }}
getLastUpdated()
setLastUpdated()
integer
subPath Computed
read
{{ entity.subPath }}
getSubPath()
-
clients DB
read
{{ entity.clients }}
getClients()
\Doctrine\Common\Collections\Collection
activeClient Computed
read
{{ entity.activeClient }}
getActiveClient()
-
customerNumber DB
read write
{{ entity.customerNumber }}
getCustomerNumber()
setCustomerNumber()
string
vendorNumber DB
read write
{{ entity.vendorNumber }}
getVendorNumber()
setVendorNumber()
string
information DB
read write
{{ entity.information }}
getInformation()
setInformation()
\Aggrosoft\WAWIBundle\Entity\VendorInformation
conditions DB
read write
{{ entity.conditions }}
getConditions()
setConditions()
\Aggrosoft\WAWIBundle\Entity\VendorConditions
contacts DB
read
{{ entity.contacts }}
getContacts()
\Doctrine\Common\Collections\Collection
orders DB
read
{{ entity.orders }}
getOrders()
\Doctrine\Common\Collections\Collection
removeRouter Computed
read
{{ entity.removeRouter }}
getRemoveRouter()
-
language Computed
read
{{ entity.language }}
getLanguage()
-
selectedLanguage Computed
read write
{{ entity.selectedLanguage }}
getSelectedLanguage()
setSelectedLanguage()
-
translatableLocale Computed
write

setTranslatableLocale()
-
groups DB
read
{{ entity.groups }}
getGroups()
\Doctrine\Common\Collections\Collection
metafields DB
read
{{ entity.metafields }}
getMetafields()
\Doctrine\Common\Collections\Collection
titleWithStatus Computed
read
{{ entity.titleWithStatus }}
getTitleWithStatus()
-
newVendorProduct Computed
read write
{{ entity.newVendorProduct }}
getNewVendorProduct()
setNewVendorProduct()
-
titleWithVendorNumber Computed
read
{{ entity.titleWithVendorNumber }}
getTitleWithVendorNumber()
-
updated DB
read write
{{ entity.updated }}
getUpdated()
setUpdated()
\DateTime
fullTitleWithClient Computed
read
{{ entity.fullTitleWithClient }}
getFullTitleWithClient()
-
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
information OneToOne VendorInformation - -
all
{{ entity.information }}
conditions OneToOne VendorConditions - -
all
{{ entity.conditions }}
contacts OneToMany VendorContact vendor -
all
{{ entity.contacts }}
groups ManyToMany ObjectGroup - vendors - {{ entity.groups }}
products OneToMany VendorProduct vendor - - {{ entity.products }}
orders OneToMany VendorOrder vendor - - {{ entity.orders }}
metafields OneToMany VendorMetaField vendor -
persist remove
{{ entity.metafields }}
clients ManyToMany Client - vendors - {{ entity.clients }}
Index Name Columns Type
title_idx
title
INDEX