Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
3632 Переглядів

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, 

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
0
вер. 20
3472
2
лип. 24
2779
2
трав. 24
6226
1
лют. 24
2236
1
лист. 22
6151