promotion_type = 'topic'; $this->promotion_type_name = '专题'; } /** * 订单创建 */ public function create() { //计算 $this->confirm(); if ($this->error > 0) { return $this->error([ 'error_code' => $this->error ], $this->error_msg); } //订单创建数据 $order_insert_data = $this->getOrderInsertData([ 'discount' ], 'invert'); $order_insert_data[ 'store_id' ] = $this->store_id; $order_insert_data[ 'create_time' ] = time(); $order_insert_data[ 'is_enable_refund' ] = 0; //订单类型以及状态 $this->orderType(); $order_insert_data[ 'order_type' ] = $this->order_type[ 'order_type_id' ]; $order_insert_data[ 'order_type_name' ] = $this->order_type[ 'order_type_name' ]; $order_insert_data[ 'order_status_name' ] = $this->order_type[ 'order_status' ][ 'name' ]; $order_insert_data[ 'order_status_action' ] = json_encode($this->order_type[ 'order_status' ], JSON_UNESCAPED_UNICODE); model('order')->startTrans(); //循环生成多个订单 try { $this->order_id = model('order')->add($order_insert_data); $order_goods_insert_data = []; //订单项目表 foreach ($this->goods_list as &$order_goods_v) { $order_goods_insert_data[] = $this->getOrderGoodsInsertData($order_goods_v); } model('order_goods')->addList($order_goods_insert_data); //扣除余额(统一扣除) $this->useBalance(); //批量库存处理(卡密商品支付后在扣出库存) $this->batchDecOrderGoodsStock(); model('order')->commit(); //订单创建后事件 $this->orderCreateAfter(); //支付单据 $pay = new Pay(); $pay->addPay($this->site_id, $this->out_trade_no, $this->pay_type, $this->order_name, $this->order_name, $this->pay_money, '', 'OrderPayNotify', '', $this->order_id, $this->member_id); return $this->success($this->out_trade_no); } catch (\Exception $e) { model('order')->rollback(); return $this->error('', $e->getMessage()); } } /** * 计算后的进一步计算(不存缓存,每次都是重新计算) * @return array */ public function confirm() { $order_key = $this->param[ 'order_key' ]; $this->getOrderCache($order_key); //初始化地址 $this->initMemberAddress(); //初始化门店信息 $this->initStore(); //配送计算 $this->calculateDelivery(); //批量校验配送方式 $this->batchCheckDeliveryType(); //计算发票相关 $this->calculateInvoice(); //计算余额 $this->calculateBalcnce(); $this->pay_money = $this->order_money - $this->balance_money; //设置过的商品项信息 return get_object_vars($this); } /** * 订单计算 */ public function calculate() { //初始化地址 $this->initMemberAddress(); //初始化会员账户 $this->initMemberAccount(); //商品列表信息 $this->getOrderGoodsCalculate(); //查询专题信息 $topic_model = new Topic(); $this->topic_info = $topic_model->getTopicInfo([ [ 'topic_id', '=', $this->topic_id ], [ 'site_id', '=', $this->site_id ] ])[ 'data' ] ?? []; if (empty($this->topic_info)) throw new OrderException('找不到可用的专题活动!'); //判断时间段是否符合 $time = time();//当日时间戳 if ($this->topic_info[ 'status' ] != 2 || ($time < $this->topic_info[ 'start_time' ] || $time > $this->topic_info[ 'end_time' ])) { $this->error = 1; $this->error_msg = '当前商品专题活动未开启!'; } $this->shopOrderCalculate(); //获取发票相关 $this->getInovice(); $this->order_key = create_no(); $this->setOrderCache(get_object_vars($this), $this->order_key); return true; } /** * 待付款订单 */ public function orderPayment() { //计算 $this->calculate(); //配送数据 $this->getDeliveryData(); //订单初始项 event('OrderPayment', [ 'order_object' => $this ]); return get_object_vars($this); } /** * 获取商品的计算信息 */ public function getOrderGoodsCalculate() { $this->getTopicGoodsInfo(); return true; } /** * 获取专题商品信息 * @return array */ public function getTopicGoodsInfo() { $id = $this->param[ 'id' ]; $num = $this->param[ 'num' ]; //组装商品列表 $field = 'ptg.sku_id,ptg.id,ptg.topic_id,ptg.topic_price,ngs.sku_name, ngs.sku_no, ngs.price, ngs.discount_price, ngs.cost_price, ngs.stock, ngs.weight, ngs.volume, ngs.sku_image, ngs.site_id, ns.site_name, ngs.goods_state, ngs.is_virtual, ngs.support_trade_type,ngs.supplier_id,ngs.form_id, ngs.is_free_shipping, ngs.shipping_template, ngs.goods_class, ngs.goods_class_name, ngs.goods_id,ngs.sku_spec_format,ngs.goods_name'; $alias = 'ptg'; $join = [ [ 'goods_sku ngs', 'ptg.sku_id = ngs.sku_id', 'inner' ], [ 'site ns', 'ngs.site_id = ns.site_id', 'inner' ] ]; $info = model('promotion_topic_goods')->getInfo([ [ 'ptg.id', '=', $id ], [ 'ptg.site_id', '=', $this->site_id ] ], $field, $alias, $join); if (empty($info)) throw new OrderException('商品不存在!'); //判断是否是虚拟订单 if ($info[ 'is_virtual' ]) { $this->is_virtual = 1; } else { $this->is_virtual = 0; } $this->topic_id = $info[ 'topic_id' ]; $info[ 'stock' ] = numberFormat($info[ 'stock' ]); $info[ 'num' ] = $num; $price = $info[ 'topic_price' ]; $info[ 'price' ] = $price; $goods_money = $price * $info[ 'num' ]; $info[ 'goods_money' ] = $goods_money; $info[ 'real_goods_money' ] = $goods_money;//真实商品金额 $info[ 'coupon_money' ] = 0;//优惠券金额 $info[ 'promotion_money' ] = 0;//优惠金额 $this->site_name = $info[ 'site_name' ]; $this->goods_money = $goods_money; $this->goods_list_str = $info[ 'sku_id' ] . ':' . $info[ 'num' ]; $this->order_name = string_split('', ',', $info[ 'sku_name' ]); $this->goods_num = $info[ 'num' ]; $this->goods_list[] = $info; return true; } /** * 获取店铺订单计算 */ public function shopOrderCalculate() { //重新计算订单总额 $this->getOrderMoney(); //理论上是多余的操作 if ($this->order_money < 0) { $this->order_money = 0; } //总结计算 $this->pay_money = $this->order_money; return true; } }