Fix bad var

This commit is contained in:
Laurent Destailleur 2020-10-27 18:40:44 +01:00
parent 2559489920
commit e10033143a
3 changed files with 4 additions and 4 deletions

View File

@ -104,7 +104,7 @@ class DolibarrApi
unset($object->restrictiononfksoc);
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->fields);

View File

@ -376,7 +376,7 @@ function cleanObjectDatas($toclean)
// Remove $db object property for object
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->lines); // should be ->lines

View File

@ -951,11 +951,11 @@ class Delivery extends CommonObject
// Get the linked object
$this->fetchObjectLinked('', '', $this->id, $this->element);
//var_dump($this->linkedObjectIds);
//var_dump($this->linkedObjectsIds);
// Get the product ref and qty in source
$sqlSourceLine = "SELECT st.rowid, st.description, st.qty";
$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 .= " WHERE fk_".$this->linked_object[0]['type']." = ".$this->linked_object[0]['linkid'];