Double semicolon line endings fixed by @apmuthu.
[fa-stable.git] / manufacturing / view / wo_issue_view.php
index 799a2b47ed5170a22b7460860beb0ea9686e3e73..cbad96a01986c498508fbb80be8a63ad96f4b4a0 100644 (file)
@@ -53,11 +53,11 @@ function display_wo_issue($issue_no)
        label_cell(sql2date($myrow["issue_date"]));
        end_row();
 
-    comments_display_row(28, $issue_no);
+    comments_display_row(ST_MANUISSUE, $issue_no);
 
        end_table(1);
 
-       is_voided_display(28, $issue_no, _("This issue has been voided."));
+       is_voided_display(ST_MANUISSUE, $issue_no, _("This issue has been voided."));
 }
 
 //-------------------------------------------------------------------------------------------------
@@ -73,7 +73,7 @@ function display_wo_issue_details($issue_no)
     else
     {
         start_table(TABLESTYLE);
-        $th = array(_("Component"), _("Quantity"), _("Units"));
+        $th = array(_("Component"), _("Quantity"), _("Units"), _("Unit Cost"));
 
         table_header($th);
 
@@ -90,7 +90,8 @@ function display_wo_issue_details($issue_no)
                label_cell($myrow["stock_id"]  . " - " . $myrow["description"]);
             qty_cell($myrow["qty_issued"], false, get_qty_dec($myrow["stock_id"]));
                        label_cell($myrow["units"]);
-                       end_row();;
+                       amount_cell($myrow["unit_cost"]);
+                       end_row();
 
                $j++;
                If ($j == 12)