X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=purchasing%2Fincludes%2Fdb%2Fsupp_payment_db.inc;h=a88f9654c7e2fb32b0531a1e8f889898c57b0b6f;hb=59a3056986e176bf155f26366de3c5ec6b4bcb6b;hp=516dfba1df0afade211ae4c1bebd8238b4417e79;hpb=1a851e527fe366364c6d2baaf2684222f9394b48;p=fa-stable.git diff --git a/purchasing/includes/db/supp_payment_db.inc b/purchasing/includes/db/supp_payment_db.inc index 516dfba1..a88f9654 100644 --- a/purchasing/includes/db/supp_payment_db.inc +++ b/purchasing/includes/db/supp_payment_db.inc @@ -9,66 +9,85 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -function add_supp_payment($supplier_id, $date_, $bank_account, - $amount, $discount, $ref, $memo_, $rate=0) +function write_supp_payment($trans_no, $supplier_id, $bank_account, + $date_, $ref, $supp_amount, $supp_discount, $memo_, $bank_charge=0, $bank_amount=0, $dimension=0, $dimension2=0) { + global $Refs; + begin_transaction(); + $args = func_get_args(); while (count($args) < 12) $args[] = 0; + $args = (object)array_combine(array('trans_no', 'supplier_id', 'bank_account', 'date_', + 'ref', 'supp_amount', 'supp_discount', 'memo_', 'bank_charge', 'bank_amount', 'dimension', 'dimension2'), $args); + $args->trans_no = 0; + hook_db_prewrite( $args, ST_SUPPAYMENT); + + if ($trans_no != 0) { + delete_comments(ST_SUPPAYMENT, $trans_no); + void_bank_trans(ST_SUPPAYMENT, $trans_no, true); + void_gl_trans(ST_SUPPAYMENT, $trans_no, true); + void_supp_allocations(ST_SUPPAYMENT, $trans_no, $date_); + } - $supplier_currency = get_supplier_currency($supplier_id); - $bank_account_currency = get_bank_account_currency($bank_account); - $bank_gl_account = get_bank_gl_account($bank_account); + $bank = get_bank_account($bank_account); - if ($rate == 0) - { - $supp_amount = exchange_from_to($amount, $bank_account_currency, $supplier_currency, $date_); - $supp_discount = exchange_from_to($discount, $bank_account_currency, $supplier_currency, $date_); - } - else + if (!$bank_amount) // auto { - $supp_amount = round($amount / $rate, user_price_dec()); - $supp_discount = round($discount / $rate, user_price_dec()); + $rate = get_exchange_rate_from_to(get_supplier_currency($supplier_id), + $bank['bank_curr_code'], $date_ ); + $bank_amount = $supp_amount/$rate; } - - // it's a supplier payment - $trans_type = 22; + if ($bank['bank_curr_code'] == get_company_currency()) // [0002506] + $rate = $bank_amount/$supp_amount; + else + $rate = 0; /* Create a supp_trans entry for the supplier payment */ - $payment_id = add_supp_trans($trans_type, $supplier_id, $date_, $date_, + $payment_id = write_supp_trans(ST_SUPPAYMENT, 0, $supplier_id, $date_, $date_, $ref, "", -$supp_amount, 0, -$supp_discount, "", $rate); // Now debit creditors account with payment + discount $total = 0; $supplier_accounts = get_supplier_accounts($supplier_id); - $total += add_gl_trans_supplier($trans_type, $payment_id, $date_, $supplier_accounts["payable_account"], 0, 0, + $total += add_gl_trans_supplier(ST_SUPPAYMENT, $payment_id, $date_, $supplier_accounts["payable_account"], $dimension, $dimension2, $supp_amount + $supp_discount, $supplier_id, "", $rate); // Now credit discount received account with discounts if ($supp_discount != 0) { - $total += add_gl_trans_supplier($trans_type, $payment_id, $date_, $supplier_accounts["payment_discount_account"], 0, 0, + $total += add_gl_trans_supplier(ST_SUPPAYMENT, $payment_id, $date_, $supplier_accounts["payment_discount_account"], $dimension, $dimension2, -$supp_discount, $supplier_id, "", $rate); } - if ($supp_amount != 0) + if ($bank_charge != 0) { - $total += add_gl_trans_supplier($trans_type, $payment_id, $date_, $bank_gl_account, 0, 0, - -$supp_amount, $supplier_id, "", $rate); + $charge_act = get_company_pref('bank_charge_act'); + $total += add_gl_trans(ST_SUPPAYMENT, $payment_id, $date_, $charge_act, $dimension, $dimension2, '', + $bank_charge, $bank['bank_curr_code']); } - /*Post a balance post if $total != 0 */ - add_gl_balance($trans_type, $payment_id, $date_, -$total, payment_person_types::supplier(), $supplier_id); + $total += add_gl_trans(ST_SUPPAYMENT, $payment_id, $date_, $bank['account_code'], $dimension, $dimension2, '', + -($bank_amount + $bank_charge), $bank['bank_curr_code'], PT_SUPPLIER, $supplier_id); + + /*Post a balance post if $total != 0 due to variance in AP and bank posted values*/ + if ($total != 0) + { + $variance_act = get_company_pref('exchange_diff_act'); + add_gl_trans(ST_SUPPAYMENT, $payment_id, $date_, $variance_act, $dimension, $dimension2, '', + -$total, null, PT_SUPPLIER, $supplier_id); + } /*now enter the bank_trans entry */ - add_bank_trans($trans_type, $payment_id, $bank_account, $ref, - $date_, -($amount), payment_person_types::supplier(), - $supplier_id, $bank_account_currency, - "Could not add the supplier payment bank transaction"); + add_bank_trans(ST_SUPPAYMENT, $payment_id, $bank_account, $ref, + $date_, -($bank_amount + $bank_charge), PT_SUPPLIER, $supplier_id); + + add_comments(ST_SUPPAYMENT, $payment_id, $date_, $memo_); - add_comments($trans_type, $payment_id, $date_, $memo_); + $Refs->save(ST_SUPPAYMENT, $payment_id, $ref); - references::save($trans_type, $payment_id, $ref); + $args->trans_no = $payment_id; + hook_db_postwrite($args, ST_SUPPAYMENT); commit_transaction(); @@ -80,6 +99,7 @@ function add_supp_payment($supplier_id, $date_, $bank_account, function void_supp_payment($type, $type_no) { begin_transaction(); + hook_db_prevoid($type, $type_no); void_bank_trans($type, $type_no, true); void_gl_trans($type, $type_no, true); @@ -90,4 +110,3 @@ function void_supp_payment($type, $type_no) } -?> \ No newline at end of file