Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
3622 Visualizzazioni

Hii all,

      We are using odoo 13 Community version windows.

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

      

       

Avatar
Abbandona

Hi Kalyani,

There are no features for archive done manufacturing order.

Risposta migliore

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
Abbandona
Post correlati Risposte Visualizzazioni Attività
0
set 20
3463
2
lug 24
2757
2
mag 24
6144
1
feb 24
2226
1
nov 22
6136