X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=purchasing%2Fincludes%2Fdb%2Fsupp_payment_db.inc;h=35e93db48334a2d3181b052ee88708a1a807fdd5;hb=d567a10b7925c8bb97c734e213d6651a979af29d;hp=48e4c8cb774d4b978a9ec00a3b043bd1f18d263a;hpb=231b2de9031a927156a58998fdb5601447732b38;p=fa-stable.git diff --git a/purchasing/includes/db/supp_payment_db.inc b/purchasing/includes/db/supp_payment_db.inc index 48e4c8cb..35e93db4 100644 --- a/purchasing/includes/db/supp_payment_db.inc +++ b/purchasing/includes/db/supp_payment_db.inc @@ -1,12 +1,22 @@ . +***********************************************************************/ +function add_supp_payment($supplier_id, $date_, $bank_account, $amount, $discount, $ref, $memo_, $rate=0) { begin_transaction(); $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); if ($rate == 0) { @@ -43,7 +53,7 @@ function add_supp_payment($supplier_id, $date_, $payment_type, $bank_account, if ($supp_amount != 0) { - $total += add_gl_trans_supplier($trans_type, $payment_id, $date_, $bank_account, 0, 0, + $total += add_gl_trans_supplier($trans_type, $payment_id, $date_, $bank_gl_account, 0, 0, -$supp_amount, $supplier_id, "", $rate); } @@ -52,7 +62,7 @@ function add_supp_payment($supplier_id, $date_, $payment_type, $bank_account, /*now enter the bank_trans entry */ add_bank_trans($trans_type, $payment_id, $bank_account, $ref, - $date_, $payment_type, -($amount), payment_person_types::supplier(), + $date_, -($amount), payment_person_types::supplier(), $supplier_id, $bank_account_currency, "Could not add the supplier payment bank transaction");