拆分和取消行

时间:2018-06-13 09:46:11

标签: odoo-8 odoo odoo-10

我需要取消部分线路。

for move_created in mrp.move_created_ids:
                    if move_created.product_uom_qty == move.product_uom_qty:
                        move_created.action_cancel()

                  elif move.product_uom_qty < move_created.product_uom_qty:
                        i need to cancel not all line like i did before but only same quantity as there is in move.

所以我需要拆分一些如何然后取消那个与move.product_uom_qty

具有相同数量的部分

0 个答案:

没有答案