Fix reception fetch_lines
This commit is contained in:
parent
82db2636f0
commit
1ba0e92c41
@ -1018,12 +1018,12 @@ class Reception extends CommonObject
|
|||||||
|
|
||||||
if (!empty($resql)) {
|
if (!empty($resql)) {
|
||||||
$this->lines = array();
|
$this->lines = array();
|
||||||
while ($obj = $resql->fetch_object()) {
|
while ($obj = $this->db->fetch_object($resql)) {
|
||||||
$line = new CommandeFournisseurDispatch($this->db);
|
$line = new CommandeFournisseurDispatch($this->db);
|
||||||
$line->fetch($obj->rowid);
|
$line->fetch($obj->rowid);
|
||||||
$line->fetch_product();
|
$line->fetch_product();
|
||||||
$sql_commfourndet = 'SELECT qty, ref, label, tva_tx, vat_src_code, subprice, multicurrency_subprice, remise_percent FROM llx_commande_fournisseurdet WHERE rowid='.$line->fk_commandefourndet;
|
$sql_commfourndet = 'SELECT qty, ref, label, tva_tx, vat_src_code, subprice, multicurrency_subprice, remise_percent FROM llx_commande_fournisseurdet WHERE rowid='.$line->fk_commandefourndet;
|
||||||
$resql_commfourndet = $db->query($sql_commfourndet);
|
$resql_commfourndet = $this->db->query($sql_commfourndet);
|
||||||
if (!empty($resql_commfourndet)) {
|
if (!empty($resql_commfourndet)) {
|
||||||
$obj = $this->db->fetch_object($resql_commfourndet);
|
$obj = $this->db->fetch_object($resql_commfourndet);
|
||||||
$line->qty_asked = $obj->qty;
|
$line->qty_asked = $obj->qty;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user