set isGlass to false for adas part type

set isGlass to false for adas part type now that they are child parts
This commit is contained in:
CarlNation 2024-10-04 10:57:31 -04:00
parent 74749f4172
commit 9fa6a4d669

View file

@ -3216,7 +3216,11 @@ function getFlattenedLineItemsWithGlassPartTag(lineItems) {
return {
partNumber: lineItem.partNumber,
partType: lineItem.partType,
isGlassPart: true,
isGlassPart:
lineItem.partType == partTypeStrings.RECALIBRATION ||
lineItem.partType == partTypeStrings.ADAS_RECALIBRATION
? false
: true,
};
});