Merge pull request #2015 from Safelite/feature/CSR-1928
set isGlass to false for adas part type
This commit is contained in:
commit
eee67e5571
1 changed files with 5 additions and 1 deletions
|
|
@ -3231,7 +3231,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,
|
||||
};
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue