[IMP] add csv meta data management
[FIX] exclude footer meta data
[IMP] import separated credit/debit column file
[FIX] make comptatible with new version of multi_step_wizard module & add migration file
[FIX] all not provided value are handled in_parse_decimal method
[REF] Remove unnecessary \n
Renamed to account_statement_import_sheet_file
Co-authored-by: zaoral
- Depending on the installed set of modules, the company currency may
be USD or EUR. If the second case, these tests will fail, so we make
sure that the company currency is USD for our tests, doing the change
by SQL, as there's a Python constraint that prevents it.
Not needed in v17 due to: odoo/odoo#107113.
account_statement_import_txt_xlsx 15.0.2.0.2
[UPD] Update account_statement_import_txt_xlsx.pot
account_statement_import_txt_xlsx 15.0.2.0.3
[UPD] README.rst
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: bank-statement-import-15.0/bank-statement-import-15.0-account_statement_import_txt_xlsx
Translate-URL: https://translation.odoo-community.org/projects/bank-statement-import-15-0/bank-statement-import-15-0-account_statement_import_txt_xlsx/
If there is a problem parsing the file we are not showing the error
to the user, instead a generic message telling something is wrong
with the type of file is shown, and we only showing the error if
we are running unit tests.
In this case we think is good to show the error to the user, this
way they can check what is wrong and fix it in the sheet mapping.
* We are only showing the title of the error as a HINT, we think that is
a good start to undestand what needs to change in the sheet mapping.
* The complete traceback error is shown in the log if we needed for more
detail review from the technical teams.
A new field 'File does not contain header line' is added in the Statement Sheet Mappings. If you set to True,
then you can map the columns by indicating in each field of the 'Columns' section the column number in the file.
We also allow to concatenate multiple columns in the file to a single column to a single field of the statement line.
You have to indicate the names of the columns separated by comma.
Empty statements should only be created if "Allow Empty Statements" is checked. This commit adds a check for the state of the allow_empty_statements field.
(1) Odoo's menu has changed over the recent versions, and these changes help new users to better understand how to create a PayPal-related Bank Account/Journal and configuration for syncing with PayPal's servers.
(2) The order of CONFIGURE was changed to the logical flow of obtaining PayPal credentials first and then configuring Odoo to match.
(3) PayPal's URL for transaction definitions has changed and was updated in ROADMAP.
The 2 modules account_statement_import_online and
account_statement_import depend on account_statement_import_base (and
not on each other) and share common code, in particular a hook to update
the statement line. So we can now have reconciliation modules that use
this hook and therefore work both on file import and online import. More
details on https://github.com/OCA/bank-statement-import/issues/481.
Improve bank statement line form view and journal form view.
With Ponto we can only retrieve data backwards in time. Therefore
we override the normal _pull method to create statements in descending
order of statement date.