CronOrderComplete.php 1.0 KB

1234567891011121314151617181920212223242526272829
  1. <?php
  2. // +---------------------------------------------------------------------+
  3. // | NiuCloud | [ WE CAN DO IT JUST NiuCloud ]  |
  4. // +---------------------------------------------------------------------+
  5. // | Copy right 2019-2029 www.niucloud.com  |
  6. // +---------------------------------------------------------------------+
  7. // | Author | NiuCloud <niucloud@outlook.com>  |
  8. // +---------------------------------------------------------------------+
  9. // | Repository | https://github.com/niucloud/framework.git  |
  10. // +---------------------------------------------------------------------+
  11. declare (strict_types = 1);
  12. namespace app\event;
  13. use app\model\order\OrderCommon;
  14. /**
  15. * 订单自动完成
  16. */
  17. class CronOrderComplete
  18. {
  19. // 行为扩展的执行入口必须是run
  20. public function handle($data)
  21. {
  22. $order = new OrderCommon();
  23. $res = $order->orderComplete($data["relate_id"]);//订单自动完成
  24. return $res;
  25. }
  26. }