Merge branch 'develop' into shopping-cart
This commit is contained in:
commit
45db1c5d74
@ -23,7 +23,7 @@ def validate_einvoice_fields(doc):
|
|||||||
invalid_doctype = doc.doctype != 'Sales Invoice'
|
invalid_doctype = doc.doctype != 'Sales Invoice'
|
||||||
invalid_supply_type = doc.get('gst_category') not in ['Registered Regular', 'SEZ', 'Overseas', 'Deemed Export']
|
invalid_supply_type = doc.get('gst_category') not in ['Registered Regular', 'SEZ', 'Overseas', 'Deemed Export']
|
||||||
company_transaction = doc.get('billing_address_gstin') == doc.get('company_gstin')
|
company_transaction = doc.get('billing_address_gstin') == doc.get('company_gstin')
|
||||||
no_taxes_applied = len(doc.get('taxes', [])) == 0
|
no_taxes_applied = not doc.get('taxes')
|
||||||
|
|
||||||
if not einvoicing_enabled or invalid_doctype or invalid_supply_type or company_transaction or no_taxes_applied:
|
if not einvoicing_enabled or invalid_doctype or invalid_supply_type or company_transaction or no_taxes_applied:
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user