Compare commits
5 Commits
14.0-accou
...
16.0-accou
Author | SHA1 | Date | |
---|---|---|---|
a4e51a8c3e | |||
0885712a7e | |||
0f14b1c55d | |||
fe8ab134f1 | |||
8ec9fb68f7 |
@@ -1,3 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from . import models
|
|
@@ -1,75 +0,0 @@
|
|||||||
# Copyright 2021 Elabore ()
|
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
||||||
|
|
||||||
{
|
|
||||||
"name": "account_chorus_notify",
|
|
||||||
"version": "14.0.1.0.0",
|
|
||||||
"author": "Elabore",
|
|
||||||
"maintainer": "False",
|
|
||||||
"website": "False",
|
|
||||||
"license": "AGPL-3",
|
|
||||||
"category": "False",
|
|
||||||
"summary": "Send notification when chorus invoice failed",
|
|
||||||
"description": """
|
|
||||||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
|
||||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
||||||
:alt: License: AGPL-3
|
|
||||||
=======================
|
|
||||||
Account Chorus Notify
|
|
||||||
=======================
|
|
||||||
Send notification when chorus invoice failed
|
|
||||||
|
|
||||||
Installation
|
|
||||||
============
|
|
||||||
Just install account_chorus_notify, all dependencies will be installed by default.
|
|
||||||
|
|
||||||
Known issues / Roadmap
|
|
||||||
======================
|
|
||||||
|
|
||||||
Bug Tracker
|
|
||||||
===========
|
|
||||||
Bugs are tracked on `GitHub Issues
|
|
||||||
<https://github.com/elabore-coop/elabore-odoo-addons/issues>`_. In case of trouble, please
|
|
||||||
check there if your issue has already been reported. If you spotted it first,
|
|
||||||
help us smashing it by providing a detailed and welcomed feedback.
|
|
||||||
|
|
||||||
Credits
|
|
||||||
=======
|
|
||||||
|
|
||||||
Images
|
|
||||||
------
|
|
||||||
* Elabore: `Icon <https://elabore.coop/web/image/res.company/1/logo?unique=f3db262>`_.
|
|
||||||
|
|
||||||
|
|
||||||
Funders
|
|
||||||
-------
|
|
||||||
The development of this module has been financially supported by:
|
|
||||||
* Elabore (https://elabore.coop)
|
|
||||||
|
|
||||||
Maintainer
|
|
||||||
----------
|
|
||||||
This module is maintained by ELABORE.
|
|
||||||
|
|
||||||
""",
|
|
||||||
# any module necessary for this one to work correctly
|
|
||||||
"depends": [
|
|
||||||
"l10n_fr_chorus_account",
|
|
||||||
],
|
|
||||||
"external_dependencies": {
|
|
||||||
"python": [],
|
|
||||||
},
|
|
||||||
# always loaded
|
|
||||||
"data": [
|
|
||||||
|
|
||||||
],
|
|
||||||
# only loaded in demonstration mode
|
|
||||||
"demo": [],
|
|
||||||
"js": [],
|
|
||||||
"css": [],
|
|
||||||
"qweb": [],
|
|
||||||
"installable": True,
|
|
||||||
# Install this module automatically if all dependency have been previously
|
|
||||||
# and independently installed. Used for synergetic or glue modules.
|
|
||||||
"auto_install": False,
|
|
||||||
"application": False,
|
|
||||||
}
|
|
@@ -1,3 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from . import chorus_flow
|
|
@@ -1,15 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from odoo import models, fields, api, _
|
|
||||||
|
|
||||||
|
|
||||||
class ChorusFlow(models.Model):
|
|
||||||
_inherit = "chorus.flow"
|
|
||||||
|
|
||||||
def update_flow_status(self):
|
|
||||||
res = super(ChorusFlow, self).update_flow_status()
|
|
||||||
for flow in self:
|
|
||||||
if flow.status == 'IN_REJETE':
|
|
||||||
for invoice in flow.invoice_ids:
|
|
||||||
invoice.message_post(body=_("Chorus flow n°%s rejected.")%(flow.name,))
|
|
||||||
return res
|
|
0
account_usability_elabore/__init__.py
Normal file
0
account_usability_elabore/__init__.py
Normal file
25
account_usability_elabore/__manifest__.py
Normal file
25
account_usability_elabore/__manifest__.py
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
'name': 'Account Usability Elabore',
|
||||||
|
'version': '16.0.1.1.0',
|
||||||
|
'description': 'account usability Elabore : improve account usability in v16',
|
||||||
|
'summary': '',
|
||||||
|
'author': '',
|
||||||
|
'website': '',
|
||||||
|
'license': 'AGPL-3',
|
||||||
|
'category': '',
|
||||||
|
'depends': [
|
||||||
|
'account','base','account_reconcile_oca','account_check_deposit','account_cash_deposit'
|
||||||
|
],
|
||||||
|
'data': [
|
||||||
|
'security/ir.model.access.csv',
|
||||||
|
'views/account_search.xml',
|
||||||
|
'views/account_menu.xml',
|
||||||
|
'views/account_tree_view.xml',
|
||||||
|
],
|
||||||
|
'installable': True,
|
||||||
|
'auto_install': False,
|
||||||
|
'application': False,
|
||||||
|
'assets': {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
26
account_usability_elabore/i18n/fr.po
Normal file
26
account_usability_elabore/i18n/fr.po
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * account_usability_elabore
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 16.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2024-01-18 10:32+0000\n"
|
||||||
|
"PO-Revision-Date: 2024-01-18 10:32+0000\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: account_usability_elabore
|
||||||
|
#: model:ir.ui.menu,name:account_usability_elabore.deposit_menu
|
||||||
|
msgid "Deposit"
|
||||||
|
msgstr "Dépôt"
|
||||||
|
|
||||||
|
#. module: account_usability_elabore
|
||||||
|
#: model_terms:ir.ui.view,arch_db:account_usability_elabore.account_move_line_search_reconcile_view_inherit
|
||||||
|
msgid "Amount/Name/Partner"
|
||||||
|
msgstr "Montant/Libellé/Partenaire"
|
3
account_usability_elabore/security/ir.model.access.csv
Normal file
3
account_usability_elabore/security/ir.model.access.csv
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||||
|
account.access_account_bank_statement,account.bank.statement,account.model_account_bank_statement,account.group_account_user,1,1,1,0
|
||||||
|
account.access_account_bank_statement_line,account.bank.statement.line,account.model_account_bank_statement_line,account.group_account_user,1,1,1,0
|
|
16
account_usability_elabore/views/account_menu.xml
Normal file
16
account_usability_elabore/views/account_menu.xml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<odoo>
|
||||||
|
<menuitem
|
||||||
|
id="deposit_menu"
|
||||||
|
name="Deposit"
|
||||||
|
parent="account.menu_finance"
|
||||||
|
sequence="5"/>
|
||||||
|
<menuitem
|
||||||
|
id="account_cash_deposit.account_cash_deposit_menu"
|
||||||
|
parent="account_usability_elabore.deposit_menu"
|
||||||
|
sequence="1"/>
|
||||||
|
<menuitem
|
||||||
|
id="account_check_deposit.menu_check_deposit_tree"
|
||||||
|
parent="account_usability_elabore.deposit_menu"
|
||||||
|
sequence="2"/>
|
||||||
|
</odoo>
|
18
account_usability_elabore/views/account_search.xml
Normal file
18
account_usability_elabore/views/account_search.xml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<odoo>
|
||||||
|
<data>
|
||||||
|
<record id="account_move_line_search_reconcile_view_inherit" model="ir.ui.view">
|
||||||
|
<field name="name">Account move line search reconcile view inherit</field>
|
||||||
|
<field name="model">account.move.line</field>
|
||||||
|
<field name="inherit_id" ref="account_reconcile_oca.account_move_line_search_reconcile_view"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<data>
|
||||||
|
<field name="name" position="attributes">
|
||||||
|
<attribute name="filter_domain">['|', '|', '|', ('name', 'ilike', self), ('amount_residual', 'ilike', self), ('ref', 'ilike', self), ('partner_id', 'ilike', self)]</attribute>
|
||||||
|
<attribute name="string">Amount/Name/Partner</attribute>
|
||||||
|
</field>
|
||||||
|
</data>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
</data>
|
||||||
|
</odoo>
|
17
account_usability_elabore/views/account_tree_view.xml
Normal file
17
account_usability_elabore/views/account_tree_view.xml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<odoo>
|
||||||
|
<data>
|
||||||
|
<record id="account_view_tree_inherit_message_attachment" model="ir.ui.view">
|
||||||
|
<field name="name">account view tree inherit message attachment</field>
|
||||||
|
<field name="model">account.move</field>
|
||||||
|
<field name="inherit_id" ref="account.view_in_invoice_bill_tree"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<data>
|
||||||
|
<field name="state" position="after">
|
||||||
|
<field name="message_attachment_count"/>
|
||||||
|
</field>
|
||||||
|
</data>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
</data>
|
||||||
|
</odoo>
|
Reference in New Issue
Block a user