Add in RCC toggle & use parts threshold inclusion.

This commit is contained in:
Patrick Fic
2026-05-05 12:02:20 -07:00
parent c63a33c83e
commit 946fd03fa6
16 changed files with 177 additions and 76 deletions

View File

@@ -687,6 +687,11 @@ function SGI_V1Ruleset(jobline, joblines) {
jobline.ignore = true;
}
//Is it the use parts line threshold? Added at the end to undo the 900500 lines.
if (jobline.line_desc.toUpperCase().includes("USED PARTS THRESHOLD")) {
jobline.ignore = false;
}
return jobline;
}