X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=purchasing%2Fallocations%2Fsupplier_allocate.php;h=428bfdc6e4ce7ec78b4a6fb762f6e7cd574b8f53;hb=9a4dbbda763486152d2e98485a7a2a699426141d;hp=6b9b94b64868aee736006133c37be459b8387284;hpb=9a6be31598b20ab95541e4c89db43ff56a105cc2;p=fa-stable.git diff --git a/purchasing/allocations/supplier_allocate.php b/purchasing/allocations/supplier_allocate.php index 6b9b94b6..428bfdc6 100644 --- a/purchasing/allocations/supplier_allocate.php +++ b/purchasing/allocations/supplier_allocate.php @@ -9,8 +9,8 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -$path_to_root="../.."; -$page_security = 3; +$page_security = 'SA_SUPPLIERALLOC'; +$path_to_root = "../.."; include($path_to_root . "/includes/ui/allocation_cart.inc"); include_once($path_to_root . "/includes/session.inc"); @@ -21,12 +21,12 @@ include_once($path_to_root . "/sales/includes/sales_db.inc"); //include_once($path_to_root . "/purchasing/includes/ui/supp_alloc_ui.inc"); $js = ""; -if ($use_popup_windows) +if ($SysPrefs->use_popup_windows) $js .= get_js_open_window(900, 500); add_js_file('allocate.js'); -page(_("Allocate Supplier Payment or Credit Note"), false, false, "", $js); +page(_($help_context = "Allocate Supplier Payment or Credit Note"), false, false, "", $js); //-------------------------------------------------------------------------------- @@ -37,25 +37,37 @@ function clear_allocations() unset($_SESSION['alloc']->allocs); unset($_SESSION['alloc']); } - session_register("alloc"); + //session_register("alloc"); } //-------------------------------------------------------------------------------- function edit_allocations_for_transaction($type, $trans_no) { + global $systypes_array; + start_form(); - display_heading(_("Allocation of") . " " . systypes::name($_SESSION['alloc']->type) . " # " . $_SESSION['alloc']->trans_no); + $cart = $_SESSION['alloc']; + + display_heading(_("Allocation of") . " " . $systypes_array[$cart->type] . " # " . $cart->trans_no); - display_heading($_SESSION['alloc']->person_name); + display_heading($cart->person_name); - display_heading2(_("Date:") . " " . $_SESSION['alloc']->date_ . ""); - display_heading2(_("Total:") . " " . price_format(-$_SESSION['alloc']->amount) . ""); + display_heading2(_("Date:") . " " . $cart->date_ . ""); + display_heading2(_("Total:"). " " . price_format(-$cart->bank_amount).' '.$cart->currency.""); + + if (floatcmp($cart->bank_amount, $cart->amount)) + { + $total = _("Amount to be settled:") . " " . price_format(-$cart->amount).' '.$cart->person_curr.""; + if ($cart->currency != $cart->person_curr) + $total .= sprintf(" (%s %s/%s)", exrate_format($cart->bank_amount/$cart->amount), $cart->currency, $cart->person_curr); + display_heading2($total); + } echo "
"; div_start('alloc_tbl'); - if (count($_SESSION['alloc']->allocs) > 0) + if (count($cart->allocs) > 0) { show_allocatable(true); @@ -80,7 +92,7 @@ if (isset($_POST['Process'])) { if (check_allocations()) { - handle_allocate(); + $_SESSION['alloc']->write(); clear_allocations(); $_POST['Cancel'] = 1; } @@ -98,15 +110,12 @@ if (isset($_POST['Cancel'])) if (isset($_GET['trans_no']) && isset($_GET['trans_type'])) { - clear_allocations(); - get_allocations_for_transaction($_GET['trans_type'], $_GET['trans_no']); + $_SESSION['alloc'] = new allocation($_GET['trans_type'], $_GET['trans_no'], @$_GET['supplier_id'], PT_SUPPLIER); } -if(get_post('UpdateDisplay')) + +if (get_post('UpdateDisplay')) { - $trans_no = $_SESSION['alloc']->trans_no; - $type = $_SESSION['alloc']->type; - clear_allocations(); - get_allocations_for_transaction($type, $trans_no); + $_SESSION['alloc']->read(); $Ajax->activate('alloc_tbl'); } @@ -119,4 +128,3 @@ if (isset($_SESSION['alloc'])) end_page(); -?> \ No newline at end of file