mobile_order_unpay_notify.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. use app\common\model\MobileOrder;
  3. use app\common\service\SmsSend;
  4. use Workerman\Lib\Timer;
  5. use Workerman\Worker as WO;
  6. class MobileOrderUnPayNotify extends Com{
  7. public static function run()
  8. {
  9. $work=self::newWorker();
  10. $work->onWorkerStart=function ($conn){
  11. Timer::add(1,function (){
  12. $orders= MobileOrder::waitPay()
  13. ->where('type',1)
  14. ->where('create_time','<',time()-300)
  15. ->whereNotExists('select * from mobile_order_mind where mobile_order.id=mobile_order_mind.mobile_order_id')
  16. ->select();
  17. foreach ($orders as $order){
  18. try {
  19. $order->mind()->save([]);
  20. SmsSend::orderUnPay($order['phone'],$order['no']);
  21. }catch (\Exception $e){
  22. self::logError($e);
  23. }
  24. }
  25. });
  26. };
  27. }
  28. public static function logname(){
  29. return class_basename(__CLASS__);
  30. }
  31. }
  32. MobileOrderUnPayNotify::run();