Fix Claim Registration
This commit is contained in:
parent
642334cdf3
commit
b389e908d3
2 changed files with 3 additions and 2 deletions
|
|
@ -788,7 +788,8 @@ describe('coverageStatement.vue-working', () => {
|
||||||
currentDeductible: servicePrice - 1
|
currentDeductible: servicePrice - 1
|
||||||
},
|
},
|
||||||
issConfig: {
|
issConfig: {
|
||||||
isClaimRegistrationRequired: true
|
isClaimRegistrationRequired: true,
|
||||||
|
enableNoCompQuote: true
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
getPriceOfLineItems.mockImplementation(() => servicePrice);
|
getPriceOfLineItems.mockImplementation(() => servicePrice);
|
||||||
|
|
|
||||||
|
|
@ -374,7 +374,7 @@ export default {
|
||||||
&& policyVehicleId >= 0
|
&& policyVehicleId >= 0
|
||||||
&& isClaimRegistrationRequired
|
&& isClaimRegistrationRequired
|
||||||
&& !isClaimAlreadyRegistered
|
&& !isClaimAlreadyRegistered
|
||||||
&& (this.isDeductibleVisible || this.isITACQuoteVisible);
|
&& !this.isNoCompQuoteVisible;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue