X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=manufacturing%2Fwork_order_costs.php;h=2228a8cbc5b272ce3bf5abb4cce722234806ce8b;hb=ed8422cc500fa848a1e3a85bc0979ff76a802ca9;hp=e7e0fb07700dbe18a9f45fc70448590f7c0a2204;hpb=6d65fde699a327a6fee0d8d46abf8d2b37e53947;p=fa-stable.git diff --git a/manufacturing/work_order_costs.php b/manufacturing/work_order_costs.php index e7e0fb07..2228a8cb 100644 --- a/manufacturing/work_order_costs.php +++ b/manufacturing/work_order_costs.php @@ -123,12 +123,11 @@ if (isset($_POST['process']) && can_process() == true) //Chaitanya : Apply the costs to manfuctured stock item as adjustement $wo = get_work_order($_POST['selected_id']); if ($_POST['PaymentType'] == 0) - add_labour_cost($wo['stock_id'], 0, $_POST['date_'], input_num('costs'), true); + add_labour_cost($wo['stock_id'], $wo['units_reqd'], $_POST['date_'], input_num('costs'), true); else - add_overhead_cost($wo['stock_id'], 0, $_POST['date_'], input_num('costs'), true); + add_overhead_cost($wo['stock_id'], $wo['units_reqd'], $_POST['date_'], input_num('costs'), true); commit_transaction(); - meta_forward($_SERVER['PHP_SELF'], "AddedID=".$_POST['selected_id']); }