Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
3736 Widoki

Hii all,

      We are using odoo 13 Community version windows.

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

      

       

Awatar
Odrzuć

Hi Kalyani,

There are no features for archive done manufacturing order.

Najlepsza odpowiedź

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, 

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
0
wrz 20
3553
2
lip 24
2915
2
maj 24
7271
1
lut 24
2391
1
lis 22
6342