Default POS has cash sale set to off after upgrade.
[fa-stable.git] / purchasing / allocations / supplier_allocate.php
index fd617a2903b694765cd6f0391b1ec98ddeee2e1f..51d6a7b550e21fa020eb151e2c91e49f18bf9483 100644 (file)
@@ -1,5 +1,14 @@
 <?php
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
 $path_to_root="../..";
 $page_security = 3;
 
@@ -192,7 +201,7 @@ function edit_allocations_for_transaction($type, $trans_no)
     {
                start_table($table_style);
                $th = array(_("Transaction Type"), _("#"), _("Date"), _("Due Date"), _("Amount"),
-                       _("Other Allocations"), _("This Allocation"), _("Left to Allocate"),'');
+                       _("Other Allocations"), _("This Allocation"), _("Left to Allocate"),'','');
                table_header($th);
 
         $k = $counter = $total_allocated = 0;
@@ -224,7 +233,7 @@ function edit_allocations_for_transaction($type, $trans_no)
                }
 
         label_row(_("Total Allocated"), number_format2($total_allocated,user_price_dec()),
-               "colspan=6 align=right", "align=right id='total_allocated'");
+               "colspan=6 align=right", "align=right id='total_allocated'", 3);
         if (-$_SESSION['alloc']->amount - $total_allocated < 0)
         {
                $font1 = "<font color=red>";
@@ -234,7 +243,7 @@ function edit_allocations_for_transaction($type, $trans_no)
                $font1 = $font2 = "";
                $left_to_allocate = price_format(-$_SESSION['alloc']->amount - $total_allocated);
         label_row(_("Left to Allocate"), $font1 . $left_to_allocate . $font2, "colspan=6 align=right",
-               "nowrap align=right id='left_to_allocate'");
+               "nowrap align=right id='left_to_allocate'", 3);
                end_table();
 
                hidden('TotalNumberOfAllocs', $counter);