// AdminSupplyOrdersController: it now possible to create supply order templates, and use them to create actual supply orders

This commit is contained in:
bMancone
2011-11-29 14:36:15 +00:00
parent 05a027d688
commit d552efe42d
4 changed files with 162 additions and 15 deletions
+2 -2
View File
@@ -199,7 +199,7 @@ class SupplyOrderCore extends ObjectModel
$res = parent::update($null_values);
if ($res)
if ($res && !$this->is_template)
$this->addHistory();
return $res;
@@ -214,7 +214,7 @@ class SupplyOrderCore extends ObjectModel
$res = parent::add($autodate, $null_values);
if ($res)
if ($res && !$this->is_template)
$this->addHistory();
return $res;