fix(e-invoice): do not validate gstin for exports (#24561)

This commit is contained in:
Saqib
2021-02-06 17:55:20 +05:30
committed by GitHub
parent ffb36aac8f
commit f29b811a56

View File

@@ -303,7 +303,7 @@ def validate_mandatory_fields(invoice):
_('GSTIN is mandatory to fetch company GSTIN details. Please enter GSTIN in selected company address.'), _('GSTIN is mandatory to fetch company GSTIN details. Please enter GSTIN in selected company address.'),
title=_('Missing Fields') title=_('Missing Fields')
) )
if not frappe.db.get_value('Address', invoice.customer_address, 'gstin'): if invoice.gst_category != 'Overseas' and not frappe.db.get_value('Address', invoice.customer_address, 'gstin'):
frappe.throw( frappe.throw(
_('GSTIN is mandatory to fetch customer GSTIN details. Please enter GSTIN in selected customer address.'), _('GSTIN is mandatory to fetch customer GSTIN details. Please enter GSTIN in selected customer address.'),
title=_('Missing Fields') title=_('Missing Fields')