CSR-1384: reformat updates
This commit is contained in:
parent
2519b71732
commit
f8f22fb619
2 changed files with 4 additions and 1 deletions
|
|
@ -196,7 +196,10 @@ export default {
|
||||||
},
|
},
|
||||||
displayedNonPackageLineItems() {
|
displayedNonPackageLineItems() {
|
||||||
const displayedNonPackageLineItems = [];
|
const displayedNonPackageLineItems = [];
|
||||||
const possibleLineItems = [...this.vaps, ...this.supportingItems];
|
const possibleLineItems = [
|
||||||
|
...this.vaps,
|
||||||
|
...this.supportingItems,
|
||||||
|
];
|
||||||
possibleLineItems?.forEach((item) => {
|
possibleLineItems?.forEach((item) => {
|
||||||
let price = item.sellingPrice + item.kitPrice + item.laborAmount;
|
let price = item.sellingPrice + item.kitPrice + item.laborAmount;
|
||||||
const isAllowed = this.allowableLineItems?.findIndex((lineItem) => {
|
const isAllowed = this.allowableLineItems?.findIndex((lineItem) => {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue