X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=manufacturing%2Fview%2Fwo_issue_view.php;h=cbad96a01986c498508fbb80be8a63ad96f4b4a0;hb=efa2530a7c385a329c3fc76f4560b28ba97c3efe;hp=0738af37be4d8aaccd22de5b35f4e36fadc2f298;hpb=832403f85f84fc91734eca085a32db6a509ffd3d;p=fa-stable.git diff --git a/manufacturing/view/wo_issue_view.php b/manufacturing/view/wo_issue_view.php index 0738af37..cbad96a0 100644 --- a/manufacturing/view/wo_issue_view.php +++ b/manufacturing/view/wo_issue_view.php @@ -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)