We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 723ed07 commit f880975Copy full SHA for f880975
1 file changed
erpnext/regional/italy/utils.py
@@ -80,8 +80,7 @@ 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
84
- and item.charge_type != 'Actual' and tax_data.get("0.0")):
+ if item.tax_rate == 0.0 and item.tax_amount == 0.0 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