Hii all,
We are using odoo 13 Community version windows.
Can we archive done manufacturing orders.If yes how to do it .
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hii all,
We are using odoo 13 Community version windows.
Can we archive done manufacturing orders.If yes how to do it .
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):Result
_inherit = "mrp.production"
active = fields.Boolean("Active", default=True)
I hope this helps.
Thanks,
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
InscribirsePublicaciones relacionadas | Respuestas | Vistas | Actividad | |
---|---|---|---|---|
|
0
sept 20
|
3161 | ||
|
2
jul 24
|
2219 | ||
|
2
may 24
|
2091 | ||
|
1
feb 24
|
1754 | ||
Access logs on Odoo Community
Resuelto
|
|
1
nov 22
|
5521 |
Hi Kalyani,
There are no features for archive done manufacturing order.