X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=manufacturing%2Fwork_order_costs.php;h=07efe640b339af563932e2edc0fb97d4a4911c50;hb=5bcc7a4ccbb360794669a098b48d8eb3dcf77119;hp=ef40fc9373080b9bd08a11524f4810af744f4374;hpb=ac2fa9c17e43534e519b3d93aced2d58d6e52736;p=fa-stable.git diff --git a/manufacturing/work_order_costs.php b/manufacturing/work_order_costs.php index ef40fc93..07efe640 100644 --- a/manufacturing/work_order_costs.php +++ b/manufacturing/work_order_costs.php @@ -56,9 +56,9 @@ if (isset($_GET['AddedID'])) //-------------------------------------------------------------------------------------------------- -$wo_details = get_work_order($_POST['selected_id']); +$wo_details = get_work_order($_POST['selected_id'], true); -if (strlen($wo_details[0]) == 0) +if ($wo_details === false) { display_error(_("The order number sent is not valid.")); exit; @@ -68,7 +68,7 @@ if (strlen($wo_details[0]) == 0) function can_process($wo_details) { - if (!check_num('costs', 0)) + if (input_num('costs')<=0) { display_error(_("The amount entered is not a valid number or less then zero.")); set_focus('costs'); @@ -118,7 +118,7 @@ display_wo_details($_POST['selected_id']); //------------------------------------------------------------------------------------- if (!isset($_POST['ref'])) - $_POST['ref'] = $Refs->get_next(ST_JOURNAL, null, get_post('date_')); + $_POST['ref'] = $Refs->get_next(ST_JOURNAL, null, Today()); start_form(); @@ -139,7 +139,7 @@ if (list_updated('PaymentType')) $item = get_item($wo_details['stock_id']); $r = get_default_bank_account(get_company_pref('curr_default')); -$_POST['cr_acc'] = $r[0]; +$_POST['cr_acc'] = $r['account_code']; $_POST['costs'] = price_format(get_post('PaymentType')==WO_OVERHEAD ? $item['overhead_cost'] : $item['labour_cost']); amount_row(_("Additional Costs:"), 'costs');