forked from Yaltik/golem
fonction de reporting
This commit is contained in:
parent
c669ddae2f
commit
01a34e0e3b
@ -18,3 +18,4 @@
|
|||||||
|
|
||||||
#from . import models
|
#from . import models
|
||||||
from . import wizard
|
from . import wizard
|
||||||
|
from . import reports
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
'installable': True,
|
'installable': True,
|
||||||
'depends': ['golem_resource'],
|
'depends': ['golem_resource'],
|
||||||
'data': ['reports/golem_reservation_report.xml',
|
'data': ['reports/golem_reservation_report.xml',
|
||||||
|
'reports/golem_reservation_report_menu.xml',
|
||||||
'views/golem_resource_report_menu.xml',
|
'views/golem_resource_report_menu.xml',
|
||||||
'wizard/golem_resource_report_wizard_views.xml']
|
'wizard/golem_resource_report_wizard_views.xml']
|
||||||
}
|
}
|
||||||
|
19
golem_resource_report/reports/__init__.py
Normal file
19
golem_resource_report/reports/__init__.py
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Copyright 2018 Youssef El Ouahby <youssef@yaltik.com>
|
||||||
|
# Copyright 2018 Fabien Bourgeois <fabien@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_reservation_report
|
79
golem_resource_report/reports/golem_reservation_report.py
Normal file
79
golem_resource_report/reports/golem_reservation_report.py
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Copyright 2018 Youssef El Ouahby <youssef@yaltik.com>
|
||||||
|
# Copyright 2018 Fabien Bourgeois <fabien@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/>.
|
||||||
|
|
||||||
|
import time
|
||||||
|
|
||||||
|
from odoo import models, api
|
||||||
|
|
||||||
|
|
||||||
|
class GolemResevationReport(models.AbstractModel):
|
||||||
|
_name = 'report.golem_resource_report.golem_reservation_report'
|
||||||
|
|
||||||
|
def get_total_reservation(self, data):
|
||||||
|
domain = [('date_start', '>', data['date_start']),
|
||||||
|
('date_stop', '<', data['date_stop']),
|
||||||
|
('resource_id', 'in', data['resource_ids'])]
|
||||||
|
return self.env['golem.resource.reservation'].search_count(domain)
|
||||||
|
|
||||||
|
|
||||||
|
def get_data(self, data):
|
||||||
|
lst = []
|
||||||
|
domain = [('date_start', '>', data['date_start']),
|
||||||
|
('date_stop', '<', data['date_stop']),
|
||||||
|
('resource_id', 'in', data['resource_ids'])]
|
||||||
|
reservations = self.env['golem.resource.reservation'].search(domain, order='date_start')
|
||||||
|
res = {}
|
||||||
|
for reservation in reservations:
|
||||||
|
res = {
|
||||||
|
'name': reservation.name,
|
||||||
|
'resource_name': reservation.resource_id.name,
|
||||||
|
'client': reservation.partner_id.name,
|
||||||
|
'date_start': reservation.date_start,
|
||||||
|
'date_stop': reservation.date_stop
|
||||||
|
}
|
||||||
|
lst.append(res)
|
||||||
|
|
||||||
|
#self.total_student = 0
|
||||||
|
"""for student in student_search:
|
||||||
|
self.total_student += 1
|
||||||
|
res = {
|
||||||
|
'name': student.name,
|
||||||
|
'middle_name': student.middle_name,
|
||||||
|
'last_name': student.last_name,
|
||||||
|
'application_no': student.application_number,
|
||||||
|
}
|
||||||
|
lst.append(res)"""
|
||||||
|
return lst
|
||||||
|
|
||||||
|
@api.model
|
||||||
|
def render_html(self, docids, data=None):
|
||||||
|
model = self.env.context.get('active_model')
|
||||||
|
docs = self.env[model].browse(self.env.context.get('active_id'))
|
||||||
|
docargs = {
|
||||||
|
'doc_ids': self.ids,
|
||||||
|
'doc_model': model,
|
||||||
|
'docs': docs,
|
||||||
|
'time': time,
|
||||||
|
'data': data,
|
||||||
|
'date_start': data['date_start'],
|
||||||
|
'date_stop': data['date_stop'],
|
||||||
|
'get_total_reservation': self.get_total_reservation(data),
|
||||||
|
'get_data': self.get_data(data),
|
||||||
|
}
|
||||||
|
return self.env['report'] \
|
||||||
|
.render('golem_resource_report.golem_reservation_report', docargs)
|
@ -1,8 +1,62 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright 2018 Youssef El Ouahby <youssef@yaltik.com>
|
||||||
|
Copyright 2018 Fabien Bourgeois <fabien@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>
|
<odoo>
|
||||||
<report id="action_golem_reservation_report"
|
<data>
|
||||||
string="Reservations"
|
<template id="golem_reservation_report">
|
||||||
model="golem.resource.report.wizard"
|
<t t-call="report.html_container">
|
||||||
report_type="qweb-html"
|
<t t-call="report.external_layout">
|
||||||
name="golem_resource_report.report_golem_reservation_template"/>
|
<div class="font">
|
||||||
|
<div class="page">
|
||||||
|
<br></br>
|
||||||
|
<table border="1" width="100%" cellpadding="0" bgcolor="#5F8CA3" >
|
||||||
|
<tbody>
|
||||||
|
<tr width="100%">
|
||||||
|
<td class="text-center" width="100%">
|
||||||
|
<center><b>Maison Phare toutes les reservations</b><br/>
|
||||||
|
<b>From Date: </b>
|
||||||
|
<span t-esc="from_date" />
|
||||||
|
<span t-raw="'%s' % date_start if date_start else ''" />
|
||||||
|
<b>To Date:</b>
|
||||||
|
<span t-raw="'%s' % date_stop if date_stop else ''" /></center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<table border="1" width="100%" cellpadding="0" bgcolor="#ededed" style="padding: 20px; background-color: #ededed; border-collapse:separate;">
|
||||||
|
<tbody>
|
||||||
|
<tr t-foreach="get_data" t-as="o">
|
||||||
|
<td class="text-left">
|
||||||
|
<span t-esc="o['resource_name']" />
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<span t-raw="'%s' % o['date_start'] if o['date_start'] else ''" />
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<span t-raw="'%s' % o['date_stop'] if o['date_stop'] else ''" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
</t>
|
||||||
|
</template>
|
||||||
|
</data>
|
||||||
</odoo>
|
</odoo>
|
||||||
|
@ -0,0 +1,49 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright 2018 Youssef El Ouahby <youssef@yaltik.com>
|
||||||
|
Copyright 2018 Fabien Bourgeois <fabien@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>
|
||||||
|
<data>
|
||||||
|
<record id="paperformat_euro_landscape"
|
||||||
|
model="report.paperformat">
|
||||||
|
<field name="name">European A4 Landscape</field>
|
||||||
|
<field name="default" eval="True" />
|
||||||
|
<field name="format">A4</field>
|
||||||
|
<field name="page_height">0</field>
|
||||||
|
<field name="page_width">0</field>
|
||||||
|
<field name="orientation">Landscape</field>
|
||||||
|
<field name="margin_top">10</field>
|
||||||
|
<field name="margin_bottom">23</field>
|
||||||
|
<field name="margin_left">7</field>
|
||||||
|
<field name="margin_right">7</field>
|
||||||
|
<field name="header_line" eval="False" />
|
||||||
|
<field name="header_spacing">35</field>
|
||||||
|
<field name="dpi">90</field>
|
||||||
|
</record>
|
||||||
|
<report
|
||||||
|
id="action_report_report_admission_analysis"
|
||||||
|
model="golem.resource.report.wizard"
|
||||||
|
string="Reservations Report"
|
||||||
|
report_type="qweb-pdf"
|
||||||
|
name="golem_resource_report.golem_reservation_report"
|
||||||
|
file="golem_resource_report.golem_reservation_report"
|
||||||
|
menu="False"
|
||||||
|
auto="False"
|
||||||
|
paperformat="paperformat_euro_landscape"
|
||||||
|
/>
|
||||||
|
</data>
|
||||||
|
</odoo>
|
@ -1,3 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright 2018 Youssef El Ouahby <youssef@yaltik.com>
|
||||||
|
Copyright 2018 Fabien Bourgeois <fabien@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>
|
<odoo>
|
||||||
<data>
|
<data>
|
||||||
|
|
||||||
|
@ -38,7 +38,10 @@ class GolemResourceReportWizard(models.TransientModel):
|
|||||||
raise ValidationError(_("Stop Date cannot be set before \
|
raise ValidationError(_("Stop Date cannot be set before \
|
||||||
Start Date."))
|
Start Date."))
|
||||||
else:
|
else:
|
||||||
domain = [('date_start', '>', record.date_start),
|
data = self.read(
|
||||||
('date_stop', '<', record.date_stop),
|
['resource_ids', 'date_start', 'date_stop'])[0]
|
||||||
('resource_id', 'in', record.selected_resource_ids.ids)]
|
return self.env['report'].get_action(
|
||||||
data = self.env['golem.resource.reservation'].search(domain)
|
self, 'golem_resource_report.golem_reservation_report',
|
||||||
|
data=data)
|
||||||
|
|
||||||
|
|
||||||
|
@ -18,7 +18,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
-->
|
-->
|
||||||
<odoo>
|
<odoo>
|
||||||
<data>
|
<data>
|
||||||
|
|
||||||
<!-- Forms -->
|
<!-- Forms -->
|
||||||
<record model="ir.ui.view" id="golem_resource_report_wizard_view_form">
|
<record model="ir.ui.view" id="golem_resource_report_wizard_view_form">
|
||||||
<field name="name">GOLEM resource Report Wizard Form</field>
|
<field name="name">GOLEM resource Report Wizard Form</field>
|
||||||
@ -28,7 +27,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
<group>
|
<group>
|
||||||
<group>
|
<group>
|
||||||
<field name="resource_ids" >
|
<field name="resource_ids" >
|
||||||
<tree>
|
<tree options="{'no_create' : True}">
|
||||||
<field name="name"/>
|
<field name="name"/>
|
||||||
</tree>
|
</tree>
|
||||||
</field>
|
</field>
|
||||||
@ -45,7 +44,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
</footer>
|
</footer>
|
||||||
</form>
|
</form>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
</data>
|
</data>
|
||||||
</odoo>
|
</odoo>
|
||||||
|
Loading…
Reference in New Issue
Block a user