跳至内容
菜单
此问题已终结
1 回复
6081 查看

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? 

形象
丢弃
最佳答案

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>

形象
丢弃
相关帖文 回复 查看 活动
0
3月 15
4141
1
2月 25
1356
1
2月 25
1245
0
1月 24
1006
1
6月 18
5524