X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=manufacturing%2Fwork_order_costs.php;h=2228a8cbc5b272ce3bf5abb4cce722234806ce8b;hb=e0544eddcab799b9088e0a774f63443e3f634bb6;hp=590b80c3417beef27d0919e6abd4d222168989d5;hpb=19d08aef75bd8960f1f0452303750ed0387fb1b8;p=fa-stable.git diff --git a/manufacturing/work_order_costs.php b/manufacturing/work_order_costs.php index 590b80c3..2228a8cb 100644 --- a/manufacturing/work_order_costs.php +++ b/manufacturing/work_order_costs.php @@ -76,7 +76,7 @@ function can_process() display_error(_("The amount entered is not a valid number or less then zero.")); set_focus('costs'); return false; - } + } if (!is_date($_POST['date_'])) { @@ -119,16 +119,15 @@ if (isset($_POST['process']) && can_process() == true) add_gl_trans_std_cost(ST_WORKORDER, $_POST['selected_id'], $_POST['date_'], $_POST['db_acc'], $_POST['dim1'], $_POST['dim2'], $date.": ".$wo_cost_types[$_POST['PaymentType']], input_num('costs'), PT_WORKORDER, $_POST['PaymentType']); - - //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); - else - add_overhead_cost($wo['stock_id'], 0, $_POST['date_'], input_num('costs'), 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'], $wo['units_reqd'], $_POST['date_'], input_num('costs'), true); + else + 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']); }