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.
		
		
		
		
		
			
		
			
				
					
					
						
							66 lines
						
					
					
						
							2.9 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							66 lines
						
					
					
						
							2.9 KiB
						
					
					
				
								# -*- coding: utf-8 -*-
							 | 
						|
								#############################################################################
							 | 
						|
								#
							 | 
						|
								#    Cybrosys Technologies Pvt. Ltd.
							 | 
						|
								#
							 | 
						|
								#    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
							 | 
						|
								#    Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
							 | 
						|
								#
							 | 
						|
								#    You can modify it under the terms of the GNU LESSER
							 | 
						|
								#    GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
							 | 
						|
								#
							 | 
						|
								#    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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
							 | 
						|
								#
							 | 
						|
								#    You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
							 | 
						|
								#    (LGPL v3) along with this program.
							 | 
						|
								#    If not, see <http://www.gnu.org/licenses/>.
							 | 
						|
								#
							 | 
						|
								#############################################################################
							 | 
						|
								from odoo import fields, models
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								class PropertySaleReport(models.TransientModel):
							 | 
						|
								    """A class for the transient model property.sale.report"""
							 | 
						|
								    _name = 'property.sale.report'
							 | 
						|
								    _description = 'Property Sale Report'
							 | 
						|
								
							 | 
						|
								    from_date = fields.Date(string="From Date",
							 | 
						|
								                            help='Records from the date will be selected')
							 | 
						|
								    to_date = fields.Date(string="To Date",
							 | 
						|
								                          help='Records till the date will be selected')
							 | 
						|
								    property_id = fields.Many2one('property.property', string="Property Name",
							 | 
						|
								                                  help='The property will be selected')
							 | 
						|
								    partner_id = fields.Many2one('res.partner', string="Customer",
							 | 
						|
								                                 help='The Customer will be selected')
							 | 
						|
								
							 | 
						|
								    def action_create_report(self):
							 | 
						|
								        """The function executes query related to the datas given
							 | 
						|
								        and returns a pdf report"""
							 | 
						|
								        query = """ select a.name as customer,b.name,x.create_date,x.state 
							 | 
						|
								                                    from property_sale x
							 | 
						|
								                                    join res_partner a on partner_id = a.id 
							 | 
						|
								                                    join property_property b 
							 | 
						|
								                                    on x.property_id = b.id"""
							 | 
						|
								        if self.partner_id:
							 | 
						|
								            query += """ and a.name = '%s'""" % self.partner_id.name
							 | 
						|
								        if self.property_id:
							 | 
						|
								            query += """ and b.name = '%s'""" % self.property_id.name
							 | 
						|
								        if self.from_date:
							 | 
						|
								            query += """ and x.create_date > '%s'""" % self.from_date
							 | 
						|
								        if self.to_date:
							 | 
						|
								            query += """ and x.create_date < '%s'""" % self.to_date
							 | 
						|
								        self._cr.execute(query)
							 | 
						|
								        datas = self.env.cr.dictfetchall()
							 | 
						|
								        data = {
							 | 
						|
								            'datas': datas,
							 | 
						|
								            'to_date': self.to_date,
							 | 
						|
								            'from_date': self.from_date,
							 | 
						|
								            'partner_name': self.partner_id.name,
							 | 
						|
								            'property_name': self.property_id.name,
							 | 
						|
								        }
							 | 
						|
								        return self.env.ref(
							 | 
						|
								            'advanced_property_management.property_sale_report_action_report').report_action(
							 | 
						|
								            self, data=data)
							 | 
						|
								
							 |