Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[12.0][BKP][ADD] edi_account_oca #1069

Open
wants to merge 38 commits into
base: 12.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
049eb55
[ADD] edi_account
etobella Nov 30, 2020
c35b75d
[UPD] Update edi_account.pot
oca-travis Dec 1, 2020
cb6ee33
[UPD] README.rst
OCA-git-bot Dec 1, 2020
38c4dd7
edi_account 13.0.1.0.1
OCA-git-bot Dec 1, 2020
de84335
[CHG] edi: Use more permissive licence: AGPL-> LGPL
etobella Mar 10, 2021
fd0cae2
[UPD] README.rst
OCA-git-bot Mar 15, 2021
5bf7b5e
edi_account 13.0.1.0.2
OCA-git-bot Mar 15, 2021
654106d
[MIG] edi_account_oca: Migration to 14.0
etobella May 6, 2021
b1124b9
[UPD] Update edi_account_oca.pot
oca-travis May 13, 2021
3221bc2
[UPD] README.rst
OCA-git-bot May 13, 2021
9ff7f97
Added translation using Weblate (French)
Yvesldff Jun 17, 2021
28f2234
Translated using Weblate (French)
Yvesldff Jun 17, 2021
122174d
[IMP] edi_account: Add a menu for accounting people
etobella Oct 5, 2021
a184554
[IMP] edi_account: Add a disable automatic on account.move
etobella Oct 5, 2021
5ab6daa
[UPD] Update edi_account_oca.pot
Dec 9, 2021
fcb899f
edi_account_oca 14.0.1.1.0
OCA-git-bot Dec 9, 2021
5e8c91f
Update translation files
oca-transbot Dec 9, 2021
b730443
[MIG] edi_account_oca: Migration to 15.0
ao-landoo Feb 23, 2022
824439f
[UPD] Update edi_account_oca.pot
Mar 1, 2022
ee13ba0
[UPD] README.rst
OCA-git-bot Mar 1, 2022
89443c9
[FIX] edi_account_oca: Tests failing
etobella May 13, 2022
56e2628
edi_account_oca 15.0.1.0.1
OCA-git-bot May 13, 2022
97e7763
[UPD] Update edi_account_oca.pot
Feb 2, 2023
1e82684
Update translation files
weblate Feb 2, 2023
24469fe
[IMP] edi_account_oca: pre-commit stuff
OriolMForgeFlow Aug 1, 2023
8cefa54
[MIG] edi_account_oca: Migration to 16.0
OriolMForgeFlow Aug 1, 2023
ff318ee
[UPD] Update edi_account_oca.pot
Oct 17, 2023
3a5ab50
[BOT] post-merge updates
OCA-git-bot Oct 17, 2023
8460e25
Update translation files
weblate Oct 17, 2023
0f762dd
[IMP] edi_oca: add partner form page
Jan 10, 2024
f54d8b7
[BOT] post-merge updates
OCA-git-bot Jan 15, 2024
b1373f5
[UPD] Update edi_account_oca.pot
Feb 4, 2024
3596f7b
Update translation files
weblate Feb 4, 2024
1c14427
Added translation using Weblate (Italian)
mymage May 13, 2024
77a2437
Translated using Weblate (Italian)
mymage Jul 18, 2024
75eb1d2
Translated using Weblate (Italian)
mymage Jul 29, 2024
fda0e97
[IMP] edi_account_oca: pre-commit stuff
JordiMForgeFlow Nov 27, 2024
0ca492d
[MIG] edi_account_oca: Migration to V12
JordiMForgeFlow Nov 27, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
99 changes: 99 additions & 0 deletions edi_account_oca/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
===========
Edi Account
===========

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:0fec295b66ff07158849734fc7d99d4bebf50e1de9c820d7f292dc726055c9e2
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fedi--framework-lightgray.png?logo=github
:target: https://github.com/OCA/edi-framework/tree/16.0/edi_account_oca
:alt: OCA/edi-framework
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/edi-framework-16-0/edi-framework-16-0-edi_account_oca
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/edi-framework&target_branch=16.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module intends to create a base to be extended by local edi rules
for accounting.

