تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
5774 أدوات العرض

Hi!,

I've encountered a problem when trying to do a search for obtain records that are current day.

        fecha_actual= datetime.strptime(fields.date.context_today(self,cr,uid,context=context), "%Y-%m-%d").date()
        fecha_actual = fecha_actual.strftime('%Y-%m-%d')

         ingresos = self.search(cr, uid, [('f_ingreso', '>=', fecha_actual+' 00:00:00'),('f_ingreso','<=',fecha_actual+ ' 23:59:59')],context=context)

In trying to make the search only brings back those before 7:00 PM; as if I had my time zone into account for the search.Any idea what might be going?

 

الصورة الرمزية
إهمال

It depends on where you are trying to make this search. Please post the entire object

الكاتب

It is a proper model "system.poblacion_ingreso" within the have a button that should make finding records all day. _name = 'delphos.poblacion_ingreso' def check_current_day(self,cr,uid,ids,context=None): fecha_actual= datetime.strptime(fields.date.context_today(self,cr,uid,context=context), "%Y-%m-%d").date() fecha_actual = fecha_actual.strftime('%Y-%m-%d') ingresos = self.search(cr, uid, [('f_ingreso', '>=', fecha_actual+' 00:00:00'),('f_ingreso','

المنشورات ذات الصلة الردود أدوات العرض النشاط
3
يوليو 25
3414
1
يناير 24
1558
1
فبراير 22
4658
2
مارس 25
1888
1
أبريل 17
4838