mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
[FIX] Group statement lines by period before update/create
This commit is contained in:
committed by
Carolina Fernandez
parent
8b5dadabc8
commit
2d135bf971
@@ -173,7 +173,6 @@ msgstr ""
|
||||
|
||||
#. module: account_statement_import_online
|
||||
#: model:ir.model.fields,help:account_statement_import_online.field_online_bank_statement_provider__message_has_error
|
||||
#: model:ir.model.fields,help:account_statement_import_online.field_online_bank_statement_provider__message_has_sms_error
|
||||
msgid "If checked, some messages have a delivery error."
|
||||
msgstr ""
|
||||
|
||||
@@ -414,11 +413,6 @@ msgstr ""
|
||||
msgid "Pulling online bank statements of: %(provider_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_statement_import_online
|
||||
#: model:ir.model.fields,field_description:account_statement_import_online.field_online_bank_statement_provider__message_has_sms_error
|
||||
msgid "SMS Delivery error"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_statement_import_online
|
||||
#: model:ir.model.fields,field_description:account_statement_import_online.field_online_bank_statement_provider__account_number
|
||||
msgid "Sanitized Account Number"
|
||||
|
||||
@@ -176,7 +176,6 @@ msgstr ""
|
||||
|
||||
#. module: account_statement_import_online
|
||||
#: model:ir.model.fields,help:account_statement_import_online.field_online_bank_statement_provider__message_has_error
|
||||
#: model:ir.model.fields,help:account_statement_import_online.field_online_bank_statement_provider__message_has_sms_error
|
||||
msgid "If checked, some messages have a delivery error."
|
||||
msgstr ""
|
||||
|
||||
@@ -417,11 +416,6 @@ msgstr ""
|
||||
msgid "Pulling online bank statements of: %(provider_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_statement_import_online
|
||||
#: model:ir.model.fields,field_description:account_statement_import_online.field_online_bank_statement_provider__message_has_sms_error
|
||||
msgid "SMS Delivery error"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_statement_import_online
|
||||
#: model:ir.model.fields,field_description:account_statement_import_online.field_online_bank_statement_provider__account_number
|
||||
msgid "Sanitized Account Number"
|
||||
|
||||
@@ -176,7 +176,6 @@ msgstr "Indien aangevinkt, nieuwe berichten vereisen uw aandacht."
|
||||
|
||||
#. module: account_statement_import_online
|
||||
#: model:ir.model.fields,help:account_statement_import_online.field_online_bank_statement_provider__message_has_error
|
||||
#: model:ir.model.fields,help:account_statement_import_online.field_online_bank_statement_provider__message_has_sms_error
|
||||
msgid "If checked, some messages have a delivery error."
|
||||
msgstr "Indien aangevinkt, sommige berichten hebben een foutmelding."
|
||||
|
||||
@@ -418,11 +417,6 @@ msgstr "Online Bank afschrifte opvragen"
|
||||
msgid "Pulling online bank statements of: %(provider_names)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_statement_import_online
|
||||
#: model:ir.model.fields,field_description:account_statement_import_online.field_online_bank_statement_provider__message_has_sms_error
|
||||
msgid "SMS Delivery error"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_statement_import_online
|
||||
#: model:ir.model.fields,field_description:account_statement_import_online.field_online_bank_statement_provider__account_number
|
||||
msgid "Sanitized Account Number"
|
||||
|
||||
@@ -15,9 +15,7 @@ class AccountJournal(models.Model):
|
||||
@api.model
|
||||
def _selection_service(self):
|
||||
OnlineBankStatementProvider = self.env["online.bank.statement.provider"]
|
||||
return OnlineBankStatementProvider._get_available_services() + [
|
||||
("dummy", "Dummy")
|
||||
]
|
||||
return OnlineBankStatementProvider._selection_service()
|
||||
|
||||
# Keep provider fields for compatibility with other modules.
|
||||
online_bank_statement_provider = fields.Selection(
|
||||
|
||||
Reference in New Issue
Block a user