Merge branch 'release/2024.12.12' into rlsmerge/12.12toDev

This commit is contained in:
CarlNation 2024-12-12 15:49:20 -05:00
commit 5616141b05

View file

@ -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`);
}
}
});