Skip to content

Commit

Permalink
Fixed: itemShippingList initialization in addTaxOnInvoice (OFBIZ-13085)
Browse files Browse the repository at this point in the history
  • Loading branch information
MkLeila committed Jan 31, 2025
1 parent f88ad34 commit 3080df7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ Map addTaxOnInvoice() {
addTaxMap.itemAmountList << totalAmount
addTaxMap.itemPriceList << it.amount
addTaxMap.itemQuantityList << it.quantity
addTaxMap.itemShippingList << 0
addTaxMap.itemShippingList << BigDecimal.ZERO
}
if (!addTaxMap.itemProductList) {
return error(label('AccountingUiLabels', 'AccountingTaxProductIdCannotCalculate'))
Expand Down

0 comments on commit 3080df7

Please sign in to comment.