Merge branch 'release/2024.12.12' into rlsmerge/12.12toDev
This commit is contained in:
commit
5616141b05
1 changed files with 4 additions and 1 deletions
|
|
@ -604,7 +604,10 @@ export default {
|
|||
|
||||
cartItems.forEach((item) => {
|
||||
if (item.name !== null && item.category != "promos") {
|
||||
lineItems.push(`${item.name}|${(item.salesTax + item.subTotal).toFixed(2)}|1`);
|
||||
const total = (item.salesTax + item.subTotal).toFixed(2);
|
||||
if (total > 0) {
|
||||
lineItems.push(`${item.name}|${(item.salesTax + item.subTotal).toFixed(2)}|1`);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue