Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
1 Beantwoorden
6648 Weergaven

I added another page in MO form and also added the One2many fields. I'm trying to add values in my one2many field onchange. I tried using the [(0,0, {values})] but nothing happened. Any idea on how to implement it?


custom_line_ids = fields.One2many('mrp.production', 'product_id', 'Custom Line')   
@api.onchange('product_id')
    def add_custom_line_ids(self):
        vals = {
                'sequence': self.sequence,
                'name': self.name,
                'product_id': self.product_id,
                'date_planned_start': self.date_planned_start,
                'state': self.state,
            }
        self.update({'custom_line_ids':[(0, 0, vals)]})


Avatar
Annuleer
Auteur

@Odoo Mates,
Hello, yes I was looking at your tutorial also but gave me a valueError.

for record in self:
lines = []
for line in self.product_id.product_variant_ids:
vals = {
'sequence': self.sequence,
'name': self.name,
'product_id': self.product_id,
'date_planned_start': self.date_planned_start,
'state': self.state,
}
lines.append((0,0,vals))
record.custom_line_ids = lines

Beste antwoord

Hello 

Try this

custom_line_ids = fields.One2many('mrp.production', 'product_id', 'Custom Line')
@api.onchange('product_id')
def add_custom_line_ids(self):
vals = {
'sequence': self.sequence,
'name': self.name,
'product_id': self.product_id,
'date_planned_start': self.date_planned_start,
'state': self.state,
}
self.custom_line_ids = [(0, 0, vals)]



Avatar
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
0
jul. 19
7702
1
mrt. 21
2215
0
sep. 20
2807
1
jul. 19
14580
0
apr. 16
3155