mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-17 17:26:43 +00:00
fix: Use all address lines instead of only first two
This commit is contained in:
@@ -165,7 +165,7 @@ class TallyMigration(Document):
|
||||
"supplier_type": "Individual",
|
||||
})
|
||||
if party_type:
|
||||
address = "\n".join([a.string for a in account.find_all("ADDRESS")[:2]])
|
||||
address = "\n".join([a.string for a in account.find_all("ADDRESS")])
|
||||
addresses.append({
|
||||
"doctype": "Address",
|
||||
"address_line1": address[:140].strip(),
|
||||
|
||||
Reference in New Issue
Block a user