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@calvin.edu>
Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
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;
});
}
$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) {