X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=manufacturing%2Fwork_order_costs.php;h=ef40fc9373080b9bd08a11524f4810af744f4374;hb=ac2fa9c17e43534e519b3d93aced2d58d6e52736;hp=6bdb60e714a5d2a0f72048100de229d383409690;hpb=5984527514db6c6d2e3a11579431d558434fc4c9;p=fa-stable.git diff --git a/manufacturing/work_order_costs.php b/manufacturing/work_order_costs.php index 6bdb60e7..ef40fc93 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']); } @@ -133,20 +133,21 @@ br(); date_row(_("Date:"), 'date_'); ref_row(_("Reference:"), 'ref', ''); -yesno_list_row(_("Type:"), 'PaymentType', null, $wo_cost_types[WO_OVERHEAD], $wo_cost_types[WO_LABOUR]); +yesno_list_row(_("Type:"), 'PaymentType', null, $wo_cost_types[WO_OVERHEAD], $wo_cost_types[WO_LABOUR], true); +if (list_updated('PaymentType')) + $Ajax->activate('costs'); -$item_accounts = get_stock_gl_code($wo_details['stock_id']); -$_POST['db_acc'] = $item_accounts['assembly_account']; +$item = get_item($wo_details['stock_id']); $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); -hidden('dim1', $item_accounts["dimension_id"]); -hidden('dim2', $item_accounts["dimension2_id"]); +hidden('dim1', $item["dimension_id"]); +hidden('dim2', $item["dimension2_id"]); submit_center('process', _("Process Additional Cost"), true, '', true);