Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
1 Beantwoorden
3765 Weergaven

Hii all,

      We are using odoo 13 Community version windows.

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

      

       

Avatar
Annuleer

Hi Kalyani,

There are no features for archive done manufacturing order.

Beste antwoord

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
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
0
sep. 20
3575
2
jul. 24
2965
2
mei 24
7700
1
feb. 24
2435
1
nov. 22
6406