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

Below code doesn't Work:

py:

is_other_attachment = fields.Boolean(string='Other Attachment',default=False)​
other_attachment = fields.Many2many(comodel_name="ir.attachment",
relation="m2m_ir_attachment_rel",
column1="m2m_id",
column2="attachment_id",
string="Other Attachment")


xml:

<field name="is_other_attachment"/>
<field name="other_attachment" widget="many2many_binary" attrs="{'required':[('is_other_attachment', '=', True)]}"/>
아바타
취소
베스트 답변

Hello Yezeed,

If you are wanna use specific condition on ir.attachment object my suggestion is use @api.constrains for that field.

Like here we set mandatory to add attachment based on state,

@api.one
@api.constrains('other_attachment', 'state')
def check_ir_attachment(self):
    for rec in self:
        if rec.state == 'confirm':
            raise ValidationError("Please upload document for this record to move to '%s' stage." % rec.state)

This can help you a lot.(Y)

Thank you.

Hiren Dangar. 

아바타
취소
관련 게시물 답글 화면 활동
4
12월 22
4536
4
3월 21
10785
2
11월 21
7598
1
4월 20
6845
2
1월 20
4926