commit | 98a0feab896b8b98d5cc697b1774ed4a965dad5a | [log] [tgz] |
---|---|---|
author | Ankush Menat <ankush@iwebnotes.com> | Mon Feb 22 19:30:02 2021 +0530 |
committer | GitHub <noreply@github.com> | Mon Feb 22 19:30:02 2021 +0530 |
tree | 59aba5848720bb4981257c056fce66881b2a0506 | |
parent | bb8cd1cdaac12ea405fb1ed36656a2b535164192 [diff] |
fix(india): escape for special characters in JSON (#24695) JSON does not accept special whitespace characters like tab, carriage return, line feed Ref: https://www.ecma-international.org/wp-content/uploads/ECMA-404_2nd_edition_december_2017.pdf Related issue: ISS-20-21-09811
diff --git a/erpnext/regional/india/e_invoice/utils.py b/erpnext/regional/india/e_invoice/utils.py index 2043f49..322fa18 100644 --- a/erpnext/regional/india/e_invoice/utils.py +++ b/erpnext/regional/india/e_invoice/utils.py
@@ -160,7 +160,7 @@ item.update(d.as_dict()) item.sr_no = d.idx - item.description = d.item_name.replace('"', '\\"') + item.description = json.dumps(d.item_name)[1:-1] item.qty = abs(item.qty) item.discount_amount = 0