Added confirmation js dialogs for deleting and restoring backup file.
[fa-stable.git] / manufacturing / includes / db / work_order_issues_db.inc
index 9474da08ed4ebf55fb2e38e177cd5cfcd4b236ae..9fbbfb69c299e6e549fe0d3036ffdcb90c224c54 100644 (file)
@@ -1,5 +1,14 @@
 <?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,
@@ -49,7 +58,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);
+       references::save(28, $number, $ref);
+       add_audit_trail(28, $number, $date_);
 
        commit_transaction();
 }
@@ -62,6 +72,14 @@ function get_work_order_issues($woid)
     return db_query($sql, "The work order issues could not be retrieved");
 }
 
+function get_additional_issues($woid)
+{
+       $sql = "SELECT ".TB_PREF."wo_issues.*, ".TB_PREF."wo_issue_items.*
+               FROM ".TB_PREF."wo_issues, ".TB_PREF."wo_issue_items
+               WHERE ".TB_PREF."wo_issues.issue_no=".TB_PREF."wo_issue_items.issue_id
+               AND ".TB_PREF."wo_issues.workorder_id=$woid ORDER BY ".TB_PREF."wo_issue_items.id";
+    return db_query($sql, "The work order issues could not be retrieved");
+}
 //--------------------------------------------------------------------------------------
 
 function get_work_order_issue($issue_no)