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

Hii all,

      We are using odoo 13 Community version windows.

      Can we archive done manufacturing orders.If yes how to do it .       

      

       

形象
丢弃

Hi Kalyani,

There are no features for archive done manufacturing order.

最佳答案

Hello Kalyani,

As Nikunj said there is no feature to achieve by default on some models. However, this can be achieved using a custom module.

You would just need to add an "active" Boolean field to the model. This is the simple code I used to achieve what you want, you can also create an automation which will automatically archive a manufacturing order after a certain number of days.

Code:

class archive_man(models.Model):
    _inherit = "mrp.production"
    active = fields.Boolean("Active", default=True)
Result

I hope this helps. 

Thanks, 

形象
丢弃
相关帖文 回复 查看 活动
0
9月 20
3294
2
7月 24
2444
2
5月 24
3769
1
2月 24
1973
1
11月 22
5816