Fix line fetch not converting dates
This commit is contained in:
parent
da284cda8c
commit
6002897976
@ -1413,8 +1413,8 @@ class Propal extends CommonObject
|
||||
$line->fk_product_type = $objp->fk_product_type;
|
||||
$line->fk_unit = $objp->fk_unit;
|
||||
|
||||
$line->date_start = $objp->date_start;
|
||||
$line->date_end = $objp->date_end;
|
||||
$line->date_start = $this->db->jdate($objp->date_start);
|
||||
$line->date_end = $this->db->jdate($objp->date_end);
|
||||
|
||||
|
||||
// Multicurrency
|
||||
|
||||
Loading…
Reference in New Issue
Block a user