SubscriptionContractItem

Aggrosoft\WAWIBundle\Entity\SubscriptionContractItem
8
Columns
2
Relations
12
Properties

Relationships

Click entity to navigate
erDiagram
    SubscriptionContractItem {
                string id PK
                integer sort
                date terminatedDate
                datetime lastPaymentDate
                decimal quantity
                decimal salePrice
                        ___ ___more___
            }
                SubscriptionContractItem }o--|| Product : "product"
        Product {
        int id PK
    }
                SubscriptionContractItem }o--|| SubscriptionContract : "subscriptionContract"
        SubscriptionContract {
        int id PK
    }
                    

Metadaten

Tabelle subscriptioncontractitem
Bundle WAWIBundle
Interfaces
IPrototype
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
sort sort integer(11)
{{ entity.sort }}
terminatedDate terminatedDate date
{{ entity.terminatedDate }}
lastPaymentDate lastPaymentDate datetime
{{ entity.lastPaymentDate }}
quantity quantity decimal
{{ entity.quantity }}
salePrice salePrice decimal
{{ entity.salePrice }}
note note text
{{ entity.note }}
offerItemNote offerItemNote text
{{ entity.offerItemNote }}

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
terminatedDate DB
read write
{{ entity.terminatedDate }}
getTerminatedDate()
setTerminatedDate()
\DateTime
quantity DB
read write
{{ entity.quantity }}
getQuantity()
setQuantity()
string
salePrice DB
read write
{{ entity.salePrice }}
getSalePrice()
setSalePrice()
string
note DB
read write
{{ entity.note }}
getNote()
setNote()
string
product DB
read write
{{ entity.product }}
getProduct()
setProduct()
\Aggrosoft\WAWIBundle\Entity\Product
subscriptionContract DB
read write
{{ entity.subscriptionContract }}
getSubscriptionContract()
setSubscriptionContract()
\Aggrosoft\WAWIBundle\Entity\SubscriptionContract
sum Computed
read
{{ entity.sum }}
getSum()
-
lastPaymentDate DB
read write
{{ entity.lastPaymentDate }}
getLastPaymentDate()
setLastPaymentDate()
\DateTime
offerItemNote DB
read write
{{ entity.offerItemNote }}
getOfferItemNote()
setOfferItemNote()
string
active Computed
read write
{{ entity.active }}
getActive()
setActive()
-
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
product ManyToOne Product - - - {{ entity.product }}
subscriptionContract ManyToOne SubscriptionContract - items - {{ entity.subscriptionContract }}
Keine Indexes definiert