Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
5175 Visualizzazioni

I need to get the value of selected checkboxes and perform a functin based on it.

please help

Avatar
Abbandona
Risposta migliore
class YourModel(models.Model):
    _name = 'your.model'
    your_select_field = fields.Boolean()
    def your_function(self):
        if self.your_select_field:
            #check box is checked condn
        else:
            # check box is not checked condn


You can give a button function to call your_function in xml.

Avatar
Abbandona