mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
18 lines
1.1 KiB
XML
18 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
|
|
<template id="report_invoice_document_inherit" inherit_id="timesheet_invoice.report_invoice_document_inherit">
|
|
<xpath expr="//tr[@t-as='timesheet']/td[last()]" position="replace">
|
|
<td class="text-right" t-if="not timesheet.work_type_id or timesheet.work_billing_rate == 1.0">
|
|
<span t-field="timesheet.unit_amount" t-options="{"widget": "duration", "unit": "hour", "round": "minute"}"/>
|
|
</td>
|
|
<td class="text-right" t-else="">
|
|
<del t-field="timesheet.unit_amount" class="text-muted" t-options="{"widget": "duration", "unit": "hour", "round": "minute"}"/>
|
|
<br/>
|
|
<span t-field="timesheet.work_billing_amount" t-options="{"widget": "duration", "unit": "hour", "round": "minute"}"/>
|
|
</td>
|
|
</xpath>
|
|
</template>
|
|
|
|
</odoo>
|