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) {
|
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: {
|
||||||
|
|
|
||||||
|
|
@ -170,8 +170,9 @@ export default {
|
||||||
null,
|
null,
|
||||||
"quote"
|
"quote"
|
||||||
);
|
);
|
||||||
if (servicePackageDiscountPartResponse.data)
|
if (servicePackageDiscountPartResponse.data) {
|
||||||
servicePackageDiscountPart.push(servicePackageDiscountPartResponse.data);
|
servicePackageDiscountPart.push(servicePackageDiscountPartResponse.data);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
const availableLineItems = [
|
const availableLineItems = [
|
||||||
resultMap.rainDefense,
|
resultMap.rainDefense,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue