7691-testToMaster #537

Merged
alexm merged 395 commits from 7691-testToMaster into master 2024-07-09 05:39:56 +00:00
1 changed files with 1 additions and 4 deletions
Showing only changes of commit 266657fab5 - Show all commits

View File

@ -106,10 +106,7 @@ const totalNewPrice = computed(() => {
});
const totalDifference = computed(() => {
return rows.value.reduce(
(acc, item) => acc + item.component.difference * item.quantity,
0
);
return rows.value.reduce((acc, item) => acc + item.component?.difference || 0, 0);
});
const ticketHaveNegatives = () => {