尝试从onchange函数创建stock.move时出现odoo验证错误

时间:2018-07-28 21:16:58

标签: odoo erp odoo-11 odoo-view

因此,我想通过move_lines函数在stock.picking中自动创建移动线(@onchange)。这是我的功能:这只是一个小测试。当字段changed的值更改时,我将其用作移动行中产品(product_id)的ID,然后将该移动行附加到move_lines的现有列表中

NB1:move_linesstock.picking中的一个一对多关系。

NB2:product_idstock.move的声明:

product_id = fields.Many2one(
        'product.product', 'Product',
        domain=[('type', 'in', ['product', 'consu'])], index=True, required=True,
        states={'done': [('readonly', True)]})

我的功能:

changed = fields.Integer('Changed')

@api.onchange('changed')
    def _changed_onchange(self):
        move_lines = []

        for line in self.move_lines:
            move_lines.append({'product_id': line.product_id.id or False,
                               'product_qty': line.product_qty or 0,
                               'name': line.product_id.name,
                               'product_uom': line.product_uom.id,
                               'date_planned': datetime.date.today(),
                               'date_expected': datetime.date.today()
                               })

        move_lines.append({'product_id': self.changed,
                           'name': 'default',
                           'product_uom': 1,
                           'date_planned': datetime.date.today(),
                           'date_expected': datetime.date.today()
                           })

        return {'value': {'move_lines': move_lines}}

如果我使用视图创建了移动线然后保存,则一切正常,但是当我更改字段的值以便函数插入新的移动线时,保存将不起作用,并且我会不断获取错误:

Odoo Server Error - Validation Error
The operation cannot be completed, probably due to the following:
- deletion: you may be trying to delete a record while other records still reference it
- creation/update: a mandatory field is not correctly set

[object with reference: product_id - product.id]

出什么问题了?

1 个答案:

答案 0 :(得分:0)

要将行追加到move_lines,可以使用以下语法:

@api.onchange('changed')
def _changed_onchange(self):
    values = {'product_id': self.changed,
              'name': 'default',
              'product_uom': 1,
              'date_planned': datetime.date.today(),
              'date_expected': datetime.date.today(),
              'location_id': 1,
              'location_dest_id': 1
              }

    self.move_lines |= self.move_lines.create(values)

要使用上述逻辑实现此目标,您可以尝试x2many values filling,但我建议您使用Set operations,您可以在Lunching wizards找到一个示例