跳至内容
菜单
此问题已终结
1 回复
5144 查看

Hi,

how can I update a stock.move field in sale.order in an onchange method?

I have the following workaround:

@api.onchange("test_field")
def _on_change(self):
    list = []
    for line in self.order_line:
        for move in line.move_ids:
            move.update({'state': 'new_state'}) #not working! -> no error but no change on database
         list.append([1, self._origin.id, line])
self.update({'order_line': list }) #not working! -> error: AttributeError: 'sale.order.line' object has no attribute 'items'

What am I doing wrong here? Is there another possibility to change the move_line state from sale_order??

Thanks!!

形象
丢弃
最佳答案

Hi,


Please check this.


@api.onchange('test_field')

def _onchange_test_field(self):

    for line in self.order_line:

        for move in line.move_ids:

            move.state = 'new_state'


Hope it helps

形象
丢弃
相关帖文 回复 查看 活动
2
9月 23
5721
0
6月 22
2195
1
7月 20
3898
1
5月 20
8095
1
1月 25
1666