From 6ccee45d601e5bf1e0d02e962d82d79fabbe41c1 Mon Sep 17 00:00:00 2001 From: Janusz Dobrowolski Date: Tue, 10 Mar 2009 22:18:51 +0000 Subject: [PATCH] Small table layout fixes in allocations. --- CHANGELOG.txt | 3 +++ purchasing/allocations/supplier_allocate.php | 6 +++--- sales/allocations/customer_allocate.php | 4 ++-- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index bf80d966..3baab9f9 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -24,6 +24,9 @@ $ -> Affected files $ /includes/ui/ui_lists.inc # Fixed email_row/link_row display for empty input value. $ /includes/ui/ui_inputs.inc +# Small layout fix +$ /purchasing/allocations/supplier_allocate.php + /sales/allocations/customer_allocate.php ------------------------------- Release 2.1.0 RC ------------------------------------------------ 09-Mar-2009 Joe Hunt diff --git a/purchasing/allocations/supplier_allocate.php b/purchasing/allocations/supplier_allocate.php index 6a0e83e3..51d6a7b5 100644 --- a/purchasing/allocations/supplier_allocate.php +++ b/purchasing/allocations/supplier_allocate.php @@ -201,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; @@ -233,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 = ""; @@ -243,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); diff --git a/sales/allocations/customer_allocate.php b/sales/allocations/customer_allocate.php index c0785cb1..03603295 100644 --- a/sales/allocations/customer_allocate.php +++ b/sales/allocations/customer_allocate.php @@ -236,7 +236,7 @@ function edit_allocations_for_transaction($type, $trans_no) } label_row(_("Total Allocated"), price_format($total_allocated), - "colspan=6 align=right", "nowrap align=right id='total_allocated'"); + "colspan=6 align=right", "nowrap align=right id='total_allocated'", 3); if ($_SESSION['alloc']->amount - $total_allocated < 0) { $font1 = ""; @@ -247,7 +247,7 @@ function edit_allocations_for_transaction($type, $trans_no) $left_to_allocate = $_SESSION['alloc']->amount - $total_allocated; $left_to_allocate = price_format($left_to_allocate); label_row(_("Left to Allocate"), $font1 . $left_to_allocate . $font2, - "colspan=6 align=right ", "nowrap align=right id='left_to_allocate'"); + "colspan=6 align=right ", "nowrap align=right id='left_to_allocate'", 3); end_table(1); hidden('TotalNumberOfAllocs', $counter); -- 2.30.2