Search 1.9 billion lines of Odoo code on GitHub

account_ebics_batch

Author: Noviat
License: AGPL-3
Branch: 16.0
Repository: Noviat/account_ebics
Dependencies: account_ebics
Languages: Python (201, 55.8%), XML (138, 38.3%), and reStructuredText (21, 5.8%)
Other branches: 14-ebics-batch, 14.0, 15-update-doc, 15.0, and 16.0-mig-account_ebics

<a class="reference external image-reference" href="https://www.gnu.org/licenses/agpl"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a name="module-to-enable-batch-import-of-ebics-files"></a> <h2>Module to enable batch import of EBICS files</h2> <p>This module adds a cron job for the automated import of EBICS files.</p> <div class="line-block"> <div class="line"><br /></div> </div> <p>A Log is created during the import in order to document import errors. If errors have been detected, the Batch Import Log state is set to 'error'.</p> <p>When all EBICS Files have been imported correctly, the Batch Import Log state is set to 'done'.</p> <div class="line-block"> <div class="line"><br /></div> </div> <p>The user can reprocess the imported EBICS files in status 'draft' via the Log object 'REPROCESS' button until all errors have been cleared.</p> <p>As an alternative, the user can force the Batch Import Log state to 'done' (e.g. when the errors have been circumvented via manual encoding or the reprocessing of a single EBICS file).</p> <div class="line-block"> <div class="line"><br /></div> </div> <a name="configuration"></a> <h3>Configuration</h3> <p>Adapt the 'EBICS Batch Import' ir.cron job created during the module installation.</p> <p>The cron job calls the following python method:</p> <div class="line-block"> <div class="line"><br /></div> </div> <pre> <code lang="python">_batch_import()</code> </pre> <p>The EBICS download will be performed on all confirmed EBICS connections.</p> <p>You can limit the automated operation to a subset of your EBICS connections via the ebics_config_ids parameter, e.g.</p> <div class="line-block"> <div class="line"><br /></div> </div> <pre> <code lang="python">_batch_import(ebics_config_ids=[1,3])</code> </pre>