Out state GST automatically removed from sales order

Error Report
Python 2.7.15rc1: /opt/bench/erpnext/env/bin/python (prefix: /opt/bench/erpnext/env)

Timestamp:
2020-11-30 15:03:55.702190
Relapsed
11
Exception
args (‘get_address_tax_category() takes at least 1 argument (1 given)’,)
message ‘get_address_tax_category() takes at least 1 argument (1 given)’
Locals
args ()
fn
kwargs {‘billing_address’: u’‘, ‘cmd’: u’erpnext.accounts.party.get_address_tax_category’}
newargs {‘billing_address’: u’'}
Traceback
/opt/bench/erpnext/apps/frappe/frappe/app.py: 60

58
59 elif frappe.request.path.startswith(“/api/”):
60 response = frappe.api.handle()
61
62 elif frappe.request.path.startswith(‘/backups’):
/opt/bench/erpnext/apps/frappe/frappe/api.py: 55

53 if call==“method”:
54 frappe.local.form_dict.cmd = doctype
55 return frappe.handler.handle()
56
57 elif call==“resource”:
/opt/bench/erpnext/apps/frappe/frappe/handler.py: 21

19
20 if cmd!=‘login’:
21 data = execute_cmd(cmd)
22
23 # data can be an empty string or list which are valid responses
/opt/bench/erpnext/apps/frappe/frappe/handler.py: 56

54 is_whitelisted(method)
55
56 return frappe.call(method, **frappe.form_dict)
57
58
/opt/bench/erpnext/apps/frappe/frappe/init.py: 1036

1034 newargs = get_newargs(fn, kwargs)
1035
1036 return fn(*args, **newargs)
1037
1038 def get_newargs(fn, kwargs):