Fix bad var
This commit is contained in:
parent
2559489920
commit
e10033143a
@ -104,7 +104,7 @@ class DolibarrApi
|
|||||||
unset($object->restrictiononfksoc);
|
unset($object->restrictiononfksoc);
|
||||||
unset($object->table_rowid);
|
unset($object->table_rowid);
|
||||||
|
|
||||||
// Remove linkedObjects. We should already have linkedObjectIds that avoid huge responses
|
// Remove linkedObjects. We should already have linkedObjectsIds that avoid huge responses
|
||||||
unset($object->linkedObjects);
|
unset($object->linkedObjects);
|
||||||
|
|
||||||
unset($object->fields);
|
unset($object->fields);
|
||||||
|
|||||||
@ -376,7 +376,7 @@ function cleanObjectDatas($toclean)
|
|||||||
// Remove $db object property for object
|
// Remove $db object property for object
|
||||||
unset($toclean->db);
|
unset($toclean->db);
|
||||||
|
|
||||||
// Remove linkedObjects. We should already have linkedObjectIds that avoid huge responses
|
// Remove linkedObjects. We should already have linkedObjectsIds that avoid huge responses
|
||||||
unset($toclean->linkedObjects);
|
unset($toclean->linkedObjects);
|
||||||
|
|
||||||
unset($toclean->lines); // should be ->lines
|
unset($toclean->lines); // should be ->lines
|
||||||
|
|||||||
@ -951,11 +951,11 @@ class Delivery extends CommonObject
|
|||||||
|
|
||||||
// Get the linked object
|
// Get the linked object
|
||||||
$this->fetchObjectLinked('', '', $this->id, $this->element);
|
$this->fetchObjectLinked('', '', $this->id, $this->element);
|
||||||
//var_dump($this->linkedObjectIds);
|
//var_dump($this->linkedObjectsIds);
|
||||||
// Get the product ref and qty in source
|
// Get the product ref and qty in source
|
||||||
$sqlSourceLine = "SELECT st.rowid, st.description, st.qty";
|
$sqlSourceLine = "SELECT st.rowid, st.description, st.qty";
|
||||||
$sqlSourceLine .= ", p.ref, p.label";
|
$sqlSourceLine .= ", p.ref, p.label";
|
||||||
$sqlSourceLine .= " FROM ".MAIN_DB_PREFIX.$this->linkedObjectIds[0]['type']."det as st";
|
$sqlSourceLine .= " FROM ".MAIN_DB_PREFIX.$this->linkedObjectsIds[0]['type']."det as st";
|
||||||
$sqlSourceLine .= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON st.fk_product = p.rowid";
|
$sqlSourceLine .= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON st.fk_product = p.rowid";
|
||||||
$sqlSourceLine .= " WHERE fk_".$this->linked_object[0]['type']." = ".$this->linked_object[0]['linkid'];
|
$sqlSourceLine .= " WHERE fk_".$this->linked_object[0]['type']." = ".$this->linked_object[0]['linkid'];
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user