| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <?php
- namespace shop\controllers;
- use biz\merchant\services\MerchantAssetService;
- use biz\merchant\services\MerchantExtendService;
- use biz\merchant\services\MerchantService;
- use biz\merchant\services\ShopService;
- use biz\order\classes\OrderSendClass;
- use biz\order\services\OrderService;
- use biz\saas\services\RegionService;
- use biz\user\services\UserService;
- use common\components\configDict;
- use common\services\xhPayToolService;
- use Yii;
- use common\components\util;
- use common\components\stringUtil;
- class OrderController extends BaseController
- {
-
- public function actionList()
- {
- $get = Yii::$app->request->get();
- $search = isset($get['search']) ? $get['search'] : '';
- $where = [];
- $where['merchantId'] = $this->merchantId;
- if (isset($get['status']) && $get['status'] != -1) {
- $where['status'] = $get['status'];
- }
- if (!empty($search)) {
- if (stringUtil::isMobile($search)) {
- $where['receiveMobile'] = $search;
- } else {
- $where['id'] = $search;
- }
- }
- $list = OrderService::getOrderList($where);
- $list['asset'] = MerchantAssetService::getByMerchantId($this->merchantId);
- util::success($list);
- }
-
- //订单详情 shish 2019.12.16
- public function actionDetail()
- {
- $id = Yii::$app->request->get('id');
- $detail = OrderService::getOrderById($id);
- util::success($detail);
- }
-
- //订单归类 shish 2019.12.17
- public function actionClassify()
- {
- $post = Yii::$app->request->post();
- $id = isset($post['id']) ? $post['id'] : 0;
- $order = OrderService::getById($id);
- OrderService::valid($order, $this->merchantId);
- $categoryId = isset($post['categoryId']) ? $post['categoryId'] : $post['categoryId'];
- $usageId = isset($post['usageId']) ? $post['usageId'] : $post['usageId'];
- OrderService::classify($id, $categoryId, $usageId);
- util::complete();
- }
-
- //更新配送单 shish 2019.12.17
- public function actionUpdateSheet()
- {
- $post = Yii::$app->request->post();
- $id = isset($post['id']) ? $post['id'] : 0;
- unset($post['id']);
- $order = OrderService::getById($id);
- OrderService::valid($order, $this->merchantId);
- OrderService::updateSheet($order, $post);
- util::complete('提交成功');
- }
-
- //商家收款与发货 shish 2019.12.18
- public function actionGathering()
- {
- $post = Yii::$app->request->post();
- $price = isset($post['price']) && is_numeric($post['price']) ? $post['price'] : 0;
- $payWay = isset($post['payWay']) && is_numeric($post['payWay']) ? $post['payWay'] : 0;
- $userId = isset($post['userId']) ? $post['userId'] : 0;
- $userInfo = UserService::getById($userId);
- if (empty($userInfo) || $userInfo['merchantId'] != $this->merchantId) {
- util::fail('您选择的客户无效');
- }
- if ($price <= 0) {
- util::fail('请输入金额');
- }
- $post['prePrice'] = $price;
- $post['actPrice'] = $price;
- $post['payWay'] = $payWay;
- $post['sourceType'] = 1;
- $post['userId'] = $userId;
- $post['goodsNum'] = 1;
- $post['orderName'] = '商品';
- $shopId = MerchantService::getDefaultShopId($this->merchant);
- $post['shopId'] = $shopId;
- $order = OrderService::addOrder($post);
- $id = $order['id'];
- $orderSn = $order['orderSn'];
-
- //流水类型列表
- $capitalTypeList = configDict::getConfig('capitalType');
- $capitalType = $capitalTypeList['xhOrder']['id'];
- $callbackParams = [];
- switch ($payWay) {
- case 0:
- xhPayToolService::weixinPay($callbackParams, $orderSn, $price, $capitalType, 0);
- break;
- case 1:
- xhPayToolService::alipay($callbackParams, $orderSn, $price, $capitalType, 0, []);
- break;
- case 2:
- xhPayToolService::balancePay($callbackParams, $orderSn, $price, $capitalType, 0);
- break;
- default:
- util::fail('无效支付方式');
- }
- util::success($order);
- }
-
- //免发货管理 shish 2020.1.6
- public function actionWithoutSend()
- {
- $id = Yii::$app->request->get('id');
- $order = OrderService::getById($id);
- OrderService::valid($order, $this->merchantId);
- //配送流程变更
- $currentFlow = OrderSendClass::withoutSend($order);
- util::success(['currentFlow' => $currentFlow]);
- }
-
- //修改价格 shish 2020.1.6
- public function actionUpdatePrice()
- {
- $id = Yii::$app->request->get('id');
- $price = Yii::$app->request->get('price', 1);
- $order = OrderService::getById($id);
- OrderService::valid($order, $this->merchantId);
- if (isset($order['modPrice']) && $order['modPrice'] == 0) {
- util::fail('已发起支付,不能修改价格');
- }
- OrderService::updateById($id, ['actPrice' => $price]);
- util::complete('修改成功');
- }
-
- //下单要用到的相关信息 shish 2019.12.6
- public function actionOrderRelate()
- {
- $regionTree = RegionService::tree();
- $shop = ShopService::getDefaultShop($this->merchant);
- $freight = MerchantExtendService::getFreight($this->merchantExtend);
- $mapKey = 'OFWBZ-2NTHP-EHNDD-LKWQY-GANM7-PXBJH';
- $out = ['freight' => $freight, 'shop' => $shop, 'region' => $regionTree, 'txMapKey' => $mapKey, 'merchant' => $this->merchant];
- util::success($out);
- }
-
- //配送单 shish 2020.2.29
- public function actionGetDeliverDetail()
- {
- $id = Yii::$app->request->get('id', 0);
- $order = OrderService::getById($id);
- OrderService::valid($order, $this->merchantId);
- $data = [
- 'reachDate' => '2020-2-29 上午',
- 'orderSn' => '200225174930123621254374243185',
- 'receiveUserName' => '阿梅',
- 'receiveMobile' => '15280215347',
- 'receiveFullAddress' => '福建省厦门市思明区上湖社126号206室',
- 'cardInfo' => '我爱你,宝贝',
- 'bookMobile' => '17189513228',
- 'bookName' => '阿宽',
- 'remark' => '最迟下午要帮送,亲自给本人',
- 'sendNum' => 653,
- 'telephone' => 17189513228,
- 'printTime' => '2020-3-7 18:09',
- 'img' => 'http://img.huaml.com/example/goods/1.jpg',
- ];
- util::success($data);
- }
-
- }
|