[open-ils-commits] [GIT] Evergreen ILS branch rel_3_1 updated. 2526b07975e90d3d416b6b5a0f1a289dc76e8ed1
Evergreen Git
git at git.evergreen-ils.org
Fri Jun 21 15:24:23 EDT 2019
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, rel_3_1 has been updated
via 2526b07975e90d3d416b6b5a0f1a289dc76e8ed1 (commit)
from 6a89835cdb2fcb2e5dee43ea9058b0a0cf8e5643 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 2526b07975e90d3d416b6b5a0f1a289dc76e8ed1
Author: Dan Wells <dbw2 at calvin.edu>
Date: Fri Jun 21 11:16:59 2019 -0400
LP#1759343 Fix annotate payment setting name
This setting was added to the database with the 'eg.' prefix, but in
the code it was not used. The end effect was that the setting likely
worked, but was not saved in the way expected.
This makes the setting name in the code match the DB.
Signed-off-by: Dan Wells <dbw2 at calvin.edu>
Signed-off-by: Chris Sharp <csharp at georgialibraries.org>
diff --git a/Open-ILS/web/js/ui/default/staff/circ/patron/bills.js b/Open-ILS/web/js/ui/default/staff/circ/patron/bills.js
index 295ad84457..091168d2ce 100644
--- a/Open-ILS/web/js/ui/default/staff/circ/patron/bills.js
+++ b/Open-ILS/web/js/ui/default/staff/circ/patron/bills.js
@@ -200,7 +200,7 @@ function($scope , $q , $routeParams , egCore , egConfirmDialog , $location,
if (rcptOnPay) $scope.receipt_on_pay.isChecked = rcptOnPay;
});
- egCore.hatch.getItem('circ.bills.annotatepayment')
+ egCore.hatch.getItem('eg.circ.bills.annotatepayment')
.then(function(annoPay){
if (annoPay) $scope.annotate_payment = annoPay;
});
@@ -412,7 +412,7 @@ function($scope , $q , $routeParams , egCore , egConfirmDialog , $location,
}
$scope.onAnnotatePaymentChanged = function(){
- egCore.hatch.setItem('circ.bills.annotatepayment', $scope.annotate_payment);
+ egCore.hatch.setItem('eg.circ.bills.annotatepayment', $scope.annotate_payment);
}
function printReceipt(type, payment_ids, payments_made, note) {
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/web/js/ui/default/staff/circ/patron/bills.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list