Hbci

Aggrosoft\WAWIBundle\Entity\Hbci
14
Columns
5
Relations
30
Properties

Relationships

Click entity to navigate
erDiagram
    Hbci {
                string id PK
                string foreignId
                boolean ignore
                string account
                string bankCode
                string bookType
                        ___ ___more___
            }
                Hbci }o--|| Order : "order"
        Order {
        int id PK
    }
                Hbci }o--o{ Order : "otherOrders"
        Order {
        int id PK
    }
                Hbci }o--|| Liability : "liability"
        Liability {
        int id PK
    }
                Hbci }o--|| AccountBooking : "accountBooking"
        AccountBooking {
        int id PK
    }
                Hbci }o--|| Client : "client"
        Client {
        int id PK
    }
                    

Metadaten

Tabelle hbci
Bundle WAWIBundle
Interfaces
IPrototype IClientable
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
foreignId foreignId string(39)
{{ entity.foreignId }}
ignore bignore boolean
{{ entity.ignore }}
account account string(255)
{{ entity.account }}
bankCode bankCode string(30)
{{ entity.bankCode }}
bookType bookType string(20)
{{ entity.bookType }}
customerName customerName string(255)
{{ entity.customerName }}
balance balance decimal
{{ entity.balance }}
valuta valuta date
{{ entity.valuta }}
bookDate bookDate date
{{ entity.bookDate }}
amount amount decimal
{{ entity.amount }}
reference reference text
{{ entity.reference }}
purpose purpose text
{{ entity.purpose }}
outpayment outpayment boolean
{{ entity.outpayment }}

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

Property Access Twig Usage Methods Return Type
name Computed
read
{{ entity.name }}
getName()
string
customerPurpose Computed
read
{{ entity.customerPurpose }}
getCustomerPurpose()
string
originalCustomerPurpose Computed
read
{{ entity.originalCustomerPurpose }}
getOriginalCustomerPurpose()
-
checkStatus Computed
read write
{{ entity.checkStatus }}
getCheckStatus()
setCheckStatus()
string
id DB
read
{{ entity.id }}
getId()
string
foreignId DB
read write
{{ entity.foreignId }}
getForeignId()
setForeignId()
string
ignore DB
read write
{{ entity.ignore }}
getIgnore()
setIgnore()
boolean
account DB
read write
{{ entity.account }}
getAccount()
setAccount()
integer
bookType DB
read write
{{ entity.bookType }}
getBookType()
setBookType()
string
customerName DB
read write
{{ entity.customerName }}
getCustomerName()
setCustomerName()
string
balance DB
read write
{{ entity.balance }}
getBalance()
setBalance()
float
valuta DB
read write
{{ entity.valuta }}
getValuta()
setValuta()
\DateTime
bookDate DB
read write
{{ entity.bookDate }}
getBookDate()
setBookDate()
\DateTime
amount DB
read write
{{ entity.amount }}
getAmount()
setAmount()
float
reference DB
read write
{{ entity.reference }}
getReference()
setReference()
string
purpose DB
read write
{{ entity.purpose }}
getPurpose()
setPurpose()
string
client DB
read write
{{ entity.client }}
getClient()
setClient()
\Aggrosoft\WAWIBundle\Entity\Client
orders Computed
read write
{{ entity.orders }}
getOrders()
setOrders()
\Aggrosoft\WAWIBundle\Entity\Order
order DB
read write
{{ entity.order }}
getOrder()
setOrder()
\Aggrosoft\WAWIBundle\Entity\Order
liability DB
read write
{{ entity.liability }}
getLiability()
setLiability()
\Aggrosoft\WAWIBundle\Entity\Liability
outpayment DB
read write
{{ entity.outpayment }}
getOutpayment()
setOutpayment()
boolean
accountBooking DB
read write
{{ entity.accountBooking }}
getAccountBooking()
setAccountBooking()
\Aggrosoft\WAWIBundle\Entity\AccountBooking
otherOrders DB
read
{{ entity.otherOrders }}
getOtherOrders()
\Doctrine\Common\Collections\Collection
bankCode DB
read write
{{ entity.bankCode }}
getBankCode()
setBankCode()
string
bookingAccount Computed
read write
{{ entity.bookingAccount }}
getBookingAccount()
setBookingAccount()
-
bookingTax Computed
read write
{{ entity.bookingTax }}
getBookingTax()
setBookingTax()
-
bookingText Computed
read write
{{ entity.bookingText }}
getBookingText()
setBookingText()
-
buKey Computed
read write
{{ entity.buKey }}
getBuKey()
setBuKey()
-
liabilityTemplate Computed
read write
{{ entity.liabilityTemplate }}
getLiabilityTemplate()
setLiabilityTemplate()
-
creditorInvoiceNumber Computed
read write
{{ entity.creditorInvoiceNumber }}
getCreditorInvoiceNumber()
setCreditorInvoiceNumber()
-
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
order ManyToOne Order - - - {{ entity.order }}
otherOrders ManyToMany Order - hbci - {{ entity.otherOrders }}
liability ManyToOne Liability - - - {{ entity.liability }}
accountBooking ManyToOne AccountBooking - - - {{ entity.accountBooking }}
client ManyToOne Client - - - {{ entity.client }}
Index Name Columns Type
bookDate_idx
bookDate
INDEX
foreignid_idx
foreignId
INDEX
ignore_idx
bignore
INDEX