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

I am trying to create a read-only field x_total_salary in hr.contract model in Odoo 10 in web debug mode (I dont have access to the module code files) which would show the total gross salary in the contract creation form. Value of x_total_salary should be simple addition of the fields: wage + x_conv_alw + x_med_alw + x_other_alw in the same model which I tried to put in the "Compute" box of x_total_salary. I put <field name=" x_total_salary"/> in the contract creation form which unfortunately shows 0.

Any idea how to put such simple calculation in the computed fields please?

아바타
취소
작성자 베스트 답변

The code is somewhat weird for a newbie like me:

for record in self:

    record['x_total_salary'] = record.wage + record.x_conv_alw + record.x_med_alw + record.x_other_alw
The weird part is it would be "record['x_total_salary']" not "record.x_total_salary" !!

아바타
취소
관련 게시물 답글 화면 활동
0
10월 25
582
1
9월 25
1146
0
8월 25
1607
1
7월 25
1456
0
6월 25
1290