mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-19 15:02:12 +00:00
fix: custom delimiters
(cherry picked from commit 13fb560401)
# Conflicts:
# erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json
This commit is contained in:
@@ -16,6 +16,8 @@
|
||||
"html_5",
|
||||
"import_file",
|
||||
"download_template",
|
||||
"custom_delimiters",
|
||||
"delimiter_options",
|
||||
"status",
|
||||
"template_options",
|
||||
"import_warnings_section",
|
||||
@@ -198,11 +200,29 @@
|
||||
"fieldtype": "Code",
|
||||
"label": "Statement Import Log",
|
||||
"options": "JSON"
|
||||
},
|
||||
{
|
||||
"default": "0",
|
||||
"fieldname": "custom_delimiters",
|
||||
"fieldtype": "Check",
|
||||
"label": "Custom delimiters"
|
||||
},
|
||||
{
|
||||
"default": ",;\\t|",
|
||||
"depends_on": "custom_delimiters",
|
||||
"description": "If your CSV uses a different delimiter, add that character here, ensuring no spaces or additional characters are included.",
|
||||
"fieldname": "delimiter_options",
|
||||
"fieldtype": "Data",
|
||||
"label": "Delimiter options"
|
||||
}
|
||||
],
|
||||
"hide_toolbar": 1,
|
||||
"links": [],
|
||||
<<<<<<< HEAD
|
||||
"modified": "2022-09-07 11:11:40.293317",
|
||||
=======
|
||||
"modified": "2024-06-25 15:34:35.214946",
|
||||
>>>>>>> 13fb560401 (fix: custom delimiters)
|
||||
"modified_by": "Administrator",
|
||||
"module": "Accounts",
|
||||
"name": "Bank Statement Import",
|
||||
|
||||
@@ -31,6 +31,8 @@ class BankStatementImport(DataImport):
|
||||
bank: DF.Link | None
|
||||
bank_account: DF.Link
|
||||
company: DF.Link
|
||||
custom_delimiters: DF.Check
|
||||
delimiter_options: DF.Data | None
|
||||
google_sheets_url: DF.Data | None
|
||||
import_file: DF.Attach | None
|
||||
import_type: DF.Literal["", "Insert New Records", "Update Existing Records"]
|
||||
|
||||
Reference in New Issue
Block a user