CASH-1428 - Fixed duplicates
This commit is contained in:
parent
49258daa8c
commit
1d2e95821f
1 changed files with 1 additions and 1 deletions
|
|
@ -274,7 +274,7 @@ export default {
|
||||||
];
|
];
|
||||||
|
|
||||||
const lineItemsToTax = Array.from(
|
const lineItemsToTax = Array.from(
|
||||||
new Map(allLineItems.filter(Boolean).map((item) => [item.partNumber, item])).values()
|
new Map(allLineItems.map((item) => [item.partNumber, item])).values()
|
||||||
);
|
);
|
||||||
|
|
||||||
const availableVaps = [
|
const availableVaps = [
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue