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

Hi Guys I Need To Change Value Of Field According To Selection Field Changed So What The Best Way To Do It

Like (When I Chose The Employee Automatically Get His Wage in Another Field )

Thanks A lot

아바타
취소
베스트 답변

Use on_change function.

In python file:

_columns = {
        'name': fields.many2one('hr.employee', "Employee", required=True),
        'wage_amt': fields.float('Wage', digits=(16,2), required=True, help="Basic Salary of the employee"),
    }

    def onchange_employee_id(self, cr, uid, ids, employee_id, context=None):
        v = {}
        if employee_id:
            contract_sr = self.pool.get('hr.contract').search(cr, uid, [('employee_id','=',employee_id)], context=context)
            if contract_sr:
                contract_br = self.pool.get('hr.contract').browse(cr, uid, contract_sr, context=context)[0]
                v['wage_amt'] = contract_br.wage

        return {'value': v}

In XML file:

<field name="name" on_change="onchange_employee_id(name)"/>
<field name="wage_amt"/>
아바타
취소
작성자

Thanks Ayyappan For Answer But Please If You Have Example I W'll Can Understand It

관련 게시물 답글 화면 활동
2
12월 17
17140
0
4월 15
4122
1
12월 24
1743
0
6월 19
3955
1
8월 18
8230