Eliminated non-static method calls and other bulk fixes to fix php5 warnings
[fa-stable.git] / manufacturing / includes / db / work_order_issues_db.inc
index b78bb080433591a7cebdd57481ff80acc549cc7f..d9361bda8bf77d2c24717328730276f50ae966be 100644 (file)
@@ -1,10 +1,21 @@
 <?php
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
 //--------------------------------------------------------------------------------------
 
 function add_work_order_issue($woid, $ref, $to_work_order, $items, $location, $workcentre,
        $date_, $memo_)
 {
+       global $Refs;
+
        begin_transaction();
 
        $details = get_work_order($woid);
@@ -49,7 +60,8 @@ function add_work_order_issue($woid, $ref, $to_work_order, $items, $location, $w
        if ($memo_)
                add_comments(28, $number, $date_, $memo_);
 
-       references::save_last($ref, 28);
+       $Refs->save(28, $number, $ref);
+       add_audit_trail(28, $number, $date_);
 
        commit_transaction();
 }