Siirry sisältöön
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
1 Vastaa
3650 Näkymät

Hii all,

      We are using odoo 13 Community version windows.

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

      

       

Avatar
Hylkää

Hi Kalyani,

There are no features for archive done manufacturing order.

Paras vastaus

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
Hylkää
Aiheeseen liittyviä artikkeleita Vastaukset Näkymät Toimenpide
0
syysk. 20
3487
2
heinäk. 24
2793
2
toukok. 24
6399
1
helmik. 24
2258
1
marrask. 22
6163