From: Joe Hunt Date: Sun, 10 Oct 2010 15:39:16 +0000 (+0000) Subject: Layout improvements. X-Git-Tag: v2.4.2~19^2~583 X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=e0c09e32300e01d638bf4507cfe5c06f6c7386f3;p=fa-stable.git Layout improvements. --- diff --git a/CHANGELOG.txt b/CHANGELOG.txt index d7a13dca..0f7d339a 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -26,10 +26,11 @@ $ /includes/ui/allocation_cart.inc 10-Oct-2010 Joe Hunt # Master bug in class supp_trans get_items_total. Minor bug in gl_db_trans.inc Wrong tax report and wrong supp trans/gl records with gl item lines. - Fixing tax_included in gl_items. + Fixing tax_included in gl_items. Layout improvements. $ /purchasing/includes/supp_trans_class.inc /purchasing/includes/db/invoice_db.inc /purchasing/includes/ui/invoice_ui.inc + /purchasing/view/view_supp_credit.php /gl/includes/db/gl_db_trans.inc 06-Oct-2010 Jusz Dobrowolski diff --git a/purchasing/view/view_supp_credit.php b/purchasing/view/view_supp_credit.php index ec5cb40b..cdaeb3fe 100644 --- a/purchasing/view/view_supp_credit.php +++ b/purchasing/view/view_supp_credit.php @@ -35,9 +35,9 @@ $supp_trans = new supp_trans(ST_SUPPCREDIT); read_supp_invoice($trans_no, ST_SUPPCREDIT, $supp_trans); -display_heading(_("SUPPLIER CREDIT NOTE") . " # " . $trans_no); +display_heading("" . _("SUPPLIER CREDIT NOTE") . " # " . $trans_no . ""); echo "
"; -start_table(TABLESTYLE2); +start_table(TABLESTYLE, "width=95%"); start_row(); label_cells(_("Supplier"), $supp_trans->supplier_name, "class='tableheader2'"); label_cells(_("Reference"), $supp_trans->reference, "class='tableheader2'"); @@ -63,7 +63,8 @@ $tax_items = get_trans_tax_details(ST_SUPPCREDIT, $trans_no); display_supp_trans_tax_details($tax_items, 1); $display_total = number_format2(-($supp_trans->ov_amount + $supp_trans->ov_gst),user_price_dec()); -label_row(_("TOTAL CREDIT NOTE"), $display_total, "colspan=1 align=right", "nowrap align=right"); +label_row("" . _("TOTAL CREDIT NOTE") . "$display_total", + "colspan=1 align=right", "nowrap align=right"); end_table(1);