Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
6080 Vizualizări

Is it possible to add worked_days and worked_hours below the date.from and date.to line in payslip report?

I have tried to modify the payslip_report under settings/technical/userinterface/views/, but I'm honestly not really knowledgeable at writing code.

So, I just thought I could add this piece of code at line 45 of said payslip_report:

"<tr t-foreach="get_payslip_lines(o.worked_days_line_ids)" t-as="q">

<td><strong>Worked days</strong></td>

<td><span t-field="q.number_of_days"/></td>

</tr>"

But when I try to print the payslip, I get an error with the following message at the bottom:

QWebException: "'hr.payslip.worked_days' object has no attribute 'appears_on_payslip'" while evaluating

'get_payslip_lines(o.worked_days_line_ids)'  

Can any one provide some insight into what I'm trying to accomplish? 

Imagine profil
Abandonează
Cel mai bun răspuns

Worked days not stores in payslip line

its worked_days_in_month  field inside hr.payslip model


Try this

<tr>

<td colspan="2"><strong>Worked Days</strong></td>

<td colspan="2"><span t-field="o.worked_days_in_month"/></td>

</tr>


Paste this code inside 1 table 
before</table>

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
0
mar. 15
4141
1
feb. 25
1355
1
feb. 25
1242
0
ian. 24
1006
1
iun. 18
5523