Added trans_no in bank deposit/payment final link, by Tom Hallman.
authorJoe Hunt <joe.hunt.consulting@gmail.com>
Wed, 10 Feb 2010 21:12:33 +0000 (21:12 +0000)
committerJoe Hunt <joe.hunt.consulting@gmail.com>
Wed, 10 Feb 2010 21:12:33 +0000 (21:12 +0000)
CHANGELOG.txt
gl/gl_bank.php

index 8e62f8c965885d7178569fee969d2ecf1258ae62..a04ad2cba99e01e7b67e81300f77859b437adf3d 100644 (file)
@@ -37,6 +37,8 @@ $ /admin/gl_setup.php
 $ /reporting/reports_main.php
   /reporting/rep706.php
   /reporting/rep707.php
+! Added trans_no in bank deposit/payment final link, by Tom Hallman.
+$ /gl/gl_bank.php
   
 09-Feb-2010 Joe Hunt/Chaitanya
 # [0000202] Global $path_to_root is missing in function handle_submit() in file admin/create_coy.php 
index d38252015d0b3de7474d713be9502a60f1c03ded..b3b3345cb51b75d3ef6b179953fe23eabed48b66 100644 (file)
@@ -64,7 +64,7 @@ if (isset($_GET['AddedID']))
        $trans_no = $_GET['AddedID'];
        $trans_type = ST_BANKPAYMENT;
 
-       display_notification_centered(_("Payment has been entered"));
+       display_notification_centered(_("Payment $trans_no has been entered"));
 
        display_note(get_gl_view_str($trans_type, $trans_no, _("&View the GL Postings for this Payment")));
 
@@ -80,7 +80,7 @@ if (isset($_GET['AddedDep']))
        $trans_no = $_GET['AddedDep'];
        $trans_type = ST_BANKDEPOSIT;
 
-       display_notification_centered(_("Deposit has been entered"));
+       display_notification_centered(_("Deposit $trans_no has been entered"));
 
        display_note(get_gl_view_str($trans_type, $trans_no, _("View the GL Postings for this Deposit")));