Feature 5388: Print Invoices (documents) list gets too long. Fixed by default 180...
[fa-stable.git] / includes / ui / allocation_cart.inc
index 968bae42a7131e848976f011359ea7d9883527cc..3491e35c972e3a8be0eb72527d9e4df853a6d96a 100644 (file)
@@ -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."));
@@ -404,7 +404,10 @@ function check_allocations()
                                return false;
                        }
                } elseif ($_SESSION['alloc']->person_type == PT_SUPPLIER) {
-                       $trans = get_supp_trans($_SESSION['alloc']->allocs[$counter]->type_no, $_SESSION['alloc']->allocs[$counter]->type);
+                       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,  $_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);