|
@@ -24,8 +24,7 @@ class Chuyutimedtask extends Api
|
|
|
{
|
|
|
// 如果$noNeedLogin为空表示所有接口都需要登录才能请求 无需登录的接口,*表示全部
|
|
|
/* *可以通过@ApiInternal忽略请求的方法
|
|
|
- * @ApiInternal
|
|
|
-
|
|
|
+ * @ApiInternal
|
|
|
* */
|
|
|
|
|
|
protected $noNeedLogin = ['*'];
|
|
@@ -146,103 +145,104 @@ class Chuyutimedtask extends Api
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 账单未支付提醒 -- 发给配送员和回收员
|
|
|
+ * 账单未支付提醒 -- 发给配送员和回收员---需求更改已删除
|
|
|
+ * @ApiInternal
|
|
|
*/
|
|
|
- public function OrderUnpaid()
|
|
|
- {
|
|
|
- // 读取超时时限
|
|
|
- $order_recovery_overtime = !empty(config('site.bill_unpaid_overtime')) ? config('site.bill_unpaid_overtime') : 360;
|
|
|
- $overtime = time() - $order_recovery_overtime * 3600;
|
|
|
-
|
|
|
- // 回收月结账单
|
|
|
- $recovery_bill_model = new RecoveryBill();
|
|
|
- $recovery_bill = $recovery_bill_model->alias('b')
|
|
|
- ->join('user u', 'b.c_user_id = u.id')
|
|
|
- ->field('b.id,b.c_user_id,u.mobile,b.order_no')
|
|
|
- ->where('b.status', '=', 1)
|
|
|
- ->where('b.pay_timeout', '=', 0)
|
|
|
- ->where('b.createtime', '<=', $overtime)
|
|
|
- ->select();
|
|
|
- //var_dump($recovery_bill);exit();
|
|
|
- if (count($recovery_bill) != 0) {
|
|
|
- $ids = [];
|
|
|
-// $mobiles = [];
|
|
|
+// public function OrderUnpaid()
|
|
|
+// {
|
|
|
+// // 读取超时时限
|
|
|
+// $order_recovery_overtime = !empty(config('site.bill_unpaid_overtime')) ? config('site.bill_unpaid_overtime') : 360;
|
|
|
+// $overtime = time() - $order_recovery_overtime * 3600;
|
|
|
+//
|
|
|
+// // 回收月结账单
|
|
|
+// $recovery_bill_model = new RecoveryBill();
|
|
|
+// $recovery_bill = $recovery_bill_model->alias('b')
|
|
|
+// ->join('user u', 'b.c_user_id = u.id')
|
|
|
+// ->field('b.id,b.c_user_id,u.mobile,b.order_no')
|
|
|
+// ->where('b.status', '=', 1)
|
|
|
+// ->where('b.pay_timeout', '=', 0)
|
|
|
+// ->where('b.createtime', '<=', $overtime)
|
|
|
+// ->select();
|
|
|
+// //var_dump($recovery_bill);exit();
|
|
|
+// if (count($recovery_bill) != 0) {
|
|
|
+// $ids = [];
|
|
|
+//// $mobiles = [];
|
|
|
+//// foreach ($recovery_bill as $k => $row) {
|
|
|
+//// $mobiles[] = $row['mobile'];
|
|
|
+//// $ids[] = $row['id'];
|
|
|
+//// }
|
|
|
+//
|
|
|
+// //SMS_262525727、亲爱的“餐厨宝”会员,您的${name}账单已发送至您的微信小程序支付界面,请您尽快前往确认并支付,感谢您的支持!
|
|
|
+// $TemplateCode = "SMS_262525727";
|
|
|
// foreach ($recovery_bill as $k => $row) {
|
|
|
-// $mobiles[] = $row['mobile'];
|
|
|
-// $ids[] = $row['id'];
|
|
|
+// $phoneNumber = $row['mobile'];
|
|
|
+// $TemplateParam = json_encode(['name' => $row['order_no']]);
|
|
|
+// $is_success = $this->SmsTemplate($TemplateCode, $phoneNumber, $TemplateParam);
|
|
|
+//
|
|
|
+// if ($is_success) {
|
|
|
+// $ids[] = $row['id'];
|
|
|
+// }
|
|
|
+// // todo add else log
|
|
|
// }
|
|
|
-
|
|
|
- //SMS_262525727、亲爱的“餐厨宝”会员,您的${name}账单已发送至您的微信小程序支付界面,请您尽快前往确认并支付,感谢您的支持!
|
|
|
- $TemplateCode = "SMS_262525727";
|
|
|
- foreach ($recovery_bill as $k => $row) {
|
|
|
- $phoneNumber = $row['mobile'];
|
|
|
- $TemplateParam = json_encode(['name' => $row['order_no']]);
|
|
|
- $is_success = $this->SmsTemplate($TemplateCode, $phoneNumber, $TemplateParam);
|
|
|
-
|
|
|
- if ($is_success) {
|
|
|
- $ids[] = $row['id'];
|
|
|
- }
|
|
|
- // todo add else log
|
|
|
- }
|
|
|
-
|
|
|
-// var_dump($ids);
|
|
|
-
|
|
|
- if (count($ids) > 0) {
|
|
|
- $data = [
|
|
|
- 'pay_timeout' => 1,
|
|
|
- ];
|
|
|
- $where['id'] = ['in', $ids];
|
|
|
- $recovery_bill_model->isUpdate(true, $where)->save($data);
|
|
|
-
|
|
|
- echo(__('发送成功'));
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- //餐具月结账单
|
|
|
- $tableware_bill_model = new TablewareBill();
|
|
|
- $tableware_bill = $tableware_bill_model->alias('b')
|
|
|
- ->join('user u', 'b.c_user_id = u.id')
|
|
|
- ->field('b.id,b.c_user_id,u.mobile,b.order_no')
|
|
|
- ->where('b.status', '=', 1)
|
|
|
- ->where('b.pay_timeout', '=', 0)
|
|
|
- ->where('b.createtime', '<=', $overtime)
|
|
|
- ->select();
|
|
|
-
|
|
|
- if (count($tableware_bill) != 0) {
|
|
|
- $ids = [];
|
|
|
-// $mobiles = [];
|
|
|
+//
|
|
|
+//// var_dump($ids);
|
|
|
+//
|
|
|
+// if (count($ids) > 0) {
|
|
|
+// $data = [
|
|
|
+// 'pay_timeout' => 1,
|
|
|
+// ];
|
|
|
+// $where['id'] = ['in', $ids];
|
|
|
+// $recovery_bill_model->isUpdate(true, $where)->save($data);
|
|
|
+//
|
|
|
+// echo(__('发送成功'));
|
|
|
+// }
|
|
|
+// }
|
|
|
+//
|
|
|
+// //餐具月结账单
|
|
|
+// $tableware_bill_model = new TablewareBill();
|
|
|
+// $tableware_bill = $tableware_bill_model->alias('b')
|
|
|
+// ->join('user u', 'b.c_user_id = u.id')
|
|
|
+// ->field('b.id,b.c_user_id,u.mobile,b.order_no')
|
|
|
+// ->where('b.status', '=', 1)
|
|
|
+// ->where('b.pay_timeout', '=', 0)
|
|
|
+// ->where('b.createtime', '<=', $overtime)
|
|
|
+// ->select();
|
|
|
+//
|
|
|
+// if (count($tableware_bill) != 0) {
|
|
|
+// $ids = [];
|
|
|
+//// $mobiles = [];
|
|
|
+//// foreach ($tableware_bill as $k => $row) {
|
|
|
+//// $mobiles[] = $row['mobile'];
|
|
|
+//// $ids[] = $row['id'];
|
|
|
+//// }
|
|
|
+//
|
|
|
+//// $msg = "有餐具月结账单未支付,请及时催收";
|
|
|
+//// $template = 1;
|
|
|
+//// $ret = Smslib::notice($mobiles, $msg, $template);
|
|
|
+//
|
|
|
+// $TemplateCode = "SMS_262525727";
|
|
|
// foreach ($tableware_bill as $k => $row) {
|
|
|
-// $mobiles[] = $row['mobile'];
|
|
|
-// $ids[] = $row['id'];
|
|
|
+// $phoneNumber = $row['mobile'];
|
|
|
+// $TemplateParam = json_encode(['name' => $row['order_no']]);
|
|
|
+// $is_success = $this->SmsTemplate($TemplateCode, $phoneNumber, $TemplateParam);
|
|
|
+//
|
|
|
+// if ($is_success) {
|
|
|
+// $ids[] = $row['id'];
|
|
|
+// }
|
|
|
+// // todo add else log
|
|
|
// }
|
|
|
-
|
|
|
-// $msg = "有餐具月结账单未支付,请及时催收";
|
|
|
-// $template = 1;
|
|
|
-// $ret = Smslib::notice($mobiles, $msg, $template);
|
|
|
-
|
|
|
- $TemplateCode = "SMS_262525727";
|
|
|
- foreach ($tableware_bill as $k => $row) {
|
|
|
- $phoneNumber = $row['mobile'];
|
|
|
- $TemplateParam = json_encode(['name' => $row['order_no']]);
|
|
|
- $is_success = $this->SmsTemplate($TemplateCode, $phoneNumber, $TemplateParam);
|
|
|
-
|
|
|
- if ($is_success) {
|
|
|
- $ids[] = $row['id'];
|
|
|
- }
|
|
|
- // todo add else log
|
|
|
- }
|
|
|
-
|
|
|
- if (count($ids) > 0) {
|
|
|
- $data_tableware_bill = [
|
|
|
- 'pay_timeout' => 1,
|
|
|
- ];
|
|
|
- $where_tableware_bill['id'] = ['in', $ids];
|
|
|
- $tableware_bill_model->isUpdate(true, $where_tableware_bill)->save($data_tableware_bill);
|
|
|
-
|
|
|
- echo(__('发送成功'));
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+//
|
|
|
+// if (count($ids) > 0) {
|
|
|
+// $data_tableware_bill = [
|
|
|
+// 'pay_timeout' => 1,
|
|
|
+// ];
|
|
|
+// $where_tableware_bill['id'] = ['in', $ids];
|
|
|
+// $tableware_bill_model->isUpdate(true, $where_tableware_bill)->save($data_tableware_bill);
|
|
|
+//
|
|
|
+// echo(__('发送成功'));
|
|
|
+// }
|
|
|
+// }
|
|
|
+// }
|
|
|
|
|
|
|
|
|
/**
|