translatable string typo in Purchaseing/allocations/supplier_allocate.php - Amount...
[fa-stable.git] / purchasing / allocations / supplier_allocate.php
index 5f77c152afd5e620b533bdd17e110be36e02c4a1..428bfdc6e4ce7ec78b4a6fb762f6e7cd574b8f53 100644 (file)
@@ -21,7 +21,7 @@ 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');
@@ -37,7 +37,7 @@ function clear_allocations()
                unset($_SESSION['alloc']->allocs);
                unset($_SESSION['alloc']);
        }
-       session_register("alloc");
+       //session_register("alloc");
 }
 //--------------------------------------------------------------------------------
 
@@ -47,17 +47,27 @@ function edit_allocations_for_transaction($type, $trans_no)
 
        start_form();
 
-    display_heading(_("Allocation of") . " " . $systypes_array[$_SESSION['alloc']->type] . " # " . $_SESSION['alloc']->trans_no);
+       $cart = $_SESSION['alloc'];
 
-       display_heading($_SESSION['alloc']->person_name);
+    display_heading(_("Allocation of") . " " . $systypes_array[$cart->type] . " # " . $cart->trans_no);
 
-    display_heading2(_("Date:") . " <b>" . $_SESSION['alloc']->date_ . "</b>");
-    display_heading2(_("Total:") . " <b>" . price_format(-$_SESSION['alloc']->amount) . "</b>");
+       display_heading($cart->person_name);
 
+    display_heading2(_("Date:") . " <b>" . $cart->date_ . "</b>");
+
+       display_heading2(_("Total:"). " <b>" . price_format(-$cart->bank_amount).' '.$cart->currency."</b>");
+
+       if (floatcmp($cart->bank_amount, $cart->amount))
+       {
+           $total = _("Amount to be settled:") . " <b>" . price_format(-$cart->amount).' '.$cart->person_curr."</b>";
+               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 "<br>";
 
        div_start('alloc_tbl');
-    if (count($_SESSION['alloc']->allocs) > 0)
+    if (count($cart->allocs) > 0)
     {
                show_allocatable(true);
 
@@ -100,7 +110,7 @@ if (isset($_POST['Cancel']))
 
 if (isset($_GET['trans_no']) && isset($_GET['trans_type']))
 {
-       $_SESSION['alloc'] = new allocation($_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'))
@@ -118,4 +128,3 @@ if (isset($_SESSION['alloc']))
 
 end_page();
 
-?>
\ No newline at end of file