Skip to content

Commit

Permalink
Merge PR #43 into 12.0
Browse files Browse the repository at this point in the history
Signed-off-by pedrobaeza
  • Loading branch information
OCA-git-bot committed Feb 28, 2023
2 parents fcdff29 + 3b76626 commit 09f5528
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions project_task_timesheet_report/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
'views/project_task_report.xml',
'views/project_task_chatter_report.xml',
],
"maintainers": ["cubells"],
"license": "LGPL-3",
'installable': True,
'application': False,
Expand Down
4 changes: 4 additions & 0 deletions project_task_timesheet_report/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
* Alan Ramos <[email protected]

* `Trey, Kilobytes de Soluciones <https://trey.es>`_:

* Vicent Cubells
10 changes: 6 additions & 4 deletions project_task_timesheet_report/views/project_task_report.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,12 @@
<th>Duration</th>
</tr>
<t t-foreach="o.timesheet_ids" t-as="timesheet">
<td><span t-field="timesheet.date"/></td>
<td><span t-field="timesheet.employee_id"/></td>
<td><span t-field="timesheet.name"/></td>
<td><span t-esc="timesheet.unit_amount" t-options="{'widget': 'float_time'}"/></td>
<tr>
<td><span t-field="timesheet.date"/></td>
<td><span t-field="timesheet.employee_id"/></td>
<td><span t-field="timesheet.name"/></td>
<td><span t-esc="timesheet.unit_amount" t-options="{'widget': 'float_time'}"/></td>
</tr>
</t>
</table>
</t>
Expand Down

0 comments on commit 09f5528

Please sign in to comment.