commit
ccf6ef9c94
2 changed files with 12 additions and 3 deletions
|
|
@ -188,6 +188,8 @@ export default {
|
||||||
insuranceCompanyName: String,
|
insuranceCompanyName: String,
|
||||||
showInsuranceCoverageAs: String,
|
showInsuranceCoverageAs: String,
|
||||||
shouldHideRecalibration: Boolean,
|
shouldHideRecalibration: Boolean,
|
||||||
|
isItac: Boolean,
|
||||||
|
isNoComp: Boolean,
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
@ -1007,8 +1009,13 @@ export default {
|
||||||
},
|
},
|
||||||
salesTax() {
|
salesTax() {
|
||||||
if (!this.lineItems || this.lineItems.length < 1) return;
|
if (!this.lineItems || this.lineItems.length < 1) return;
|
||||||
|
|
||||||
if (this.isInsurance && !this.showCoverageAsVerified) {
|
if (
|
||||||
|
this.isInsurance &&
|
||||||
|
!this.showCoverageAsVerified &&
|
||||||
|
!this.isItac &&
|
||||||
|
!this.isNoComp
|
||||||
|
) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,9 @@
|
||||||
:insuranceDeductible="currentDeductible"
|
:insuranceDeductible="currentDeductible"
|
||||||
:insuranceCompanyName="insuranceCompanyName"
|
:insuranceCompanyName="insuranceCompanyName"
|
||||||
:showInsuranceCoverageAs="showInsuranceCoverageAs"
|
:showInsuranceCoverageAs="showInsuranceCoverageAs"
|
||||||
:shouldHideRecalibration="shouldHideRecalibration" />
|
:shouldHideRecalibration="shouldHideRecalibration"
|
||||||
|
:isItac="isItac"
|
||||||
|
:isNocomp="isNocomp" />
|
||||||
|
|
||||||
<hr class="my-5" />
|
<hr class="my-5" />
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue