Skip to content
This repository has been archived by the owner on Oct 16, 2023. It is now read-only.

Commit

Permalink
Merge 5c31d48 into 909ef5e
Browse files Browse the repository at this point in the history
  • Loading branch information
legalsylvain committed Nov 6, 2018
2 parents 909ef5e + 5c31d48 commit bb8235b
Show file tree
Hide file tree
Showing 39 changed files with 1,684 additions and 1,919 deletions.
32 changes: 32 additions & 0 deletions account_export_ebp/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3

=====================================
GRAP - Export accounting moves to EBP
=====================================

Custom GRAP module that allows to export accounting moves, accounts and balance
to EBP software.

The code is based on a work made by Numérigraphe SARL.

Roadmap / Know issues
=====================

* rename module into ``grap_account_export_ebp``

Credits
=======

Contributors
------------

* Numérigraphe SARL
* Julien WESTE
* Sylvain LE GAL <https://twitter.com/legalsylvain>

Funders
-------

* GRAP, Groupement Régional Alimentaire de Proximité <http://www.grap.coop>
48 changes: 12 additions & 36 deletions account_export_ebp/__openerp__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,38 +5,11 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
'name': "Export accounting moves to EBP's accounting software",
'version': '2.3',
'name': "GRAP - Export accounting moves to EBP",
'version': '8.0.3.0.0',
'author': 'Numérigraphe SARL,GRAP',
'category': 'Generic Modules/Accounting',
'description': """
This module lets you export accounting moves and accounts to flat text files
readable by 'EBP Comptabilité', an accounting software package widely spread
in France.
The files are in the text format for EBP's software, version 3 and above.
The export feature is in the form of a wizard related to accounting moves,
so that the person exporting the data can select which moves to export.
The exported moves cannot be changed or deleted anymore, but the export can
be reverted by unchecking the "exported" box.
Three pieces of configuration need to be set:
* the company for each fiscal year;
* the URI, user name and password of to access the EBP folders as Windows
network shares (if you want to save the files directly in EBP folder);
* the number of each fiscal year in these folders;
The files will be directly generated in the EBP network shares or can be
downloaded on the user's computer.
If those are properly set, the files should be imported automatically as
simulation moves by the EBP software next time the folder is opened.
The python package "smbc" must be installed on the server to use this module.
A menu allow the user to see the list of all past exports and download again
old ones if need be.
""",
'category': 'GRAP - Custom',
'license': 'AGPL-3',
'depends': [
'account_accountant',
'base_fiscal_company',
Expand All @@ -49,16 +22,19 @@
'security/ir_model_access.yml',
'security/ir_rule.xml',
'views/menu.xml',
'wizard/view_wizard_res_partner_add_suffix.xml',
'wizard/view_wizard_ebp_export.xml',
'wizard/view_wizard_ebp_unexport.xml',
'views/view_account_account.xml',
'views/view_account_add_suffix.xml',
'views/view_account_export_ebp.xml',
'views/view_account_unexport_ebp.xml',
'views/view_account_fiscalyear.xml',
'views/view_account_journal.xml',
'views/view_account_move.xml',
'views/view_account_tax_code.xml',
'views/view_ebp_export.xml',
'views/view_res_company.xml',
'views/view_res_partner.xml',
'views/view_res_company.xml',
],
'demo': [
'demo/account_journal.xml',
],
'installable': True,
}
14 changes: 14 additions & 0 deletions account_export_ebp/demo/account_journal.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2013-Today: GRAP (http://www.grap.coop)
@author: Sylvain LE GAL (https://twitter.com/legalsylvain)
@author Julien WESTE
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-->
<openerp><data>

<record id="account.sales_journal" model="account.journal">
<field name="ebp_code">TST</field>
</record>

</data></openerp>
Loading

0 comments on commit bb8235b

Please sign in to comment.