Bug 5360: Spelling mistake in ../sales/allocations/customer_allocate.php. Fixed.
[fa-stable.git] / sales / allocations / customer_allocate.php
index ab3a30013ab7cf11ea2c7d3dd960379d14e52321..7c88dc9553af855b3fb42be8bfc6696756551b69 100644 (file)
@@ -46,7 +46,12 @@ function edit_allocations_for_transaction($type, $trans_no)
        global $systypes_array;
 
        $cart = $_SESSION['alloc'];
-
+       
+       if ($cart->type == ST_JOURNAL && $cart->bank_amount < 0)
+       {
+               $cart->bank_amount = -$cart->bank_amount;
+               $cart->amount = -$cart->amount;
+       }       
     display_heading(sprintf(_("Allocation of %s # %d"), $systypes_array[$cart->type], $cart->trans_no));
 
     display_heading($cart->person_name);
@@ -56,7 +61,7 @@ function edit_allocations_for_transaction($type, $trans_no)
 
        if (floatcmp($cart->bank_amount, $cart->amount))
        {
-           $total = _("Amount ot be settled:") . " <b>" . price_format($cart->amount).' '.$cart->person_curr."</b>";
+           $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);