[TMP] Report membership.

This commit is contained in:
michel 2018-02-26 16:52:29 +01:00
parent c176c4aff2
commit e2fe375869
5 changed files with 104 additions and 24 deletions

View File

@ -92,29 +92,31 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
</tbody>
</table>
<table class="table table-striped">
<thead>
<strong>Payments</strong>
<tr>
<th>Invoice number</th>
<th>State</th>
</tr>
</thead>
<tbody>
<t t-foreach="docs" t-as="o">
<tr t-foreach="o.activity_registration_ids" t-as="l">
<tr>
<td class="col-xs-6">
<spam t-field="l.invoice_id.number" />
</td>
<td class="col-xs-6">
<!-- <p t-if="l.invoice_id.payment_ids.state not in ['draft']" > -->
<span t-field="l.invoice_id.payment_ids.state" />
</td>
</tr>
<thead>
<strong>Payments</strong>
<tr>
<th>Invoice number</th>
<th>State</th>
</tr>
</t>
</tbody>
</thead>
<tbody>
<t t-foreach="docs" t-as="o">
<tr t-foreach="o.activity_registration_ids" t-as="l">
<tr>
<td class="col-xs-6">
<spam t-field="l.invoice_id.number" />
</td>
<td class="col-xs-6">
<p t-foreach = "l.invoice_id.payment_ids" t-as = "i" >
<t t-if = "i.state not in ['draft']">
<span t-esc = "i.state" />
</t>
</p>
</td>
</tr>
</tr>
</t>
</tbody>
</table>
</xpath>
</template>

View File

@ -46,7 +46,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<template id="report_golem_member_template">
<t t-call="report.html_container">
<t t-call="report.external_layout">
<div class="page">
<div id='page_report_member' class="page">
<t t-foreach="docs" t-as="o">
<div class="oe_structure"/>
<div class="row">

View File

@ -26,5 +26,6 @@
'installable': True,
'depends': ['golem_member', 'account', 'decimal_precision'],
'data': ['views/golem_membership_invoice.xml',
'views/golem_member_view.xml']
'views/golem_member_view.xml',
'report/golem_member_report.xml']
}

View File

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
# Copyright 2016 Fabien Bourgeois <fabien@yaltik.com>
# Copyright 2018 Michel Dessenne <michel@yaltik.com>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from . import golem_membership

View File

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2017 Fabien Bourgeois <fabien@yaltik.com>
Copyright 2018 Michel Dessenne <michel@yaltik.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<odoo>
<template id="membership" inherit_id="golem_member.report_golem_member_template">
<xpath expr="//div[@id='page_report_member']" position="after">
<div class="page">
<table class="table">
<thead>
<strong>Membership</strong>
<tr>
<th>Season</th>
<th>Date</th>
<th>State</th>
</tr>
</thead>
<tbody>
<t t-foreach="docs" t-as="o">
<tr>
<td class="col-xs-4">
<spam t-field="o.member_lines.date" />
</td>
<td class="col-xs-4">
<spam t-field="o.member_lines.membership_id" />
</td>
<td class="col-xs-4">
<spam t-field="o.member_lines.state" />
</td>
</tr>
</t>
</tbody>
</table>
</div>
</xpath>
</template>
</odoo>