Odooers论坛

欢迎!

该社区面向专业人士和我们产品和服务的爱好者。
分享和讨论最好的内容和新的营销理念,建立您的专业形象,一起成为更好的营销人员。


0

How to delete Product Move in oddo 15

形象
odoo
形象
丢弃
2 答案
0
形象
odoo
最佳答案

Hi,

In short 
No, you can not!
You can't do the deletion of any record for which the stock.picking has been done or made a delivery order.

Because the corresponding stock move for the order will be created in the inventory.
you can delete the record directly from the database by using SQL query like,

DELETE FROM stock_move WHERE product_id=id;

here pass the id for which the product that you have created by mistake.

Regards

形象
丢弃
0
形象
odoo
最佳答案

Hi Jivendra

Odoo don't allow delete done product move you can fix with reverse move this is safest way.
If you want delete anyhow then you can delete from direct database in this action delete carefull otherwise that make other inventory issue.

Check related here:
https://www.odoo.com/forum/help-1/how-to-delete-the-stock-moves-when-they-are-in-done-state-5122

形象
丢弃