Repository
OCA/edi-framework · module folder · Try on Runboat
Module version
1.1.1
Category
Uncategorized
Folder size
0.03 MB
License
LGPL-3
Application
No
Auto-installable
No
Website
https://github.com/OCA/edi-framework
Last tracking update
2026-08-07 08:43:06
Authors
Odoo Community Association (OCA), Dixmit
Maintainers
Odoo Community Association (OCA), Dixmit
Committers
Enric Tobella, Akim Juillerat, JordiMForgeFlow, Weblate, OCA-git-bot, oca-ci
Odoo dependencies
Python dependencies
PyYAML, openupgradelib, cachetools
System dependencies
None
Required by
None
Description
In order to add a new integration for an account, you need to create a
listener:

``` 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

Code Analysis

Views touched (0)

No views found for this module.

HTTP endpoints (0)

No HTTP endpoints found for this module.

Models touched (1)

New fields (0)

No new fields.

Public methods (1)
  • button_cancel(self)
    This could be used to notify our provider that we are not accepting the invoice

Loading…

Loading…

Loading…

Loading…

Status
Open migration PR — not merged yet for this version
CI status
checks failing
Open since
133 days ago
Last activity
57 days ago
Repository
OCA/edi-framework
Pull request
[19.0][MIG] edi_account_oca (#265)