123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 |
- <?php
- /**
- * 虚拟商品购买行为
- *
-
- */
- defined('InShopNC') or exit('Access Invalid!');
- require_once(BASE_HELPER_PATH . '/account_helper.php');
- class buy_virtualLogic
- {
- /**
- * 虚拟商品购买第一步,得到购买数据(商品、店铺、会员)
- * @param int $goods_id 商品ID
- * @param int $quantity 购买数量
- * @param int $member_id 会员ID
- * @return array
- */
- public function getBuyStep1Data($goods_id, $quantity, $member_id) {
- return $this->getBuyStepData($goods_id, $quantity, $member_id);
- }
- /**
- * 虚拟商品购买第二步,得到购买数据(商品、店铺、会员)
- * @param int $goods_id 商品ID
- * @param int $quantity 购买数量
- * @param int $member_id 会员ID
- * @return array
- */
- public function getBuyStep2Data($goods_id, $quantity, $member_id) {
- return $this->getBuyStepData($goods_id, $quantity, $member_id);
- }
- /**
- * 得到虚拟商品购买数据(商品、店铺、会员)
- * @param int $goods_id 商品ID
- * @param int $quantity 购买数量
- * @param int $member_id 会员ID
- * @return array
- */
- public function getBuyStepData($goods_id, $quantity, $member_id,$fRefill = false)
- {
- $goods_info = Model('goods')->getVirtualGoodsOnlineInfoByID($goods_id);
- if (empty($goods_info)) {
- return callback(false, '该商品不符合购买条件,可能的原因有:下架、不存在、过期等');
- }
- if ($goods_info['goods_storage'] <= 0) {
- return callback(false, '该商品库存不足');
- }
- if ($goods_info['virtual_limit'] > $goods_info['goods_storage']) {
- $goods_info['virtual_limit'] = $goods_info['goods_storage'];
- }
- if(!$fRefill) {
- //取得抢购信息
- $goods_info = $this->_getGroupbuyInfo($goods_info);
- }
- $quantity = abs(intval($quantity));
- $quantity = $quantity == 0 ? 1 : $quantity;
- $quantity = $quantity > $goods_info['virtual_limit'] ? $goods_info['virtual_limit'] : $quantity;
- if ($quantity > $goods_info['goods_storage']) {
- return callback(false, '该商品库存不足');
- }
- $goods_info['quantity'] = $quantity;
- $goods_info['goods_total'] = ncPriceFormat($goods_info['goods_price'] * $goods_info['quantity']);
- if(!$fRefill) {
- $goods_info['goods_image_url'] = cthumb($goods_info['goods_image'], 240, $goods_info['store_id']);
- }
- $return = [];
- $return['goods_info'] = $goods_info;
- $return['store_info'] = Model('store')->getStoreOnlineInfoByID($goods_info['store_id']);
- $return['member_info'] = Model('member')->getMemberInfoByID($member_id);
- return callback(true,'',$return);
- }
- /**
- * 虚拟商品购买第三步
- * @param array $post 接收POST数据,必须传入goods_id:商品ID,quantity:购买数量,buyer_phone:接收手机,buyer_msg:买家留言
- * @param int $member_id
- * @return array
- */
- public function buyStep3($post, $member_id,$calc_vorder_amount = null,$merchant = false,$use_trans = true)
- {
- $fRefill = $merchant;
- $result = $this->getBuyStepData($post['goods_id'], $post['quantity'], $member_id, $fRefill);
- if (!$result['state']) return $result;
-
- $goods_info = $result['data']['goods_info'];
- //应付总金额计算
- if(empty($calc_vorder_amount)) {
- $pay_total = $goods_info['goods_price'] * $goods_info['quantity'];
- }
- else {
- $pay_total = call_user_func($calc_vorder_amount,$goods_info);
- }
- $store_id = $goods_info['store_id'];
- $store_goods_total_list = [$store_id => $pay_total];
- $pay_total = $store_goods_total_list[$store_id];
- //整理数据
- $input = [];
- $input['quantity'] = $goods_info['quantity'];
- $input['buyer_phone'] = $post['buyer_phone'];
- $input['buyer_msg'] = $post['buyer_msg'];
- $input['pay_total'] = $pay_total;
- $input['order_from'] = $post['order_from'];
- try
- {
- $model_goods = Model('goods');
- //开始事务
- if($use_trans) {
- $trans = new trans_wapper($model_goods,__METHOD__);
- }
- $member_info = Model('member')->getMemberInfo(['member_id' => $member_id]);
- $order_info = $this->_createOrder($input,$goods_info,$member_info,$fRefill);
- if (!empty($post['password']))
- {
- if ($member_info['member_paypwd'] != '' && $member_info['member_paypwd'] == md5($post['password']))
- {
- //充值卡支付
- if (!empty($post['rcb_pay'])) {
- $order_info = $this->_rcbPay($order_info, $post, $member_info);
- }
- //预存款支付
- if (!empty($post['pd_pay'])) {
- $this->_pdPay($order_info, $post, $member_info,$fRefill);
- }
- }
- }
- elseif($merchant)
- {
- //预存款支付
- if (!empty($post['pd_pay'])) {
- $this->_pdPay($order_info, $post, $member_info,$fRefill);
- }
- }
- else {
- Log::record('',Log::DEBUG);
- }
- if($use_trans) {
- $trans->commit();
- }
- }
- catch (Exception $e)
- {
- if($use_trans) {
- $trans->rollback();
- }
-
- return callback(false, $e->getMessage());
- }
- if(!$fRefill)
- {
- //变更库存和销量
- QueueClient::push('createOrderUpdateStorage', [$goods_info['goods_id'] => $goods_info['quantity']]);
- //更新抢购信息
- $this->_updateGroupBuy($goods_info);
- //发送兑换码到手机
- $param = ['order_id'=>$order_info['order_id'],'buyer_id'=>$member_id,'buyer_phone'=>$order_info['buyer_phone']];
- QueueClient::push('sendVrCode', $param);
- }
- return callback(true,'', ['order_id' => $order_info['order_id'],'order_sn' => $order_info['order_sn']]);
- }
- /**
- * 生成订单
- * @param array $input 表单数据
- * @param unknown $goods_info 商品数据
- * @param unknown $member_info 会员数据
- * @throws Exception
- * @return array
- */
- private function _createOrder($input, $goods_info, $member_info,$fRefill)
- {
- extract($input);
- $model_vr_order = Model('vr_order');
- //存储生成的订单,函数会返回该数组
- $order = [];
- $order['order_sn'] = $this->_makeOrderSn();
- $order['store_id'] = $goods_info['store_id'];
- $order['store_name'] = $goods_info['store_name'];
- $order['buyer_id'] = $member_info['member_id'];
- $order['buyer_name'] = $member_info['member_name'];
- $order['buyer_phone'] = $input['buyer_phone'];
- $order['buyer_msg'] = $input['buyer_msg'];
- $order['add_time'] = time();
- $order['order_state'] = ORDER_STATE_NEW;
- $order['order_amount'] = $pay_total;
- $order['goods_id'] = $goods_info['goods_id'];
- $order['goods_name'] = $goods_info['goods_name'];
- $order['goods_price'] = $goods_info['goods_price'];
- $order['goods_num'] = $input['quantity'];
- $order['goods_image'] = $goods_info['goods_image'];
- $order['commis_rate'] = 200;
- $order['gc_id'] = $goods_info['gc_id'];
- $order['vr_indate'] = $goods_info['virtual_indate'];
- $order['vr_invalid_refund'] = $goods_info['virtual_invalid_refund'];
- $order['order_from'] = $input['order_from'];
- if ($goods_info['ifgroupbuy'] == 1) {
- $order['order_promotion_type'] = 1;
- $order['promotions_id'] = $goods_info['groupbuy_id'];
- }
- $order_id = $model_vr_order->addOrder($order);
- if (!$order_id) {
- throw new Exception('订单保存失败');
- }
- $order['order_id'] = $order_id;
- if ($fRefill) return $order;
- // 提醒[库存报警]
- if ($goods_info['goods_storage_alarm'] >= ($goods_info['goods_storage'] - $input['quantity'])) {
- $param = [];
- $param['common_id'] = $goods_info['goods_commonid'];
- $param['sku_id'] = $goods_info['goods_id'];
- QueueClient::push('sendStoreMsg', ['code' => 'goods_storage_alarm', 'store_id' => $goods_info['store_id'], 'param' => $param]);
- }
- return $order;
- }
- /**
- * 生成支付单编号(两位随机 + 从2000-01-01 00:00:00 到现在的秒数+微秒+会员ID%1000),该值会传给第三方支付接口
- * 长度 =2位 + 10位 + 3位 + 3位 = 18位
- * 1000个会员同一微秒提订单,重复机率为1/100
- * @return string
- */
- private function _makeOrderSn()
- {
- static $prime_num = [11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97];
- $pos = mt_rand(0,count($prime_num) - 1);
- $factor = $prime_num[$pos];
- $prefix = (getmypid() * $factor) % 1000;
- return sprintf('%03d', $prefix)
- . sprintf('%03d', mt_rand(100,999))
- . sprintf('%010d', time() - 946656000)
- . sprintf('%06d', (float)microtime() * 1000000);
- }
- /**
- * 更新抢购购买人数和数量
- */
- private function _updateGroupBuy($goods_info) {
- if ($goods_info['ifgroupbuy'] && $goods_info['groupbuy_id']) {
- $groupbuy_info = array();
- $groupbuy_info['groupbuy_id'] = $goods_info['groupbuy_id'];
- $groupbuy_info['quantity'] = $goods_info['quantity'];
- QueueClient::push('editGroupbuySaleCount', $groupbuy_info);
- }
- }
- /**
- * 充值卡支付
- * 如果充值卡足够就单独支付了该订单,如果不足就暂时冻结,等API支付成功了再彻底扣除
- */
- private function _rcbPay($order_info, $input, $buyer_info)
- {
- $available_rcb_amount = floatval($buyer_info['available_rc_balance']);
- if ($available_rcb_amount <= 0) return false;
- $model_vr_order = Model('vr_order');
- $model_pd = Model('predeposit');
- $order_amount = floatval($order_info['order_amount']);
- $data_pd = [];
- $data_pd['member_id'] = $buyer_info['member_id'];
- $data_pd['member_name'] = $buyer_info['member_name'];
- $data_pd['amount'] = $order_amount;
- $data_pd['order_sn'] = $order_info['order_sn'];
- if ($available_rcb_amount >= $order_amount)
- {
- // 预存款立即支付,订单支付完成
- $model_pd->changeRcb('order_pay',$data_pd);
- $available_rcb_amount -= $order_amount;
-
- // 订单状态 置为已支付
- $data_order = [];
- $order_info['order_state'] = $data_order['order_state'] = ORDER_STATE_PAY;
- $data_order['payment_time'] = time();
- $data_order['payment_code'] = 'predeposit';
- $data_order['rcb_amount'] = $order_info['order_amount'];
- $result = $model_vr_order->editOrder($data_order, ['order_id'=>$order_info['order_id']]);
- if (!$result) {
- throw new Exception('订单更新失败');
- }
- //发放兑换码
- $insert = $model_vr_order->addOrderCode($order_info);
- if (!$insert) {
- throw new Exception('兑换码发送失败');
- }
- }
- else {
- //暂冻结预存款,后面还需要 API彻底完成支付
- $data_pd['amount'] = $available_rcb_amount;
- $model_pd->changeRcb('order_freeze',$data_pd);
- //预存款支付金额保存到订单
- $data_order = [];
- $order_info['rcb_amount'] = $data_order['rcb_amount'] = $available_rcb_amount;
- $result = $model_vr_order->editOrder($data_order, ['order_id'=>$order_info['order_id']]);
- if (!$result) {
- throw new Exception('订单更新失败');
- }
- }
- return $order_info;
- }
- /**
- * 预存款支付
- * 如果预存款足够就单独支付了该订单,如果不足就暂时冻结,等API支付成功了再彻底扣除
- */
- private function _pdPay($order_info, $input, $buyer_info,$fRefill=false)
- {
- if ($order_info['order_state'] == ORDER_STATE_PAY) return false;
- $available_pd_amount = floatval($buyer_info['available_predeposit']);
- if ($available_pd_amount <= 0) return false;
- $model_vr_order = Model('vr_order');
- $model_pd = Model('predeposit');
- $order_amount = floatval($order_info['order_amount'])-floatval($order_info['rcb_amount']);
- $data_pd = [];
- $data_pd['member_id'] = $buyer_info['member_id'];
- $data_pd['member_name'] = $buyer_info['member_name'];
- $data_pd['amount'] = $order_amount;
- $data_pd['order_sn'] = $order_info['order_sn'];
- if ($available_pd_amount >= $order_amount)
- {
- //预存款立即支付,订单支付完成
- $model_pd->changePd('order_pay',$data_pd,$fRefill);
- //下单,支付被冻结的充值卡
- $pd_amount = floatval($order_info['rcb_amount']);
- if ($pd_amount > 0) {
- $data_pd = [];
- $data_pd['member_id'] = $buyer_info['member_id'];
- $data_pd['member_name'] = $buyer_info['member_name'];
- $data_pd['amount'] = $pd_amount;
- $data_pd['order_sn'] = $order_info['order_sn'];
- $model_pd->changeRcb('order_comb_pay',$data_pd);
- }
- // 订单状态 置为已支付
- $data_order = [];
- $data_order['order_state'] = ORDER_STATE_PAY;
- $data_order['payment_time'] = time();
- $data_order['payment_code'] = 'predeposit';
- $data_order['pd_amount'] = $order_amount;
- $result = $model_vr_order->editOrder($data_order, ['order_id'=>$order_info['order_id']]);
- if (!$result) {
- throw new Exception('订单更新失败');
- }
- //发放兑换码
- if(!$fRefill) {
- $model_vr_order->addOrderCode($order_info);
- }
- }
- else {
- //暂冻结预存款,后面还需要API彻底完成支付
- $data_pd['amount'] = $available_pd_amount;
- $model_pd->changePd('order_freeze',$data_pd,$fRefill);
- //预存款支付金额保存到订单
- $data_order = [];
- $data_order['pd_amount'] = $available_pd_amount;
- $result = $model_vr_order->editOrder($data_order, ['order_id'=>$order_info['order_id']]);
- if (!$result) {
- throw new Exception('订单更新失败');
- }
- }
- return true;
- }
- /**
- * 取得抢购信息
- * @param array $goods_info
- * @return array
- */
- private function _getGroupbuyInfo($goods_info = []) {
- if (!C('groupbuy_allow') || empty($goods_info) || !is_array($goods_info)) return $goods_info;
-
- $groupbuy_info = Model('groupbuy')->getGroupbuyInfoByGoodsCommonID($goods_info['goods_commonid']);
- if (empty($groupbuy_info)) return $goods_info;
- // 虚拟抢购数量限制
- if ($groupbuy_info['upper_limit'] > 0 && $groupbuy_info['upper_limit'] < $goods_info['virtual_limit']) {
- $goods_info['virtual_limit'] = $groupbuy_info['upper_limit'];
- }
- $goods_info['goods_price'] = $groupbuy_info['groupbuy_price'];
- $goods_info['groupbuy_id'] = $groupbuy_info['groupbuy_id'];
- $goods_info['ifgroupbuy'] = true;
-
- return $goods_info;
- }
- }
|