fix: cal_exp_duration_sec 还需要更新时间为None3

This commit is contained in:
zty 2024-08-06 19:00:38 +08:00
parent 1fe8c7ae76
commit 314b614c53
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ def cal_exp_duration_sec(stlogId: str='', all=False, now: datetime=None):
if now is None:
now = timezone.now()
for stlog in stlogs:
if stlog.duration_sec is None and stlog.end_time is not None:
if stlog.duration_sec is None and stlog.end_time:
stlog.duration_sec = (stlog.end_time-stlog.start_time).total_seconds()
stlog.save()
is_shutdown_stlog = True