@Column(name = "DATE_CREATED", updatable = false)
@Temporal(TemporalType.TIMESTAMP)
@AdminPresentation(friendlyName = "Auditable_Date_Created", order = 1000,
tab = Presentation.Tab.Name.Audit, tabOrder = Presentation.Tab.Order.Audit,
group = "Auditable_Audit", groupOrder = 1000,
readOnly = true)
protected Date dateCreated;
i want to override dateCreated value when i place an order. i am not able to override datecreated value b'coz of updateable =false.
My problem is :--
i added one product to cart on the date of sep 1st then i placed an order on the date of sep 5th.In UI level i have to show order creation date when he/she placed an order.
@phillip, Please help on this..
