This better work or I'll cry

This commit is contained in:
nuttylmao
2025-07-29 03:10:10 +10:00
parent 672cef7f20
commit e6c54b1e70
+4 -1
View File
@@ -532,7 +532,10 @@ async function CustomEvent(data) {
// Send it to the print routine! // Send it to the print routine!
const receiptHTML = await GetRenderedHTML(instance); const receiptHTML = await GetRenderedHTML(instance);
client.doAction({ name: 'Receipt Printer | Print Routine' }, { receiptHTML: receiptHTML }); client.doAction({ name: 'Receipt Printer | Print Routine' }, {
receiptHTML: receiptHTML,
isTest: data.isTest
});
} }