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:
parent
74749f4172
commit
9fa6a4d669
1 changed files with 5 additions and 1 deletions
|
|
@ -3216,7 +3216,11 @@ function getFlattenedLineItemsWithGlassPartTag(lineItems) {
|
||||||
return {
|
return {
|
||||||
partNumber: lineItem.partNumber,
|
partNumber: lineItem.partNumber,
|
||||||
partType: lineItem.partType,
|
partType: lineItem.partType,
|
||||||
isGlassPart: true,
|
isGlassPart:
|
||||||
|
lineItem.partType == partTypeStrings.RECALIBRATION ||
|
||||||
|
lineItem.partType == partTypeStrings.ADAS_RECALIBRATION
|
||||||
|
? false
|
||||||
|
: true,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue