콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
3671 화면

Hii all,

      We are using odoo 13 Community version windows.

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

      

       

아바타
취소

Hi Kalyani,

There are no features for archive done manufacturing order.

베스트 답변

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, 

아바타
취소
관련 게시물 답글 화면 활동
0
9월 20
3504
2
7월 24
2829
2
5월 24
6610
1
2월 24
2279
1
11월 22
6203