You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.9 KiB
68 lines
2.9 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Template sales hourly report -->
|
|
<template id="sales_hourly_view">
|
|
<t t-call="web.html_container">
|
|
<t t-call="web.external_layout">
|
|
<style>
|
|
</style>
|
|
<t class="page">
|
|
<div class="oe_structure"/>
|
|
<center>
|
|
<b>
|
|
<h3>Hourly Sales Report</h3>
|
|
</b>
|
|
</center>
|
|
<t t-foreach="times" t-as="t" t-key="t">
|
|
<t t-log="t"/>
|
|
<center>
|
|
<b>
|
|
<t t-out="t" style="font-size:21px;"/>
|
|
</b>
|
|
</center>
|
|
<t t-set="t_amt" t-value="0"/>
|
|
<table class="table table-condensed">
|
|
<thead>
|
|
<tr>
|
|
<th>Order Number</th>
|
|
<th>Order Date</th>
|
|
<t t-if="type=='untax'">
|
|
<th>Untaxed Total</th>
|
|
</t>
|
|
<t t-else="">
|
|
<th>Total</th>
|
|
</t>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr t-foreach="form" t-as="order" t-key="order">
|
|
<t t-if="order['time'] == t">
|
|
<td>
|
|
<t t-esc="order['order']"/>
|
|
</td>
|
|
<td>
|
|
<t t-esc="order['date']"/>
|
|
</td>
|
|
<td>
|
|
<t t-esc="order['amount']"/>
|
|
<t t-set="t_amt"
|
|
t-value="t_amt + order['amount']"></t>
|
|
</td>
|
|
</t>
|
|
</tr>
|
|
<tr>
|
|
<td colsapn="3">
|
|
<b>
|
|
<span>Total Amount</span>
|
|
</b>
|
|
<t t-esc="t_amt"/>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</t>
|
|
</t>
|
|
</t>
|
|
</t>
|
|
</template>
|
|
</odoo>
|
|
|