Se rendre au contenu
Menu
Cette question a été signalée
1 Répondre
3431 Vues

Python Code:-

class product_available_stock(models.Model):
_name = "product.available.stock"


product_name = fields.Many2one("product.template")
variants = fields.Many2one("product.attribute.value")


def state_id_change(self, cr, uid, ids, product_name):
    values = {'variants': False}

    if product_name:
        state = self.product_name.ids
        values['variants'] = state.variants.id

    return {'value': values}

XML Code:-

<group>
   <field name="product_name" on_change="state_id_change(product_name)"/>
   <field name="variants"/>
</group>

May I get any help on the above topic?

Avatar
Ignorer
Meilleure réponse

hello please find the minor change which I have made



def state_id_change(self, cr, uid, ids, product_name):
    values = {'variants': False}

    if product_name:
        state = self.product_name.ids
        values['variants'] = state.variants.id

    return {
value': {
        state : self.product_name.ids
        values['variants'] : state.variants.id
}}

Avatar
Ignorer
Publications associées Réponses Vues Activité
0
juil. 17
3017
2
sept. 23
5002
12
oct. 23
36072
2
juil. 22
5876
2
juil. 21
6336