Merge branch 'develop' into feature/jnou/more-fixes-playwright
This commit is contained in:
commit
d6a58d9e94
2 changed files with 4 additions and 1 deletions
|
|
@ -4,7 +4,8 @@ const partNumberStrings = Object.freeze({
|
||||||
RECAL_MOBILE: 'RECAL MOBILE',
|
RECAL_MOBILE: 'RECAL MOBILE',
|
||||||
RECAL_MOBILEDUAL: 'RECAL MOBILEDUAL',
|
RECAL_MOBILEDUAL: 'RECAL MOBILEDUAL',
|
||||||
REPAIR: 'WSREPAIR',
|
REPAIR: 'WSREPAIR',
|
||||||
SUPPLIES_REPAIR: 'SUPPLIES-REPAIR'
|
SUPPLIES_REPAIR: 'SUPPLIES-REPAIR',
|
||||||
|
TESLA_THS_SRVCE: 'TESLA THS SRVCE'
|
||||||
});
|
});
|
||||||
|
|
||||||
export default partNumberStrings;
|
export default partNumberStrings;
|
||||||
|
|
|
||||||
|
|
@ -1942,6 +1942,8 @@ export const useMainStore = defineStore({
|
||||||
} else if (fee.partNumber === partNumberStrings.LABOR2) {
|
} else if (fee.partNumber === partNumberStrings.LABOR2) {
|
||||||
// Do not add Labor2 to feeItems since it's already been added to supportingItems
|
// Do not add Labor2 to feeItems since it's already been added to supportingItems
|
||||||
this.addPartNumberFeeItem(null, partNumberStrings.LABOR2);
|
this.addPartNumberFeeItem(null, partNumberStrings.LABOR2);
|
||||||
|
}else if (fee.partNumber === partNumberStrings.TESLA_THS_SRVCE) {
|
||||||
|
// Do not add Tesla THS Service Fee to feeItems, it is a child part already
|
||||||
} else {
|
} else {
|
||||||
this.addPartNumberFeeItem(fee, fee.partNumber);
|
this.addPartNumberFeeItem(fee, fee.partNumber);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue