Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
4 Odpovědi
3750 Zobrazení

Please help me resolve this problem ..

I use to make invoice_id field in my custom module , it refer to customer invoice that has been paid.

'invoice_id': fields.many2one('account.invoice',string='Invoice',domain=[('state','=','paid'),('type','=','out_invoice')],required=True),

but whenever i create or edit a new item , it always refer to supplier invoice.

what should i do?

 

 

Avatar
Zrušit

did you meant about creating invoice from your Many2one field in custom module?

Autor

yes it is

can you please explain your need , do you want to create invoice from there or just want to see and select customer invoice ?

Nejlepší odpověď

Hi,

you have to define your field into xml file as like below.

<field name="invoice_id" context="{'form_view_ref':'account.invoice_form'}" />

I hope it will help you to achieve your requirements.

Note : as like 'form_view_ref' you can also give 'tree_view_ref and 'search_view_ref'. So, openerp will open that particular view based on this context.

Avatar
Zrušit
Nejlepší odpověď

You need to specify the type to default the Invoice's type to 'out_invoice' (Customer Invoice):

<field name="invoice_id" context="{'type': 'out_invoice'}" />

Avatar
Zrušit
Autor Nejlepší odpověď

thanks Emipro, it works !

Avatar
Zrušit
Nejlepší odpověď

Good resposse. Thanks.

Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
1
čvc 25
711
2
čvc 25
812
1
čvc 25
1888
3
dub 25
1902
3
dub 25
2910