IO-3503 Job Costing Fixes

Signed-off-by: Allan Carr <allan@imexsystems.ca>
This commit is contained in:
Allan Carr
2026-01-20 11:55:12 -08:00
parent f3513a80c5
commit 1716c3e6b2
2 changed files with 102 additions and 35 deletions

View File

@@ -1227,6 +1227,8 @@ function ParseCalopCode(opcode) {
return opcode.trim().split(" ");
}
exports.ParseCalopCode = ParseCalopCode;
function IsTrueOrYes(value) {
return value === true || value === "Y" || value === "y";
}