Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
3 Risposte
5826 Visualizzazioni

 



i need to take the values Current Year, Previous year etc. dynamically from a table(model)

Avatar
Abbandona
Risposta migliore

try many2one field for selection widget.

Avatar
Abbandona
Autore

in dashboard?

Risposta migliore

Two Ways for this:

1. First you can call a function in selection field to get the options for the field. Here is an example:

@api.model

    def get_field_options(self):

        #compute the list as per your requirement and for the list in format below

        value_list = [('one','option 1'),('two','option 2')]

        return value_list

dynamic_field = fields.Selection(selection='get_field_options', string="Field Dummy")


2. If you just need values from a table as a selection, then try many2one field with selection widget.


Hope this helps :)

Avatar
Abbandona
Autore

thanks for the answer shyam. But the actual problem is not this. I want this field to be shown in dashboard as editable selection field.

Post correlati Risposte Visualizzazioni Attività
1
ago 24
1416
2
giu 24
1836
1
mar 23
3487
1
ott 20
3610
1
feb 20
6797