Fix line fetch not converting dates
Conflicts: htdocs/comm/propal/class/propal.class.php
This commit is contained in:
parent
7ff8c2c3db
commit
fc8f1272d2
@ -1355,8 +1355,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);
|
||||
|
||||
$line->fetch_optionals($line->id,$extralabelsline);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user