| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 | <?phpnamespace app\api\controller;use app\common\model\UserCoupon;use app\common\model\Carts;use app\common\model\Order as OrderModel;use app\common\model\Address;use app\common\model\Third;use app\common\model\OrderAction;use app\common\model\OrderGoods;use app\common\library\KdApiExpOrder;use think\Db;/** * 订单接口 */class Order extends Base{    protected $noNeedLogin = [];    //计算邮费,判断商品    public function carts()    {        $config = get_addon_config('shop');        $cart_ids = $this->request->post('ids');        $address_id = $this->request->post('address_id/d'); //地址id        if (empty($cart_ids)) {            $this->error('参数缺失');        }        $user_coupon_id = $this->request->post('user_coupon_id/d'); //优惠券        $address = Address::get($address_id);        $orderInfo = [            'order_sn'    => '',            'amount'      => 0, //订单金额(包含运费)            'shippingfee' => 0, //运费            'goodsprice'  => 0 //商品金额        ];        $goodsList = [];        $area_id = !empty($address) ? $address->area_id : 0;        try {            list($orderItem, $goodsList) = OrderModel::computeCarts($orderInfo, $cart_ids, $this->auth->id, $area_id, $user_coupon_id);            if (empty($goodsList)) {                throw new \Exception("未找到商品");            }        } catch (\Exception $e) {            $this->error($e->getMessage());        }        foreach ($goodsList as $item) {            $item->category_id = $item->goods->category_id;            $item->brand_id = $item->goods->brand_id;            $item->goods->visible(explode(',', 'id,title,image,price,marketprice'));        }        //获取我的可以使用的优惠券        $goods_ids = array_column($goodsList, 'goods_id');        $category_ids = array_column($goodsList, 'category_id');        $brand_ids = array_column($goodsList, 'brand_id');        $this->success('获取成功', [            'coupons'          => UserCoupon::myGoodsCoupon($this->auth->id, $goods_ids, $category_ids, $brand_ids),            'goods_list'       => $goodsList,            'order_info'       => $orderInfo,            'couponTotalPrice' => floatval(!isset($config['shippingfeecoupon']) || $config['shippingfeecoupon'] == 0 ? $orderInfo['goodsprice'] : $orderInfo['amount'])        ]);    }    //提交订单    public function add()    {        $cart_ids = $this->request->post('ids');        $address_id = $this->request->post('address_id/d'); //地址id        $user_coupon_id = $this->request->post('user_coupon_id/d'); //地址id        $memo = $this->request->post('memo');        if (empty($address_id)) {            $this->error('请选择地址');        }        if (empty($cart_ids)) {            $this->error('请选择商品');        }        //为购物车id        //校验购物车id 合法        $row = (new Carts)->where('id', 'IN', $cart_ids)->where('user_id', '<>', $this->auth->id)->find();        if ($row) {            $this->error('存在不合法购物车数据');        }        $order = null;        try {            $order = OrderModel::createOrder($address_id, $this->auth->id, $cart_ids, $user_coupon_id, $memo);        } catch (\Exception $e) {            $this->error($e->getMessage());        }        $this->success('下单成功!', array_intersect_key($order->toArray(), array_flip(['order_sn', 'paystate'])));    }    //订单详情    public function detail()    {        $order_sn = $this->request->param('order_sn');        if (empty($order_sn)) {            $this->error('参数缺失');        }        $order = OrderModel::getDetail($order_sn, $this->auth->id);        if (empty($order)) {            $this->error('未找到订单');        }        if (OrderModel::isExpired($order_sn)) {            $this->error("订单已经失效");        }        $order->append(['status_text']);        $order->hidden(explode(',', 'method,transactionid,updatetime,deletetime'));        $order->expiretime = $order->expiretime - time();        $this->success('', $order);    }    //订单列表    public function index()    {        $param = $this->request->param();        $param['user_id'] = $this->auth->id;        $list = OrderModel::tableList($param);        foreach ($list as $item) {            $item->append(['status_text']);            $field = 'id,order_sn,amount,expressno,expressname,saleamount,shippingfee,paystate,orderstate,shippingstate,order_goods,status,status_text';            $item->visible(explode(',', $field));        }        $this->success('获取成功', $list);    }    //取消订单    public function cancel()    {        $order_sn = $this->request->post('order_sn');        if (!$order_sn) {            $this->error('参数错误');        }        $order = OrderModel::getByOrderSn($order_sn);        if (empty($order)) {            $this->error('订单不存在');        }        if ($order->user_id != $this->auth->id) {            $this->error('不能越权操作');        }        if ($order->status == 'hidden') {            $this->error('订单已失效!');        }        //可以取消        if (!$order->paystate && !$order->orderstate) {            // 启动事务            Db::startTrans();            try {                $order->orderstate = 1;                $order->canceltime = time();                $order->save();                foreach ($order->order_goods as $item) {                    $sku = $item->sku;                    $goods = $item->goods;                    //商品库存恢复                    if ($sku) {                        $sku->setInc('stocks', $item->nums);                    }                    if ($goods) {                        $goods->setInc('stocks', $item->nums);                    }                }                //恢复优惠券                UserCoupon::resetUserCoupon($order->user_coupon_id, $order->order_sn);                // 提交事务                Db::commit();            } catch (\Exception $e) {                // 回滚事务                Db::rollback();                $this->error('订单取消失败');            }            //记录操作            OrderAction::push($order->order_sn, '系统', '订单取消成功');            $this->success('订单取消成功!', $order['status']);        } else {            $this->error('订单不允许取消');        }    }    //订单支付    public function pay()    {        $order_sn = $this->request->post('order_sn');        $paytype = $this->request->post('paytype');        $method = $this->request->post('method');        $appid = $this->request->post('appid'); //为APP的应用id        $returnurl = $this->request->post('returnurl', '', 'trim');        $openid = $this->request->post('openid', '', null);        $logincode = $this->request->post('logincode', '', null);        $orderInfo = OrderModel::getByOrderSn($order_sn);        if (!$orderInfo) {            $this->error("未找到指定的订单");        }        if ($orderInfo['paystate']) {            $this->error("订单已经支付,请勿重复支付");        }        if (OrderModel::isExpired($order_sn)) {            $this->error("订单已经失效");        }        //如果有传递logincode,则直接使用code换openid        if (!$openid && $logincode) {            $json = (new \addons\shop\library\Wechat\Service())->getWechatSession($logincode);            $openid = $json['openid'] ?? $openid;        }        //必须传递openid        if (in_array($method, ['miniapp', 'mp', 'mini']) && !$openid) {            $this->error("未找到第三方用户信息", 'bind');        }        $response = null;        try {            $response = OrderModel::pay($order_sn, $this->auth->id, $paytype, $method, $openid, '', $returnurl);        } catch (\Exception $e) {            $this->error($e->getMessage());        }        $this->success("请求成功", $response);    }    //确认收货    public function takedelivery()    {        $order_sn = $this->request->post('order_sn');        if (!$order_sn) {            $this->error('参数错误');        }        $order = OrderModel::getByOrderSn($order_sn);        if (empty($order)) {            $this->error('订单不存在');        }        if ($order->user_id != $this->auth->id) {            $this->error('不能越权操作');        }        if ($order->status == 'hidden') {            $this->error('订单已失效!');        }        if ($order->paystate == 1 && !$order->orderstate && $order->shippingstate == 1) {            $order->shippingstate = 2;            $order->receivetime = time();            $order->save();            //记录操作            OrderAction::push($order->order_sn, '系统', '订单确认收货成功');            $this->success('确认收货成功');        }        $this->error('未可确认收货');    }    //查询物流    public function logistics()    {        $order_sn = $this->request->param('order_sn');        if (empty($order_sn)) {            $this->error('参数缺失');        }        $order = OrderModel::getDetail($order_sn, $this->auth->id);        if (empty($order)) {            $this->error('未找到订单');        }        if (!$order->shippingstate) {            $this->error('订单未发货');        }        $electronics = Db::name('shop_order_electronics')->where('order_sn', $order_sn)->where('status', 0)->find();        if (!$electronics) {            $this->error('订单未发货');        }        $result = KdApiExpOrder::getLogisticsQuery([            'order_sn'      => $order_sn,            'logistic_code' => $electronics['logistic_code'],            'shipper_code'  => $electronics['shipper_code']        ]);        if ($result['Success']) {            $this->success('查询成功', $result['Traces']);        }        $this->error('查询失败');    }}
 |