mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
[IMP] account_bank_statement_chatter: pre-commit stuff
This commit is contained in:
@@ -2,20 +2,19 @@
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
{
|
||||
'name': 'Chatter on bank statements',
|
||||
'version': '12.0.1.0.0',
|
||||
'category': 'Invoices & Payments',
|
||||
'license': 'AGPL-3',
|
||||
'author': 'Trey, '
|
||||
'Odoo Community Association (OCA)',
|
||||
'website': 'https://github.com/OCA/account-financial-tools',
|
||||
'depends': [
|
||||
'account',
|
||||
"name": "Chatter on bank statements",
|
||||
"version": "12.0.1.0.0",
|
||||
"category": "Invoices & Payments",
|
||||
"license": "AGPL-3",
|
||||
"author": "Trey, " "Odoo Community Association (OCA)",
|
||||
"website": "https://github.com/OCA/account-financial-tools",
|
||||
"depends": [
|
||||
"account",
|
||||
],
|
||||
'data': [
|
||||
'views/account_bank_statement_views.xml',
|
||||
"data": [
|
||||
"views/account_bank_statement_views.xml",
|
||||
],
|
||||
'installable': True,
|
||||
'development_status': 'Beta',
|
||||
'maintainers': ['cubells'],
|
||||
"installable": True,
|
||||
"development_status": "Beta",
|
||||
"maintainers": ["cubells"],
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo>
|
||||
|
||||
<record id="view_bank_statement_form" model="ir.ui.view">
|
||||
<field name="model">account.bank.statement</field>
|
||||
<field name="inherit_id" ref="account.view_bank_statement_form"/>
|
||||
<field name="inherit_id" ref="account.view_bank_statement_form" />
|
||||
<field name="arch" type="xml">
|
||||
<sheet position="after">
|
||||
<div class="oe_chatter">
|
||||
<field name="message_follower_ids" widget="mail_followers"/>
|
||||
<field name="activity_ids" widget="mail_activity"/>
|
||||
<field name="message_ids" widget="mail_thread"/>
|
||||
<field name="message_follower_ids" widget="mail_followers" />
|
||||
<field name="activity_ids" widget="mail_activity" />
|
||||
<field name="message_ids" widget="mail_thread" />
|
||||
</div>
|
||||
</sheet>
|
||||
</field>
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
../../../../account_bank_statement_chatter
|
||||
6
setup/account_bank_statement_chatter/setup.py
Normal file
6
setup/account_bank_statement_chatter/setup.py
Normal file
@@ -0,0 +1,6 @@
|
||||
import setuptools
|
||||
|
||||
setuptools.setup(
|
||||
setup_requires=['setuptools-odoo'],
|
||||
odoo_addon=True,
|
||||
)
|
||||
Reference in New Issue
Block a user