RealProductStatus

Aggrosoft\WAWIBundle\Entity\RealProductStatus
32
Columns
2
Relations
35
Properties

Relationships

Click entity to navigate
erDiagram
    RealProductStatus {
                string id PK
                datetime updatedDate
                datetime reportUpdatedDate
                datetime createdDate
                string status
                string storefront
                        ___ ___more___
            }
                RealProductStatus }o--|| Client : "client"
        Client {
        int id PK
    }
                RealProductStatus }o--|| Product : "product"
        Product {
        int id PK
    }
                    

Metadaten

Tabelle realproductstatus
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
updatedDate updatedDate datetime
{{ entity.updatedDate }}
reportUpdatedDate reportUpdatedDate datetime
{{ entity.reportUpdatedDate }}
createdDate createdDate datetime
{{ entity.createdDate }}
status status string(50)
{{ entity.status }}
storefront storefront string(10)
{{ entity.storefront }}
idOffer idOffer string(50)
{{ entity.idOffer }}
idProduct idProduct string(50)
{{ entity.idProduct }}
idUnit idUnit string(50)
{{ entity.idUnit }}
title title string(255)
{{ entity.title }}
manufacturer manufacturer string(255)
{{ entity.manufacturer }}
productCondition productCondition string(30)
{{ entity.productCondition }}
note note text
{{ entity.note }}
ageRating ageRating integer
{{ entity.ageRating }}
transportTimeMin transportTimeMin integer
{{ entity.transportTimeMin }}
transportTimeMax transportTimeMax integer
{{ entity.transportTimeMax }}
handlingTime handlingTime integer
{{ entity.handlingTime }}
isValid isValid boolean
{{ entity.isValid }}
listingPrice listingPrice decimal(11,2)
{{ entity.listingPrice }}
minimumPrice minimumPrice decimal(11,2)
{{ entity.minimumPrice }}
price price decimal(11,2)
{{ entity.price }}
currency currency string(3)
{{ entity.currency }}
shippingRate shippingRate decimal(11,2)
{{ entity.shippingRate }}
eans eans text
{{ entity.eans }}
errors errors text
{{ entity.errors }}
missingAttributes missingAttributes text
{{ entity.missingAttributes }}
attributes attributes text
{{ entity.attributes }}
productNotReadyReason productNotReadyReason text
{{ entity.productNotReadyReason }}
updateFailReason updateFailReason text
{{ entity.updateFailReason }}
updateStatus updateStatus string(50)
{{ entity.updateStatus }}
stock stock decimal
{{ entity.stock }}
shouldUpdate shouldUpdate boolean
{{ entity.shouldUpdate }}

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
updatedDate DB
read write
{{ entity.updatedDate }}
getUpdatedDate()
setUpdatedDate()
\DateTime
createdDate DB
read write
{{ entity.createdDate }}
getCreatedDate()
setCreatedDate()
\DateTime
status DB
read write
{{ entity.status }}
getStatus()
setStatus()
string
storefront DB
read write
{{ entity.storefront }}
getStorefront()
setStorefront()
string
idOffer DB
read write
{{ entity.idOffer }}
getIdOffer()
setIdOffer()
string
idProduct DB
read write
{{ entity.idProduct }}
getIdProduct()
setIdProduct()
string
title DB
read write
{{ entity.title }}
getTitle()
setTitle()
string
manufacturer DB
read write
{{ entity.manufacturer }}
getManufacturer()
setManufacturer()
string
condition Computed
read write
{{ entity.condition }}
getCondition()
setCondition()
string
listingPrice DB
read write
{{ entity.listingPrice }}
getListingPrice()
setListingPrice()
string
minimumPrice DB
read write
{{ entity.minimumPrice }}
getMinimumPrice()
setMinimumPrice()
string
price DB
read write
{{ entity.price }}
getPrice()
setPrice()
string
shippingRate DB
read write
{{ entity.shippingRate }}
getShippingRate()
setShippingRate()
string
eans DB
read write
{{ entity.eans }}
getEans()
setEans()
string
stock DB
read write
{{ entity.stock }}
getStock()
setStock()
string
client DB
read write
{{ entity.client }}
getClient()
setClient()
\Aggrosoft\WAWIBundle\Entity\Client
product DB
read write
{{ entity.product }}
getProduct()
setProduct()
\Aggrosoft\WAWIBundle\Entity\Product
currency DB
read write
{{ entity.currency }}
getCurrency()
setCurrency()
string
idUnit DB
read write
{{ entity.idUnit }}
getIdUnit()
setIdUnit()
string
note DB
read write
{{ entity.note }}
getNote()
setNote()
string
ageRating DB
read write
{{ entity.ageRating }}
getAgeRating()
setAgeRating()
integer
isValid DB
read write
{{ entity.isValid }}
getIsValid()
setIsValid()
boolean
transportTimeMin DB
read write
{{ entity.transportTimeMin }}
getTransportTimeMin()
setTransportTimeMin()
integer
transportTimeMax DB
read write
{{ entity.transportTimeMax }}
getTransportTimeMax()
setTransportTimeMax()
integer
handlingTime DB
read write
{{ entity.handlingTime }}
getHandlingTime()
setHandlingTime()
integer
productCondition DB
read write
{{ entity.productCondition }}
getProductCondition()
setProductCondition()
string
errors DB
read write
{{ entity.errors }}
getErrors()
setErrors()
string
missingAttributes DB
read write
{{ entity.missingAttributes }}
getMissingAttributes()
setMissingAttributes()
string
attributes DB
read write
{{ entity.attributes }}
getAttributes()
setAttributes()
string
productNotReadyReason DB
read write
{{ entity.productNotReadyReason }}
getProductNotReadyReason()
setProductNotReadyReason()
string
updateFailReason DB
read write
{{ entity.updateFailReason }}
getUpdateFailReason()
setUpdateFailReason()
string
updateStatus DB
read write
{{ entity.updateStatus }}
getUpdateStatus()
setUpdateStatus()
string
reportUpdatedDate DB
read write
{{ entity.reportUpdatedDate }}
getReportUpdatedDate()
setReportUpdatedDate()
\DateTime
shouldUpdate DB
read write
{{ entity.shouldUpdate }}
getShouldUpdate()
setShouldUpdate()
boolean
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
client ManyToOne Client - - - {{ entity.client }}
product ManyToOne Product - - - {{ entity.product }}
Index Name Columns Type
idProduct_idx
idProduct
INDEX
updatedDate_idx
updatedDate
INDEX