| 1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Niushop商城系统 - 团队十年电商经验汇集巨献!
- * =========================================================
- * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
- * ----------------------------------------------
- * 官方网址: https://www.niushop.com
- * =========================================================
- */
- namespace addon\store\event;
- use addon\store\model\StoreOrder;
- /**
- * 添加下单用户为门店用户(todo 为兼容已存在但未完成的旧数据先保留)
- */
- class OrderPay
- {
- public function handle($order)
- {
- $store_order = new StoreOrder();
- $res = $store_order->orderPay($order);
- return $res;
- }
- }
|