mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
[9.0][FIX] contract_show_invoice: Error if create invoice with view context (#82)
This commit is contained in:
committed by
Pedro M. Baeza
parent
7d7295c8bb
commit
762035390d
@@ -6,7 +6,7 @@
|
||||
{
|
||||
'name': 'Contract Show Invoice',
|
||||
'summary': 'Button in contracts to show their invoices',
|
||||
'version': '9.0.1.1.0',
|
||||
'version': '9.0.1.2.0',
|
||||
'author': 'Domatix,'
|
||||
'Tecnativa,'
|
||||
'Odoo Community Association (OCA)',
|
||||
@@ -14,6 +14,7 @@
|
||||
'depends': ['account', 'analytic'],
|
||||
'category': 'Sales Management',
|
||||
'data': [
|
||||
'views/account_invoice_view.xml',
|
||||
'views/contract_view.xml',
|
||||
],
|
||||
'installable': True,
|
||||
|
||||
18
contract_show_invoice/views/account_invoice_view.xml
Normal file
18
contract_show_invoice/views/account_invoice_view.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<openerp>
|
||||
<data>
|
||||
|
||||
<record id="view_account_invoice_filter_contract" model="ir.ui.view">
|
||||
<field name="name">account.invoice.select.analytic</field>
|
||||
<field name="model">account.invoice</field>
|
||||
<field name="inherit_id" ref="account.view_account_invoice_filter"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="date" position="after">
|
||||
<separator/>
|
||||
<field name="analytic_account_ids"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</data>
|
||||
</openerp>
|
||||
@@ -3,26 +3,13 @@
|
||||
<data>
|
||||
|
||||
<record id="act_analytic_invoices" model="ir.actions.act_window">
|
||||
<field name="context">{'search_default_analytic_account_ids':
|
||||
[active_id], 'default_analytic_account_ids': active_id}</field>
|
||||
<field name="name">Invoices</field>
|
||||
<field name="res_model">account.invoice</field>
|
||||
<field name="domain">[('analytic_account_ids','=',active_id)]</field>
|
||||
<field name="search_view_id" ref="account.view_account_invoice_filter" />
|
||||
</record>
|
||||
|
||||
<record id="action_contract_show_invoice_tree" model="ir.actions.act_window.view">
|
||||
<field name="sequence" eval="1"/>
|
||||
<field name="view_mode">tree</field>
|
||||
<field name="view_id" ref="account.invoice_tree"/>
|
||||
<field name="act_window_id" ref="act_analytic_invoices"/>
|
||||
</record>
|
||||
|
||||
<record id="action_contract_show_invoice_form" model="ir.actions.act_window.view">
|
||||
<field name="sequence" eval="2"/>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="view_id" ref="account.invoice_form"/>
|
||||
<field name="act_window_id" ref="act_analytic_invoices"/>
|
||||
<field name="view_ids"
|
||||
eval="[(5, 0, 0),
|
||||
(0, 0, {'view_mode': 'tree', 'view_id': ref('account.invoice_tree')}),
|
||||
(0, 0, {'view_mode': 'form', 'view_id': ref('account.invoice_form')})]"/>
|
||||
<field name="context">{'search_default_analytic_account_ids': [active_id]}</field>
|
||||
</record>
|
||||
|
||||
<record id="account_analytic_account_button_invoice" model="ir.ui.view">
|
||||
|
||||
Reference in New Issue
Block a user