Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
3594 Visualizzazioni

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?

Avatar
Abbandona
Autore Risposta migliore

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" !!

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
0
ott 25
471
1
set 25
1043
0
ago 25
1564
1
lug 25
1382
0
giu 25
1236