Further changes in manufacturing, added unit_cost in issues and requirements
[fa-stable.git] / manufacturing / view / wo_issue_view.php
index 0738af37be4d8aaccd22de5b35f4e36fadc2f298..ad0dfda90845bb44512708621ce1bfa824cb9256 100644 (file)
@@ -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,6 +90,7 @@ 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"]);
+                       amount_cell($myrow["unit_cost"]);
                        end_row();;
 
                $j++;