mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
[FIX] contract_show_invoice: wrong value for account (#99)
This commit is contained in:
committed by
Pedro M. Baeza
parent
e4955acda6
commit
1a5770c940
@@ -6,7 +6,8 @@
|
|||||||
{
|
{
|
||||||
'name': 'Contract Show Invoice',
|
'name': 'Contract Show Invoice',
|
||||||
'summary': 'Button in contracts to show their invoices',
|
'summary': 'Button in contracts to show their invoices',
|
||||||
'version': '10.0.1.0.0',
|
'version': '10.0.1.0.1',
|
||||||
|
'license': 'AGPL-3',
|
||||||
'author': 'Domatix,'
|
'author': 'Domatix,'
|
||||||
'Tecnativa,'
|
'Tecnativa,'
|
||||||
'Odoo Community Association (OCA)',
|
'Odoo Community Association (OCA)',
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
<record id="act_analytic_invoices" model="ir.actions.act_window">
|
<record id="act_analytic_invoices" model="ir.actions.act_window">
|
||||||
<field name="context">{'search_default_analytic_account_ids':
|
<field name="context">{'search_default_analytic_account_ids':
|
||||||
[active_id], 'default_analytic_account_ids': active_id}</field>
|
[active_id], 'default_analytic_account_ids': [active_id]}</field>
|
||||||
<field name="name">Invoices</field>
|
<field name="name">Invoices</field>
|
||||||
<field name="res_model">account.invoice</field>
|
<field name="res_model">account.invoice</field>
|
||||||
<field name="domain">[('analytic_account_ids','=',active_id)]</field>
|
<field name="domain">[('analytic_account_ids','=',active_id)]</field>
|
||||||
|
|||||||
Reference in New Issue
Block a user