Fix bug where reprinted receipts not sent to NickelBridge

This commit is contained in:
Skylar Ittner 2018-06-15 14:18:10 -06:00
parent 3569446f54
commit 2b078d6d23

View File

@ -96,6 +96,7 @@ $("#transactionsearchbtn").on("click", function () {
$("#managermodal").on("click", ".printreceiptbtn", function () {
$("#managermodal").modal("hide");
$("#receiptchangediv").addClass("d-none");
$("#receiptframe").data("txid", $(this).data("txid"));
$("#receiptframe").attr("src", 'action.php?action=getreceipt&txid=' + $(this).data("txid"));
$("#receiptmodal").modal();
});