Merge branch 'develop' into feature/CSR-2109
This commit is contained in:
commit
e5c8378197
2 changed files with 6 additions and 2 deletions
|
|
@ -985,7 +985,10 @@ export default {
|
|||
if (!this.showAsPaid) {
|
||||
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: {
|
||||
|
|
|
|||
|
|
@ -170,8 +170,9 @@ export default {
|
|||
null,
|
||||
"quote"
|
||||
);
|
||||
if (servicePackageDiscountPartResponse.data)
|
||||
if (servicePackageDiscountPartResponse.data) {
|
||||
servicePackageDiscountPart.push(servicePackageDiscountPartResponse.data);
|
||||
}
|
||||
}
|
||||
const availableLineItems = [
|
||||
resultMap.rainDefense,
|
||||
|
|
|
|||
Loading…
Reference in a new issue