Skip to content

Commit

Permalink
Merge pull request #4659 from IonAgorria/fix-propal-fetch-date
Browse files Browse the repository at this point in the history
Fix line fetch not converting dates
  • Loading branch information
eldy committed Feb 20, 2016
2 parents f762196 + 6002897 commit e0f7e3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/comm/propal/class/propal.class.php
Expand Up @@ -1413,8 +1413,8 @@ function fetch($rowid,$ref='')
$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
Expand Down

0 comments on commit e0f7e3d

Please sign in to comment.