commit | 52397c97714fd5fd5ef75b32908006fc7c9af1e0 | [log] [tgz] |
---|---|---|
author | Raffael Meyer <14891507+barredterra@users.noreply.github.com> | Sun Dec 26 02:15:57 2021 +0100 |
committer | GitHub <noreply@github.com> | Sun Dec 26 02:15:57 2021 +0100 |
tree | a34839ddd18c4e709aa28e4574216dbfed0fae66 | |
parent | cfb6b26e4776d164b4c9786bfe3cf517abe1432e [diff] |
fix: avoid `"string" in None` condition
diff --git a/erpnext/patches/v12_0/create_itc_reversal_custom_fields.py b/erpnext/patches/v12_0/create_itc_reversal_custom_fields.py index d157aad..d4fbded 100644 --- a/erpnext/patches/v12_0/create_itc_reversal_custom_fields.py +++ b/erpnext/patches/v12_0/create_itc_reversal_custom_fields.py
@@ -97,6 +97,8 @@ 'itc_central_tax': 0, 'itc_cess_amount': 0 }) + if not gst_accounts: + continue if d.account_head in gst_accounts.get('igst_account'): amount_map[d.parent]['itc_integrated_tax'] += d.amount