We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a849f6e commit 08f709cCopy full SHA for 08f709c
1 file changed
erpnext/regional/italy/utils.py
@@ -80,7 +80,8 @@ def prepare_invoice(invoice, progressive_number):
80
invoice.stamp_duty = stamp_duty_charge_row.tax_amount
81
82
for item in invoice.e_invoice_items:
83
- if item.tax_rate == 0.0 and item.tax_amount == 0.0:
+ if (item.tax_rate == 0.0 and item.tax_amount == 0.0
84
+ and item.charge_type != 'Actual' and tax_data.get("0.0")):
85
item.tax_exemption_reason = tax_data["0.0"]["tax_exemption_reason"]
86
87
customer_po_data = {}
0 commit comments