Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
3608 Tampilan

Hii all,

      We are using odoo 13 Community version windows.

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

      

       

Avatar
Buang

Hi Kalyani,

There are no features for archive done manufacturing order.

Jawaban Terbai

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, 

Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
0
Sep 20
3442
2
Jul 24
2737
2
Mei 24
6036
1
Feb 24
2208
1
Nov 22
6107