X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=manufacturing%2Fwork_order_costs.php;h=b52590f4a072094d6d3636a39e47acfd0ed29e22;hb=ca4b0e00f434d0180fe3e3ec9fa3d31a278a9fef;hp=244c4a17c6b4894122b7b1cc306cf4039e017ee1;hpb=fc449c48a8d4ba23bfb18318dff08746340a440c;p=fa-stable.git diff --git a/manufacturing/work_order_costs.php b/manufacturing/work_order_costs.php index 244c4a17..b52590f4 100644 --- a/manufacturing/work_order_costs.php +++ b/manufacturing/work_order_costs.php @@ -106,7 +106,7 @@ if (isset($_POST['process']) && can_process($wo_details) == true) $ref = $_POST['ref']; add_wo_costs_journal($_POST['selected_id'], input_num('costs'), $_POST['PaymentType'], - $_POST['cr_acc'], $_POST['db_acc'], $date, $_POST['dim1'], $_POST['dim2'], $memo, $ref); + $_POST['cr_acc'], $date, $_POST['dim1'], $_POST['dim2'], $memo, $ref); meta_forward($_SERVER['PHP_SELF'], "AddedID=".$_POST['selected_id']); } @@ -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(); @@ -138,13 +138,11 @@ if (list_updated('PaymentType')) $Ajax->activate('costs'); $item = get_item($wo_details['stock_id']); -$_POST['db_acc'] = $item['assembly_account']; $r = get_default_bank_account(get_company_pref('curr_default')); $_POST['cr_acc'] = $r[0]; $_POST['costs'] = price_format(get_post('PaymentType')==WO_OVERHEAD ? $item['overhead_cost'] : $item['labour_cost']); amount_row(_("Additional Costs:"), 'costs'); -gl_all_accounts_list_row(_("Debit Account"), 'db_acc', null); gl_all_accounts_list_row(_("Credit Account"), 'cr_acc', null); textarea_row(_("Memo:"), 'memo', null, 40, 5); end_table(1);