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

Hello Community,

I am working on odoo11 survey module.

I am assigning deadline from survey wizard  and wizard contains only date field as deadline. whereas in Answers deadline field is datetime and its show 5:30 default time value.

My requirement:  I want to show default time for deadline field in Answers is 23:59.

Try:

deadline = fields.Datetime('Deadline', help="Date by which the person can open the survey and submit answers",oldname="date_deadline", default=lambda *a: time.strftime('23:59:59'))

But  its  not  worked.

Thanks  in  advance

الصورة الرمزية
إهمال
أفضل إجابة

Hi,

In Odoo, the Datetime field requires both the date and time field to be stored in its record. So we'll have to fetch the current datetime using the python datetime module and replace the time details from it with our deadline time.

Final Code:

deadline = fields.Datetime('Deadline', help="Date by which the person can open the survey and submit answers",oldname="date_deadline", default=datetime.now().replace(hour=23, minute=59, second=59))

Regards

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
1
أغسطس 21
5654
2
أكتوبر 19
12784
2
فبراير 23
9002
1
نوفمبر 22
3360
2
أغسطس 22
7696