This commit is contained in:
michel 2018-02-19 16:22:29 +01:00
parent 5a93c3c0bd
commit f15fcbd222
2 changed files with 28 additions and 13 deletions

View File

@ -20,19 +20,33 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<odoo>
<report id="golem_activity_registration_report"
string="golem_activity_registration report"
model="golem.activity_registration_state"
report_type="qweb-html"
name="golem_activity.report_golem_member_template" />
<template id="report_golem_member_template" inherit_id="golem_member.report_golem_member_template">
<xpath expr="//td[@id='place']" position="after">
<!-- <span t-set="name" t-value="activity_id.name"/> -->
<template id="activity" inherit_id="golem_member.report_golem_member_template">
<xpath expr="//th[@id='activity_inherit_th']" position="after">
<th>State</th>
<th>Price</th>
</xpath>
<xpath expr="//td[@id='activity_inherit_td']" position="after">
<td>
<h1> tttttttt<span t-esc="activity_id" /></h1>
<span t-field="t.state" />
</td>
<td>
<span t-field="t.activity_price" />
</td>
</xpath>
<xpath expr="//tr[@id='activity_inherit_total']" position="inside">
<td>
<strong>Total</strong>
<!-- <t t-set="test_variable" t-value="100"/>
<p t-foreach="t.activity_price" t-as="i">
<t t-set="test_variable" t-value="test_variable+i"/>
</p>
<h1>RESULT=<t t-esc="test_variable"/></h1> -->
<!-- <h1> tttttttt<span t-set="state" t-value="activity_registration_ids.state" /></h1> -->
<p t-foreach="t.activity_price" t-as="i">
<t t-set="i" t-value="0"/>
<t t-set="price_count" t-value="price_base + i"/>
</p>
<h1>RESULT=<t t-esc="price_count" /></h1>
</td>
</xpath>

View File

@ -87,7 +87,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<th>Hour start</th>
<th>Hour stop</th>
<th>Date start</th>
<th>Date stop</th>
<th id="activity_inherit_th">Date stop</th>
</tr>
<t t-foreach="docs" t-as="o">
<tr t-foreach="o.activity_registration_ids" t-as="t">
@ -109,9 +109,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<td class="col-xs-6">
<span t-field="t.activity_id.date_start" /><br></br>
</td>
<td id="place" class="col-xs-6">
<td id="activity_inherit_td" class="col-xs-6">
<span t-field="t.activity_id.date_stop" /><br></br>
</td>
<tr id="activity_inherit_total"></tr>
</tr>
</t>
</table>