OrderFromList.php 767 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace addon\cashier\event;
  11. use addon\cashier\model\order\CashierOrder;
  12. /**
  13. * 订单来源
  14. */
  15. class OrderFromList
  16. {
  17. /**
  18. * 订单来源
  19. */
  20. public function handle($params)
  21. {
  22. $order_scene = $params[ 'order_scene' ] ?? '';
  23. if (empty($order_scene) || $order_scene = 'cashier') {
  24. return ( new CashierOrder )->order_from_list;
  25. }
  26. }
  27. }