add sticker printing for odometer and plan records.

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2025-01-17 09:09:19 -07:00
parent c2995dcd25
commit 00ccb68ce2
5 changed files with 33 additions and 2 deletions

View File

@@ -362,6 +362,9 @@ function configurePlanTableContextMenu(planRecordId, currentSwimLane) {
deletePlanRecord(planRecordId, true);
});
let planRecordIdArray = [planRecordId];
$(".context-menu-print-tab-sticker").on('click', () => {
printTabStickers(planRecordIdArray, 'PlanRecord');
});
$(".context-menu-duplicate").on('click', () => {
duplicateRecords(planRecordIdArray, 'PlanRecord');
});