From 30d100247662375a687fcaf5f432ae63a5e4e73e Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Sun, 13 Mar 2011 09:16:27 +0100 Subject: [PATCH] Voided gl_trans_view doesn't display properly --- gl/view/gl_trans_view.php | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/gl/view/gl_trans_view.php b/gl/view/gl_trans_view.php index 7010302..4e61fef 100644 --- a/gl/view/gl_trans_view.php +++ b/gl/view/gl_trans_view.php @@ -100,20 +100,22 @@ while ($myrow = db_fetch($result)) else $credit += $myrow['amount']; } -start_row("class='inquirybg' style='font-weight:bold'"); -label_cell(_("Total"), "colspan=2"); -if ($dim >= 1) - label_cell(''); -if ($dim > 1) +if ($heading_shown) +{ + start_row("class='inquirybg' style='font-weight:bold'"); + label_cell(_("Total"), "colspan=2"); + if ($dim >= 1) + label_cell(''); + if ($dim > 1) + label_cell(''); + amount_cell($debit); + amount_cell(-$credit); label_cell(''); -amount_cell($debit); -amount_cell(-$credit); -label_cell(''); -end_row(); + end_row(); + end_table(1); +} //end of while loop -if ($heading_shown) - end_table(1); is_voided_display($_GET['type_id'], $_GET['trans_no'], _("This transaction has been voided.")); -- 2.30.2