mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
First Commit
This commit is contained in:
6
hotel/report/__init__.py
Normal file
6
hotel/report/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2017 Alexandre Díaz
|
||||
# Copyright 2017 Dario Lodeiros
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import hotel_report
|
||||
41
hotel/report/hotel_report.py
Normal file
41
hotel/report/hotel_report.py
Normal file
@@ -0,0 +1,41 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2017 Alexandre Díaz
|
||||
# Copyright 2017 Dario Lodeiros
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
import time
|
||||
from openerp import models
|
||||
|
||||
# Old SXW engine was removed already in v11. You should update your code with
|
||||
# current engine tools.
|
||||
# class FolioReport():
|
||||
# def __init__(self, cr, uid, name, context):
|
||||
# super(FolioReport, self).__init__(cr, uid, name, context)
|
||||
# self.localcontext.update({'time': time,
|
||||
# 'get_data': self.get_data,
|
||||
# 'get_Total': self.getTotal,
|
||||
# 'get_total': self.gettotal,
|
||||
# })
|
||||
# self.temp = 0.0
|
||||
#
|
||||
# def get_data(self, date_start, date_end):
|
||||
# folio_obj = self.pool.get('hotel.folio')
|
||||
# tids = folio_obj.search(self.cr, self.uid,
|
||||
# [('checkin_date', '>=', date_start),
|
||||
# ('checkout_date', '<=', date_end)])
|
||||
# res = folio_obj.browse(self.cr, self.uid, tids)
|
||||
# return res
|
||||
#
|
||||
# def gettotal(self, total):
|
||||
# self.temp = self.temp + float(total)
|
||||
# return total
|
||||
#
|
||||
# def getTotal(self):
|
||||
# return self.temp
|
||||
#
|
||||
#
|
||||
# class ReportLunchorder(models.AbstractModel):
|
||||
# _name = 'report.hotel.report_hotel_folio'
|
||||
# _inherit = 'report.report_xlsx.abstract'
|
||||
# _template = 'hotel.report_hotel_folio'
|
||||
# _wrapped_report_class = FolioReport
|
||||
13
hotel/report/hotel_report.xml
Normal file
13
hotel/report/hotel_report.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0"?>
|
||||
<odoo>
|
||||
|
||||
<!--Report for hotel folio -->
|
||||
<report id="hotel_folio_details"
|
||||
string="Folio Total"
|
||||
model="hotel.folio"
|
||||
name="folio.total"
|
||||
rml="hotel/report/total_folio.rml"
|
||||
menu="False"
|
||||
auto="False"/>
|
||||
|
||||
</odoo>
|
||||
19
hotel/report/report_parte_viajero.xml
Normal file
19
hotel/report/report_parte_viajero.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0"?>
|
||||
<odoo>
|
||||
|
||||
<report
|
||||
id="action_report_viajero"
|
||||
model="cardex"
|
||||
string="Parte de Viajero"
|
||||
report_type="qweb-pdf"
|
||||
name="report.viajero"
|
||||
file="report.viajero" />
|
||||
<record id="action_report_viajero" model="ir.actions.report.xml">
|
||||
<field name="paperformat_id" ref="report_viajero_paperformat"/>
|
||||
<field name="report_type">qweb-pdf</field>
|
||||
<field name="pdfjs_enabled">1</field>
|
||||
<field name="pdfjs_auto_print">1</field>
|
||||
<field name="pdfjs_print_dpi">201</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user