From 5ea101caa9cd7c477f64a069a13af9959be2f42c Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Thu, 4 Feb 2021 08:23:37 +0100 Subject: [PATCH] Bug in Customer/Supplier Payments Recording. Fixed. --- includes/ui/allocation_cart.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/ui/allocation_cart.inc b/includes/ui/allocation_cart.inc index f21fd2ed..3491e35c 100644 --- a/includes/ui/allocation_cart.inc +++ b/includes/ui/allocation_cart.inc @@ -396,7 +396,7 @@ function check_allocations() if ($_SESSION['alloc']->allocs[$counter]->type == ST_SALESORDER) $trans = get_sales_order_header($_SESSION['alloc']->allocs[$counter]->type_no, $_SESSION['alloc']->allocs[$counter]->type); else - $trans = get_customer_trans($_SESSION['alloc']->allocs[$counter]->type_no, $_SESSION['alloc']->allocs[$counter]->type); + $trans = get_customer_trans($_SESSION['alloc']->allocs[$counter]->type_no, $_SESSION['alloc']->allocs[$counter]->type,$_SESSION['alloc']->person_id); if ($trans['debtor_no'] != $_SESSION['alloc']->person_id) { display_error(_("Allocated transaction allocated is not related to company selected.")); @@ -407,7 +407,7 @@ function check_allocations() if ($_SESSION['alloc']->allocs[$counter]->type == ST_PURCHORDER) $trans = get_po($_SESSION['alloc']->allocs[$counter]->type_no); else - $trans = get_supp_trans($_SESSION['alloc']->allocs[$counter]->type_no, $_SESSION['alloc']->allocs[$counter]->type); + $trans = get_supp_trans($_SESSION['alloc']->allocs[$counter]->type_no, $_SESSION['alloc']->allocs[$counter]->type, $_SESSION['alloc']->person_id); if ($trans['supplier_id'] != $_SESSION['alloc']->person_id) { display_error(_("Allocated transaction allocated is not related to company selected.")); set_focus('amount'.$counter); -- 2.30.2