In order to add a new integration for an account, you need to create a listener:

.. code-block:: python

class MyEventListener(Component):
_name = "account.move.event.listener.demo"
_inherit = "base.event.listener"
_apply_on = ["account.move"]

def on_post_account_move(self, move):
"""Add your code here about creation of record"""

A skip if decorator can be added in order to make some checks on the state of the move

**Table of contents**

.. contents::
:local:

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/edi-framework/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/edi-framework/issues/new?body=module:%20edi_account_oca%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* Creu Blanca

Contributors
~~~~~~~~~~~~

* Enric Tobella <[email protected]>

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

.. |maintainer-etobella| image:: https://github.com/etobella.png?size=40px
:target: https://github.com/etobella
:alt: etobella

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-etobella|

This module is part of the `OCA/edi-framework <https://github.com/OCA/edi-framework/tree/16.0/edi_account_oca>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions edi_account_oca/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
22 changes: 22 additions & 0 deletions edi_account_oca/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Copyright 2020 Creu Blanca
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).

{
"name": "Edi Account",
"summary": """
Define EDI Configuration for Account Invoices""",
"version": "12.0.1.0.0",
"license": "LGPL-3",
"author": "Creu Blanca,Odoo Community Association (OCA)",
"maintainers": ["etobella"],
"development_status": "Beta",
"website": "https://github.com/OCA/edi",
"depends": ["account", "edi_oca", "component_event"],
"data": [
"views/account_journal.xml",
"views/res_partner.xml",
"views/account_invoice.xml",
"views/edi_exchange_record.xml",
],
"demo": [],
}
30 changes: 30 additions & 0 deletions edi_account_oca/i18n/edi_account.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * edi_account
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 13.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: edi_account
#: model_terms:ir.ui.view,arch_db:edi_account.account_move_form_view
msgid "<span class=\"o_stat_text\">EDI</span>"
msgstr ""

#. module: edi_account
#: model_terms:ir.ui.view,arch_db:edi_account.view_account_journal_form
#: model_terms:ir.ui.view,arch_db:edi_account.view_partner_form
msgid "EDI Configuration"
msgstr ""

#. module: edi_account
#: model:ir.model,name:edi_account.model_account_move
msgid "Journal Entries"
msgstr ""
109 changes: 109 additions & 0 deletions edi_account_oca/i18n/edi_account_oca.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * edi_account_oca
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: edi_account_oca
#: model_terms:ir.ui.view,arch_db:edi_account_oca.account_move_form_view
msgid "<span class=\"o_stat_text\">EDI</span>"
msgstr ""

#. module: edi_account_oca
#: model:ir.actions.act_window,name:edi_account_oca.act_open_edi_exchange_record_account_move_view
msgid "Account Moves Exchange Record"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,field_description:edi_account_oca.field_account_bank_statement_line__edi_disable_auto
#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_disable_auto
#: model:ir.model.fields,field_description:edi_account_oca.field_account_payment__edi_disable_auto
msgid "Disable auto"
msgstr ""

#. module: edi_account_oca
#: model_terms:ir.ui.view,arch_db:edi_account_oca.view_account_journal_form
#: model_terms:ir.ui.view,arch_db:edi_account_oca.view_partner_form
msgid "EDI Configuration"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_edi_endpoint_id
msgid "EDI origin endpoint"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_exchange_type_id
msgid "EDI origin exchange type"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_exchange_record_id
msgid "EDI origin record"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,help:edi_account_oca.field_account_move__origin_exchange_record_id
msgid "EDI record that originated this document."
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_config
msgid "Edi Config"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_has_form_config
msgid "Edi Has Form Config"
msgstr ""

#. module: edi_account_oca
#: model_terms:ir.ui.view,arch_db:edi_account_oca.account_move_form_view
msgid "Electronic Data Interchange"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__exchange_record_ids
msgid "Exchange Record"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__exchange_record_count
msgid "Exchange Record Count"
msgstr ""

#. module: edi_account_oca
#: model:ir.ui.menu,name:edi_account_oca.menu_account_edi_root
msgid "Exchange records"
msgstr ""

#. module: edi_account_oca
#: model:ir.model,name:edi_account_oca.model_account_move
msgid "Journal Entry"
msgstr ""

#. module: edi_account_oca
#: model:ir.ui.menu,name:edi_account_oca.menu_account_edi_exchange_record
msgid "Moves"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,help:edi_account_oca.field_account_move__origin_edi_endpoint_id
msgid "Record generated via this endpoint"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,help:edi_account_oca.field_account_bank_statement_line__edi_disable_auto
#: model:ir.model.fields,help:edi_account_oca.field_account_move__edi_disable_auto
#: model:ir.model.fields,help:edi_account_oca.field_account_payment__edi_disable_auto
msgid "When marked, EDI automatic processing will be avoided"
msgstr ""
115 changes: 115 additions & 0 deletions edi_account_oca/i18n/fr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * edi_account_oca
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2021-06-17 15:48+0000\n"
"Last-Translator: Yves Le Doeuff <[email protected]>\n"
"Language-Team: none\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.3.2\n"

#. module: edi_account_oca
#: model_terms:ir.ui.view,arch_db:edi_account_oca.account_move_form_view
msgid "<span class=\"o_stat_text\">EDI</span>"
msgstr ""

#. module: edi_account_oca
#: model:ir.actions.act_window,name:edi_account_oca.act_open_edi_exchange_record_account_move_view
msgid "Account Moves Exchange Record"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,field_description:edi_account_oca.field_account_bank_statement_line__edi_disable_auto
#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_disable_auto
#: model:ir.model.fields,field_description:edi_account_oca.field_account_payment__edi_disable_auto
msgid "Disable auto"
msgstr ""

#. module: edi_account_oca
#: model_terms:ir.ui.view,arch_db:edi_account_oca.view_account_journal_form
#: model_terms:ir.ui.view,arch_db:edi_account_oca.view_partner_form
msgid "EDI Configuration"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_edi_endpoint_id
msgid "EDI origin endpoint"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_exchange_type_id
msgid "EDI origin exchange type"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_exchange_record_id
msgid "EDI origin record"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,help:edi_account_oca.field_account_move__origin_exchange_record_id
msgid "EDI record that originated this document."
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_config
msgid "Edi Config"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_has_form_config
msgid "Edi Has Form Config"
msgstr ""

#. module: edi_account_oca
#: model_terms:ir.ui.view,arch_db:edi_account_oca.account_move_form_view
msgid "Electronic Data Interchange"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__exchange_record_ids
msgid "Exchange Record"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__exchange_record_count
msgid "Exchange Record Count"
msgstr ""

#. module: edi_account_oca
#: model:ir.ui.menu,name:edi_account_oca.menu_account_edi_root
msgid "Exchange records"
msgstr ""

#. module: edi_account_oca
#: model:ir.model,name:edi_account_oca.model_account_move
msgid "Journal Entry"
msgstr ""

#. module: edi_account_oca
#: model:ir.ui.menu,name:edi_account_oca.menu_account_edi_exchange_record
msgid "Moves"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,help:edi_account_oca.field_account_move__origin_edi_endpoint_id
msgid "Record generated via this endpoint"
msgstr ""

#. module: edi_account_oca
#: model:ir.model.fields,help:edi_account_oca.field_account_bank_statement_line__edi_disable_auto
#: model:ir.model.fields,help:edi_account_oca.field_account_move__edi_disable_auto
#: model:ir.model.fields,help:edi_account_oca.field_account_payment__edi_disable_auto
msgid "When marked, EDI automatic processing will be avoided"
msgstr ""

#~ msgid "Display Name"
#~ msgstr "Nom affiché"
Loading
Loading