|
|
@@ -21,14 +21,16 @@ class RenewController extends BaseController
|
|
|
{
|
|
|
|
|
|
//需要续费 ssh 20240426
|
|
|
- public function actionNeed()
|
|
|
+ public function actionNeedRemind()
|
|
|
{
|
|
|
//注册满半年以上
|
|
|
|
|
|
//标记为需要续费的批发店,并且没有续费过的
|
|
|
|
|
|
//当前员工当天没有提醒过的
|
|
|
- util::success(['need' => 1]);
|
|
|
+ $currentDeadline = '2024-04-27';
|
|
|
+ $newDeadline = '2025-04-27';
|
|
|
+ util::success(['need' => 1, 'currentDeadline' => $currentDeadline, 'newDeadline' => $newDeadline]);
|
|
|
}
|
|
|
|
|
|
//当天不需要再提醒 ssh 20240426
|