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

Friends,

 I have a field ministry_or_not..(many2one)

I have to set its value as "Ministry" for the form view_trademark_file_form

and "Not Ministry" for view_tradename_form

any clue

Thanks..

Avatar
Zrušit
Nejlepší odpověď

Use context in the action that call the view and prepend fieldname with "default_".

context: {'default_ministry_or_not': True}

Avatar
Zrušit
Nejlepší odpověď

Hi,

check out Settings/Parameters/Company Defaults or Company Properties. There you can define defaults.

Or do you need the default values in a module?

Regards, 

Ingo

UPDATE (I can't post another message, so I must edit my old one):

Did you try in the module the _defaults statement?

_defaults = { 

            'state':'draft', 

}

Or maybe in the view you could change the default with properties:

<function model="ir.values" name="set_default">

        <value>sale.order</value>

        <value>picking_policy</value>

        <value>one</value>

</function>

 

Avatar
Zrušit
Autor

In module