feature/IO-3503-Job-Costing-Fixes-2

This commit is contained in:
Dave
2026-01-21 12:02:23 -05:00
parent f3513a80c5
commit 85d6fa4e70
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";
}