Hii all,
We are using odoo 13 Community version windows.
Can we archive done manufacturing orders.If yes how to do it .
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,
Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!
Inscrever-se| Publicações relacionadas | Respostas | Visualizações | Atividade | |
|---|---|---|---|---|
|
0
set. 20
|
4687 | |||
|
0
mar. 26
|
70 | |||
|
1
out. 25
|
4535 | |||
|
2
jul. 24
|
5187 | |||
|
2
mai. 24
|
9795 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.
Hi Kalyani,
There are no features for archive done manufacturing order.