CSR-1981 prettier

This commit is contained in:
CarlNation 2024-08-17 07:08:54 -04:00
parent 92e8ab0965
commit 2ee87ebcfb
2 changed files with 19 additions and 5 deletions

View file

@ -309,9 +309,11 @@ export default {
} }
}, },
mobileFeeApplies() { mobileFeeApplies() {
if (this.mobileFeePart?.laborAmount > 0 || if (
this.mobileFeePart?.laborAmount > 0 ||
this.mobileFeePart?.sellingPrice > 0 || this.mobileFeePart?.sellingPrice > 0 ||
this.mobileFeePart?.kitPrice > 0) { this.mobileFeePart?.kitPrice > 0
) {
return true; return true;
} else { } else {
return false; return false;
@ -385,7 +387,14 @@ export default {
) { ) {
return true; return true;
} else { } else {
console.log("ins: servce-location invalid prereq:" + store.getters.payment.parentAccountNumber + ":" + store.getters.order.policy.policyNumber + ":" + store.getters.order.serviceLocation.zipCode); console.log(
"ins: servce-location invalid prereq:" +
store.getters.payment.parentAccountNumber +
":" +
store.getters.order.policy.policyNumber +
":" +
store.getters.order.serviceLocation.zipCode
);
return false; return false;
} }
} else { } else {
@ -395,7 +404,12 @@ export default {
) { ) {
return true; return true;
} else { } else {
console.log("cash: servce-location invalid prereq:" + JSON.stringify(store.getters.lineItems.supportingItems) + ":" + store.getters.order.serviceLocation.zipCode); console.log(
"cash: servce-location invalid prereq:" +
JSON.stringify(store.getters.lineItems.supportingItems) +
":" +
store.getters.order.serviceLocation.zipCode
);
return false; return false;
} }
} }