From 0545bd911f26c99e4523e871d1e796bf1eecbf6a Mon Sep 17 00:00:00 2001 From: Dario Lodeiros Date: Thu, 6 Jun 2019 20:21:55 +0200 Subject: [PATCH] [IMP] Call center Report --- call_center_report/wizard/call_center_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/call_center_report/wizard/call_center_report.py b/call_center_report/wizard/call_center_report.py index 964fb85d5..cbc9729c9 100644 --- a/call_center_report/wizard/call_center_report.py +++ b/call_center_report/wizard/call_center_report.py @@ -96,7 +96,7 @@ class CallCenterReportWizard(models.TransientModel): reservations_obj = self.env['hotel.reservation'] reservations = reservations_obj.search([ - ('checkout', '>=', self.date_start), + ('checkin', '>=', self.date_start), ('checkout', '<=', self.date_end), ('state', '=', 'done'), ('channel_type', '=', 'call'),