我需要取消部分线路。
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
具有相同数量的部分