mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-13 03:52:50 +00:00
fix: 修复新建周报或日报唯一标识重复
This commit is contained in:
parent
30b9276ab4
commit
073d03a882
@ -139,12 +139,12 @@ class Report extends AbstractModel
|
|||||||
// 如果设置了周期偏移量
|
// 如果设置了周期偏移量
|
||||||
empty( $offset ) || $now_dt->subWeeks( abs( $offset ) );
|
empty( $offset ) || $now_dt->subWeeks( abs( $offset ) );
|
||||||
$now_dt->startOfWeek(); // 设置为当周第一天
|
$now_dt->startOfWeek(); // 设置为当周第一天
|
||||||
return $now_dt->year . $now_dt->weekOfYear;
|
return now()->year . $now_dt->weekOfYear;
|
||||||
},
|
},
|
||||||
Report::DAILY => function() use ($now_dt, $offset) {
|
Report::DAILY => function() use ($now_dt, $offset) {
|
||||||
// 如果设置了周期偏移量
|
// 如果设置了周期偏移量
|
||||||
empty( $offset ) || $now_dt->subDays( abs( $offset ) );
|
empty( $offset ) || $now_dt->subDays( abs( $offset ) );
|
||||||
return $now_dt->format("Ymd");
|
return now()->format("Ymd");
|
||||||
},
|
},
|
||||||
default => "",
|
default => "",
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user