X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Fview%2Fgl_trans_view.php;h=70103026da85967d4ee3d66bc936a566ac9b4920;hb=5089910120614dfb8b76a0271b43739f90f38b01;hp=11b4082b2b8458cae3c0237d013f45b941161be7;hpb=d9b4de9d7e9d3ba77f6ece752fd6cc988effd8f1;p=fa-stable.git diff --git a/gl/view/gl_trans_view.php b/gl/view/gl_trans_view.php index 11b4082b..70103026 100644 --- a/gl/view/gl_trans_view.php +++ b/gl/view/gl_trans_view.php @@ -23,8 +23,8 @@ include_once($path_to_root . "/gl/includes/gl_db.inc"); if (!isset($_GET['type_id']) || !isset($_GET['trans_no'])) { /*Script was not passed the correct parameters */ - echo "

" . _("The script must be called with a valid transaction type and transaction number to review the general ledger postings for.") . "

"; - exit; + display_note(_("The script must be called with a valid transaction type and transaction number to review the general ledger postings for.")); + end_page(); } function display_gl_heading($myrow) @@ -71,6 +71,7 @@ else $k = 0; //row colour counter $heading_shown = false; +$credit = $debit = 0; while ($myrow = db_fetch($result)) { if ($myrow['amount'] == 0) continue; @@ -94,8 +95,22 @@ while ($myrow = db_fetch($result)) display_debit_or_credit_cells($myrow['amount']); label_cell($myrow['memo_']); end_row(); - + if ($myrow['amount'] > 0 ) + $debit += $myrow['amount']; + 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) + label_cell(''); +amount_cell($debit); +amount_cell(-$credit); +label_cell(''); +end_row(); + //end of while loop if ($heading_shown) end_table(1);