mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
[MIG] account_statement_import_base v14 -> v16
This commit is contained in:
@@ -5,9 +5,9 @@
|
|||||||
{
|
{
|
||||||
"name": "Base module for Bank Statement Import",
|
"name": "Base module for Bank Statement Import",
|
||||||
"category": "Accounting",
|
"category": "Accounting",
|
||||||
"version": "14.0.1.0.0",
|
"version": "16.0.1.0.0",
|
||||||
"license": "LGPL-3",
|
"license": "LGPL-3",
|
||||||
"depends": ["account"],
|
"depends": ["account_statement_base"],
|
||||||
"author": "Akretion, Odoo Community Association (OCA)",
|
"author": "Akretion, Odoo Community Association (OCA)",
|
||||||
"maintainers": ["alexis-via"],
|
"maintainers": ["alexis-via"],
|
||||||
"development_status": "Mature",
|
"development_status": "Mature",
|
||||||
|
|||||||
@@ -6,45 +6,21 @@
|
|||||||
-->
|
-->
|
||||||
<odoo>
|
<odoo>
|
||||||
|
|
||||||
<record id="view_bank_statement_line_form" model="ir.ui.view">
|
<record id="account_bank_statement_line_form" model="ir.ui.view">
|
||||||
<field name="model">account.bank.statement.line</field>
|
<field name="model">account.bank.statement.line</field>
|
||||||
<field name="inherit_id" ref="account.view_bank_statement_line_form" />
|
<field
|
||||||
|
name="inherit_id"
|
||||||
|
ref="account_statement_base.account_bank_statement_line_form"
|
||||||
|
/>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<field name="statement_id" position="attributes">
|
<group name="tech-fields" position="inside">
|
||||||
<attribute
|
<field name="unique_import_id" />
|
||||||
name="invisible"
|
</group>
|
||||||
>not context.get('statement_line_main_view')</attribute>
|
<group name="tech-fields" position="after">
|
||||||
</field>
|
<group name="raw_data" string="Raw Data">
|
||||||
<xpath expr="//field[@name='company_id']/.." position="attributes">
|
<field name="raw_data" nolabel="1" colspan="2" />
|
||||||
<attribute name="col">2</attribute>
|
</group>
|
||||||
</xpath>
|
</group>
|
||||||
<field name="sequence" position="attributes">
|
|
||||||
<attribute name="invisible">1</attribute>
|
|
||||||
</field>
|
|
||||||
<field name="narration" position="attributes">
|
|
||||||
<attribute name="invisible">1</attribute>
|
|
||||||
</field>
|
|
||||||
<field name="transaction_type" position="after">
|
|
||||||
<field name="partner_bank_id" />
|
|
||||||
</field>
|
|
||||||
<sheet position="inside">
|
|
||||||
<notebook>
|
|
||||||
<page name="narration" string="Notes">
|
|
||||||
<field name="narration" nolabel="1" />
|
|
||||||
</page>
|
|
||||||
<page name="technical" string="Technical Information">
|
|
||||||
<group name="tech-fields">
|
|
||||||
<field name="unique_import_id" />
|
|
||||||
<field name="partner_name" />
|
|
||||||
<field name="account_number" />
|
|
||||||
<field name="is_reconciled" />
|
|
||||||
</group>
|
|
||||||
<group name="raw_data" string="Raw Data">
|
|
||||||
<field name="raw_data" nolabel="1" />
|
|
||||||
</group>
|
|
||||||
</page>
|
|
||||||
</notebook>
|
|
||||||
</sheet>
|
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
../../../../account_statement_import_base
|
||||||
6
setup/account_statement_import_base/setup.py
Normal file
6
setup/account_statement_import_base/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