Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
3026 มุมมอง

Hi guys,

I have 3 fields:

  • date_n(datetime), time(00:00:00) and date_result (computed field)

And 2 buttons:

  • "Start" and "Stop"

When I click on the Start button, the time field start counting... and when I click on Stop button, the field date_result will store date_n + time in format like d/m/Y 00:00:00


Thanks

อวตาร
ละทิ้ง
ผู้เขียน

Anybody help :)

คำตอบที่ดีที่สุด

Hi,

You can refer how the stop time is calculated for an event using start time and event duration in the calendar module.In this case this will be simple because there are 2 datetime fields and a duration field - time in your case.

date_result = date_n + timedelta(minutes=round((time or 1.0) * 60))

Either you can compute total time if it is not a field of type float by the following method by storing the start time and end time.

tot_sec = (end_time - start_time).total_seconds()
tot_hours = round((tot_sec / 3600.0), 2)

Regards

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
2
ส.ค. 22
4190
1
เม.ย. 22
3268
1
มี.ค. 22
4121
1
ก.พ. 22
2457
0
ก.พ. 22
2216