Pular para o conteúdo
Menu
Esta pergunta foi sinalizada
1 Responder
1649 Visualizações

How can I access the one2many field in sale.order model (order_line) and change the quantity for example. Appreciate your time

Avatar
Cancelar
Melhor resposta

Hello,

I assume that you are talking about replacing a field in sales order lines using a custom module? If that's so, you can try to inherit the sale.order.lines model and later just rename the field.

class CustomSaleOrdeLines(models.Model):
    _inherit = sale.order.line

    product_uom_qty = fields.Float("Ordered Qty Edited")


Best regards,

Altela (altelasoftware.com)

Avatar
Cancelar
Publicações relacionadas Respostas Visualizações Atividade
1
jun. 22
2552
1
abr. 24
1375
1
out. 23
1537
1
mai. 23
2018
0
set. 22
2020