Merge pull request #1881 from Safelite/feature/CSR-2091
Feature/csr 2091
This commit is contained in:
commit
eae9ab9375
1 changed files with 4 additions and 1 deletions
|
|
@ -985,7 +985,10 @@ export default {
|
||||||
if (!this.showAsPaid) {
|
if (!this.showAsPaid) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return this.subTotal + this.salesTax;
|
|
||||||
|
// unary plus operator to convert string amount to numeric so we can add them together
|
||||||
|
var amtPaid = +this.subTotal + +this.salesTax;
|
||||||
|
return amtPaid;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue