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

in another project, I used compute field like this on a function and it works. But why this one is not working?

Here is my code :

from openerp import models, fields, api

class PurchaseOrder(models.Model):

_inherit = 'hr.payslip'

gaji_pokok = fields.Integer(string="Gaji Pokok")

t_lembur = fields.Integer(string="Tunjangan Lembur")

t_transportasi = fields.Integer(string="Tunjangan Transportasi")

bonus = fields.Integer(string="Bonus")

jumlah_kerja = fields.Integer(string="Jumlah Jam Kerja")

libur = fields.Integer(string="Cuti")

total_pendapatan = fields.Monetary(compute = '_compute_gaji', readonly=True, string="Total Gaji")

@api.one

@api.depends('gaji_pokok', 't_lembur', 't_transportasi', 'bonus', 'jumlah_kerja', 'libur')

def _compute_gaji(self):

for sal in self:

if sal.gaji_pokok is not False:

sal.total_pendapatan = sal.gaji_pokok + sal.t_lembur + sal.t_transportasi + sal.bonus + sal.jumlah_kerja + sal.libur


Here is my xml (not all the code I show)

<xpath expr="//page[1]" position="after">

<form colspan="4" nolabel="1">

<page string="Pendapatan Karyawan">

<separator string="Pendapatan Karyawan"/>

<group col="4">

<field name="jumlah_kerja"/>

<field name="libur"/>

<field name="gaji_pokok"/>

<field name="t_lembur"/>

<field name="t_transportasi"/>

<field name="bonus"/>

<field name="total_pendapatan"/>

</group>

</page>

</form>

</xpath>


My error message is "field total_pendapatan doesnt exist"

Anyone can help me about this?

아바타
취소

Hi,

Make sure that the python file is called in the init file .

작성자 베스트 답변

I've done added hr_payroll and the python file has been called in init file. But till now, it cant work. Do you have any solution about this?

아바타
취소

In the xml file in the question, can you check whether the model mentioned is right one, or just update the question with full part of that record

작성자

Here full part of my xml code

<?xml version="1.0" encoding="utf-8"?>

<openerp>

<data>

<record id="view_hr_payslip_inherit_form_extended" model="ir.ui.view">

<field name="name">hr.payslip.inherit.form</field>

<!-- object of the view -->

<field name="model">hr.payslip</field>

<field name="inherit_id" ref="hr_payroll.view_hr_payslip_form" />

<field name="arch" type="xml">

<xpath expr="//page[1]" position="after">

<form colspan="4" nolabel="1">

<page string="Pendapatan Karyawan">

<separator string="Pendapatan Karyawan"/>

<group col="4">

<field name="jumlah_kerja"/>

<field name="libur"/>

<field name="gaji_pokok"/>

<field name="t_lembur"/>

<field name="t_transportasi"/>

<field name="bonus"/>

<field name="total_pendapatan"/>

</group>

</page>

</form>

</xpath>

</field>

</record>

</data>

</openerp>

I dont know what should I do when this error appear. Maybe do you have any solution again?

베스트 답변

Hello Try this

First Check Your  __manifest__.py Where You Added depends:['hr_payroll']

If exist Than Try on Your terminal path -u all

In Your Compute Method

if sal.gaji_pokok:

    sal.total_pendapatan = sal.gaji_pokok + sal.t_lembur + sal.t_transportasi + sal.bonus +

    sal.jumlah_kerja + sal.libur

아바타
취소
관련 게시물 답글 화면 활동
0
3월 21
6804
3
7월 20
21190
2
1월 19
7267
1
12월 18
3173
1
7월 18
7538