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

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
Abbandona
Risposta migliore

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
Abbandona
Post correlati Risposte Visualizzazioni Attività
0
lug 17
2959
2
set 23
4920
12
ott 23
36016
2
lug 22
5807
2
lug 21
6262