123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584 |
- <?php
- namespace Home\Model;
- use Think\Model;
- /**
- * 拼团模型模型
- * @author fish
- *
- */
- class WeixinnotifyModel {
-
- public function orderBuy($order_id,$is_admin=false)
- {
-
-
- $order_info = M('lionfish_comshop_order')->where( array('order_id' => $order_id ) )->find();
-
-
- /**
- 将prepay_id 插入formid表
- 3次
- **/
- if(!empty($order_info['perpay_id']) && !$is_admin)
- {
- for($i=0;$i<3;$i++)
- {
- $member_formid_data = array();
- $member_formid_data['member_id'] = $order_info['member_id'];
- $member_formid_data['state'] = 0;
- $member_formid_data['formid'] = $order_info['perpay_id'];
- $member_formid_data['addtime'] = time();
-
- M('lionfish_comshop_member_formid')->add( $member_formid_data );
-
- }
- }
-
-
- $member_info = M('lionfish_comshop_member')->where( array('member_id' => $order_info['member_id'] ) )->find();
-
- $notify_od_data = array();
-
- $notify_od_data['username'] = $member_info['username'];
- $notify_od_data['member_id'] = $member_info['member_id'];
- $notify_od_data['avatar'] = $member_info['avatar'];
- $notify_od_data['order_time'] = time();
- $notify_od_data['order_id'] = $order_id;
- $notify_od_data['state'] = 0;
- $notify_od_data['add_time'] = time();
- $notify_od_data['order_url'] = '';
-
- M('lionfish_comshop_notify_order')->add( $notify_od_data );
-
-
-
- $order = $order_info;
-
-
-
- if($order['is_pin'] == 0)
- {
- //$share_model = load_model_class('commission');
- //$share_model->send_order_commiss_money( $order['order_id'] );
-
- //单独购买分佣
- $fenxiao_model = D('Home/Commission');//D('Home/Fenxiao');
- $community_model = D('Seller/Community');
- $supply_model = D('Seller/Supply');
-
-
- $order_goods_list = M('lionfish_comshop_order_goods')->where( array('order_id' =>$order['order_id'] ) )->select();
-
-
- $order_goods_name = "";
-
- $i_count = count($order_goods_list);
- $shipping_money = 0;
- if($order['delivery'] == 'tuanz_send')
- {
- $shipping_money = $order['shipping_fare'];
- }
- $i =1;
-
- $i =1;
-
- //sendMemberPointChange($member_id,$num, $changetype ,$remark ='', $uniacid = 0,$type='system_add', $order_id =0 ,$order_goods_id = 0)
-
- $open_buy_send_score = D('Home/Front')->get_config_by_name('open_buy_send_score');
- if( empty($open_buy_send_score) )
- {
- $open_buy_send_score = 0;
- }
-
-
-
-
- foreach($order_goods_list as $order_goods)
- {
- $order_goods_name .= $order_goods['name']." \r\n";
-
- if( $order_info['type'] != 'integral' )
- {
- $fenxiao_model->ins_member_commiss_order($order['member_id'],$order['order_id'],$order_goods['store_id'],$order_goods['order_goods_id'] );
- //$community_model->ins_head_commiss_order($order['order_id'],$order_goods['order_goods_id'] );
-
- if($i == $i_count)
- {
- $community_model->ins_head_commiss_order($order['order_id'],$order_goods['order_goods_id'], $shipping_money);
- }else{
- $community_model->ins_head_commiss_order($order['order_id'],$order_goods['order_goods_id'], 0);
- }
-
-
- $supply_model->ins_supply_commiss_order($order['order_id'],$order_goods['order_goods_id'], 0);
- }
-
- $i++;
- }
-
- //下单加入缓存S中
- $day_time = strtotime( date('Y-m-d '.'00:00:00') );
- $day_key = 'new_ordernotice_'.$day_time;
- $day_arr = S( $day_key );
- if( empty($day_arr) )
- {
- $day_arr = array();
- $day_arr[] = $order['order_id'];
- }else{
- $day_arr[] = $order['order_id'];
- }
- S($day_key, $day_arr );
-
- $opentuantitmsg = '购买成功';
- $opentuandescmsg = '订单号:'.$order['order_num_alias'].',于'.date('Y-m-d H:i:s');
-
- //$url = $this->getSiteUrl()."/index.php?s=/order/info/id/{$order[order_id]}";
-
- $shop_domain = D('Home/Front')->get_config_by_name('shop_domain');
-
- $url = $shop_domain;
-
- $wx_template_data = array();
- $wx_template_data['first'] = array('value' => '购买成功', 'color' => '#030303');
- $wx_template_data['orderMoneySum'] = array('value' => $order_info['total'], 'color' => '#030303');
- $wx_template_data['orderProductName'] = array('value' => $order_goods_name, 'color' => '#030303');
- $wx_template_data['Remark'] = array('value' => $opentuandescmsg, 'color' => '#030303');
-
-
- if($order_info['delivery'] == 'pickup' && $order_info['type'] != 'lottery')
- { //如果订单是抽奖类型,那么久暂时不修改订单的发货状态 暂时屏蔽
- //M('order')->where( array('order_id' => $order['order_id']) )->save( array('order_status_id' => 4) );
- //$this->sendPickupMsg($order['order_id']);
- }
-
- //发送小程序模板消息 : 订单 订单时间 商品名称 支付金额 温馨提示
- if( $order_info['from_type'] == 'wepro' )
- {
-
-
-
-
- $template_data = array();
- $template_data['keyword1'] = array('value' => $order_info['order_num_alias'], 'color' => '#030303');
- $template_data['keyword2'] = array('value' => date('Y-m-d H:i:s',$order_info['pay_time']), 'color' => '#030303');
- $template_data['keyword3'] = array('value' => $order_goods_name, 'color' => '#030303');
-
-
- if( $order_info['type'] == 'integral' )
- {
- $shipp_str = "";
- if( $order_info['shipping_fare'] > 0 )
- {
- $shipp_str = sprintf("%01.2f", $order_info['shipping_fare']);
- $shipp_str .= '元+';
-
- $shipp_str .= sprintf("%01.2f", $order_info['total']);
- $shipp_str .= '积分';
- }else{
- $shipp_str = sprintf("%01.2f", $order_info['total']);
- $shipp_str .= '积分';
- }
- $template_data['keyword4'] = array('value' => $shipp_str , 'color' => '#030303');
-
- }else{
-
- $order_info['total'] = $order_info['total']+$order_info['shipping_fare']-$order_info['voucher_credit']-$order_info['fullreduction_money'];
- if($order_info['total'] <= 0)
- {
- $order_info['total'] = 0;
- }
-
-
- $template_data['keyword4'] = array('value' => sprintf("%01.2f", $order_info['total']), 'color' => '#030303');
- }
-
- $template_data['keyword5'] = array('value' => '你已支付成功,商家会尽快为你发货,请耐心等待哦', 'color' => '#030303');
-
-
-
- $template_id = D('Home/Front')->get_config_by_name('weprogram_template_pay_order' );
-
-
- $pagepath = 'lionfish_comshop/pages/order/order?id='.$order['order_id'];
-
-
- $mb_subscribe = M('lionfish_comshop_subscribe')->where( array('member_id' => $order['member_id'] , 'type' => 'pay_order') )->find();
-
- //...todo
- if( !empty($mb_subscribe) )
- {
- $template_id = D('Home/Front')->get_config_by_name('weprogram_subtemplate_pay_order');
-
- $order_goods_name2 = mb_substr($order_goods_name,0,20,'utf-8');
-
- $order_goods_name2 = mb_substr( $order_goods_name2,0,10,'utf-8');
-
- $template_data = array();
- $template_data['character_string1'] = array('value' => $order_info['order_num_alias'] );
- $template_data['date2'] = array('value' => date('Y-m-d H:i:s') );
- $template_data['thing3'] = array('value' => $order_goods_name2 );
- $template_data['amount4'] = array('value' => sprintf("%01.2f", $order_info['total']) );
- $template_data['thing7'] = array('value' => '商家会尽快为你发货,请耐心等待哦' );
-
- D('Seller/User')->send_subscript_msg( $template_data,$url,$pagepath,$member_info['we_openid'],$template_id );
-
- M('lionfish_comshop_subscribe')->where( array('id' => $mb_subscribe['id'] ) )->delete();
-
- }
-
-
- $wx_template_data = array();
- $weixin_appid = D('Home/Front')->get_config_by_name('weixin_appid');
- $weixin_template_pay_order = D('Home/Front')->get_config_by_name('weixin_template_pay_order');
-
- if( !empty($weixin_appid) && !empty($weixin_template_pay_order) )
- {
- $wx_template_data = array(
- 'appid' => $weixin_appid,
- 'template_id' => $weixin_template_pay_order,
- 'pagepath' => $pagepath,
- 'data' => array(
- 'first' => array('value' => '你已支付成功.>>查看订单详情','color' => '#030303'),
- 'keyword1' => array('value' => $member_info['username'],'color' => '#030303'),
- 'keyword2' => array('value' => $order_info['order_num_alias'],'color' => '#030303'),
- 'keyword3' => array('value' => sprintf("%01.2f", $order_info['total']),'color' => '#030303'),
- 'keyword4' => array('value' => $order_goods_name,'color' => '#030303'),
- 'remark' => array('value' => '商家会尽快为你发货,请耐心等待哦','color' => '#030303'),
- )
-
- );
- }
-
-
- $delay_time = 0;
-
- if( !$is_admin )
- {
- $delay_time = 1;
- }
-
- D('Seller/User')->send_wxtemplate_msg($template_data,$url,$pagepath,$member_info['we_openid'],$template_id,$member_formid_info['formid'],0,$wx_template_data,$delay_time);
-
-
- //会员下单成功发送公众号提醒给团长 weixin_template_order_buy
-
- //通知开关状态 0为关,1为开
- $template_order_success_notice= D('Home/Front')->get_config_by_name('template_order_success_notice' );
-
- if(!empty($template_order_success_notice)){
-
- $weixin_template_order =array();
- $weixin_appid = D('Home/Front')->get_config_by_name('weixin_appid');
- $weixin_template_order_buy = D('Home/Front')->get_config_by_name('weixin_template_order_buy');
-
-
-
-
- if( !empty($weixin_appid) && !empty($weixin_template_order_buy) )
- {
- $head_pathinfo = "lionfish_comshop/pages/groupCenter/groupDetail?groupOrderId=".$order['order_id'];
-
- $weixin_template_order = array(
- 'appid' => $weixin_appid,
- 'template_id' => $weixin_template_order_buy,
- 'pagepath' => $head_pathinfo,
- 'data' => array(
- 'first' => array('value' => '您好团长,您收到了一个新订单,请尽快接单处理','color' => '#030303'),
- 'tradeDateTime' => array('value' => date('Y-m-d H:i:s'),'color' => '#030303'),
- 'orderType' => array('value' => '用户购买','color' => '#030303'),
- 'customerInfo' => array('value' => $member_info['username'],'color' => '#030303'),
- 'orderItemName' => array('value' => '订单编号','color' => '#030303'),
-
- 'orderItemData' => array('value' => $order_info['order_num_alias'],'color' => '#030303'),
-
- 'remark' => array('value' => '点击查看订单详情','color' => '#030303'),
- )
- );
- }
-
- $headid = $order_info['head_id'];
-
- $head_info = M('lionfish_community_head')->field('member_id')->where( array('id' => $headid ) )->find();
-
- $weopenid = M('lionfish_comshop_member')->field('we_openid')->where( array('member_id' => $head_info['member_id'] ) )->find();
-
- $mnzember_formid_info = M('lionfish_comshop_member_formid')->where( "member_id=". $head_info['member_id']." and formid != '' and state = 1 " )->order('id desc ')->find();
-
- $template_data['keyword5'] = array('value' => '您好,团长收到了一个新订单', 'color' => '#030303');
-
-
- $res = D('Seller/User')->send_wxtemplate_msg(array() ,$url,$head_pathinfo,$weopenid['we_openid'],$template_id,$mnzember_formid_info['formid'], 0,$weixin_template_order);
-
-
-
- }
-
- //会员下单成功发送公众号提醒给供应商 is_order_notice_supply
-
- $is_order_notice_supply= D('Home/Front')->get_config_by_name('is_order_notice_supply' );
-
- if( !empty($is_order_notice_supply)){
-
- $supply_send_info =array();
- $weixin_appid = D('Home/Front')->get_config_by_name('weixin_appid' );
- $weixin_template_order_buy = D('Home/Front')->get_config_by_name('weixin_template_order_buy' );
- if( !empty($weixin_appid) && !empty($weixin_template_order_buy) )
- {
- $head_pathinfo = "lionfish_comshop/pages/groupCenter/groupDetail?groupOrderId=".$order['order_id'];
-
- $supply_send_info = array(
- 'appid' => $weixin_appid,
- 'template_id' => $weixin_template_order_buy,
- 'pagepath' => $head_pathinfo,
- 'data' => array(
- 'first' => array('value' => '您好,供应商收到了一个新订单','color' => '#030303'),
- 'tradeDateTime' => array('value' => date('Y-m-d H:i:s'),'color' => '#030303'),
- 'orderType' => array('value' => '用户购买','color' => '#030303'),
- 'customerInfo' => array('value' => $member_info['username'],'color' => '#030303'),
- 'orderItemName' => array('value' => '订单编号','color' => '#030303'),
-
- 'orderItemData' => array('value' => $order_info['order_num_alias'],'color' => '#030303'),
-
- 'remark' => array('value' => '点击查看订单详情','color' => '#030303'),
- )
- );
- }
-
-
- //供应商id 订单id $order_info['order_id']
-
- $order_goods = M('lionfish_comshop_order_goods')->where( array('order_id' => $order_info['order_id'] ) )->find();
-
-
- if( !empty($order_goods['supply_id']) && $order_goods['supply_id'] > 0 )
- {
- //关联会员id
- $supply_info = M('lionfish_comshop_supply')->where( array('id' => $order_goods['supply_id'] ) )->find();
-
- if( !empty($supply_info['member_id']) && $supply_info['member_id'] > 0 )
- {
- //会员openid
- $weopenid = M('lionfish_comshop_member')->where( array('member_id' => $supply_info['member_id'] ) )->find();
-
- $mnzember_formid_info = M('lionfish_comshop_member_formid')->where( "member_id=". $supply_info['member_id']." and formid != '' and state = 1 " )->order('id desc ')->find();
-
- $template_data['keyword5'] = array('value' => '您好,供应商收到了一个新订单', 'color' => '#030303');
-
- $sd_result = D('Seller/User')->send_wxtemplate_msg( array() ,$url,$head_pathinfo,$weopenid['we_openid'],$template_id,$mnzember_formid_info['formid'], 0,$supply_send_info);
-
- }
- }
-
- }
-
- //会员下单成功发送公众号提醒给平台 platform_send_info_member
- $platform_send_info_member= D('Home/Front')->get_config_by_name('platform_send_info_member' );
-
- if($platform_send_info_member){
-
- $platform_send_info =array();
- $weixin_appid = D('Home/Front')->get_config_by_name('weixin_appid');
- $weixin_template_order_buy = D('Home/Front')->get_config_by_name('weixin_template_order_buy');
- if( !empty($weixin_appid) && !empty($weixin_template_order_buy) )
- {
-
- $head_pathinfo = "lionfish_comshop/pages/groupCenter/groupDetail?groupOrderId=".$order['order_id'];
-
- $platform_send_info = array(
- 'appid' => $weixin_appid,
- 'template_id' => $weixin_template_order_buy,
- 'pagepath' => $head_pathinfo,
- 'data' => array(
- 'first' => array('value' => '您好,平台收到了一个新订单','color' => '#030303'),
- 'tradeDateTime' => array('value' => date('Y-m-d H:i:s'),'color' => '#030303'),
- 'orderType' => array('value' => '用户购买','color' => '#030303'),
- 'customerInfo' => array('value' => $member_info['username'],'color' => '#030303'),
- 'orderItemName' => array('value' => '订单编号','color' => '#030303'),
-
- 'orderItemData' => array('value' => $order_info['order_num_alias'],'color' => '#030303'),
-
- 'remark' => array('value' => '点击查看订单详情','color' => '#030303'),
- )
- );
- }
-
-
-
- $memberid = $platform_send_info_member;
-
- $result = explode(",", $memberid);
-
- foreach($result as $re){
-
- $pingtai = M('lionfish_comshop_member')->where( array('member_id' => $re ) )->find();
-
-
- $mnzember_formid_info = M('lionfish_comshop_member_formid')->where("member_id={$re} and formid != '' and state = 1 ")->order('id desc')->find();
-
- //测试
- $template_data['keyword5'] = array('value' => '您好,平台收到了一个新订单', 'color' => '#030303');
-
- $sd_result = D('Seller/User')->send_wxtemplate_msg( array() ,$url,$head_pathinfo,$pingtai['we_openid'],$template_id,$mnzember_formid_info['formid'], 0,$platform_send_info);
-
-
- }
-
- }
-
-
-
- if( $member_info['openid'] != '1')
- {
- //购买成功通知 weixin_template_pay_order
- //send_template_msg($wx_template_data,$url,$member_info['openid'],C('weixin_template_pay_order'));
- }
- }else{
- //购买成功通知 weixin_template_pay_order
- //send_template_msg($wx_template_data,$url,$member_info['openid'],C('weixin_template_pay_order'));
- }
-
- //小票打印
- D('Seller/Printaction')->check_print_order($order['order_id']);
-
-
- //send dan msg
- } else {
-
- $pin_model = D('Home/Pin');
- $is_tuanz = $pin_model->checkOrderIsTuanzhang($order['order_id']);
-
- $pin_order = M('lionfish_comshop_pin_order')->where( array('order_id' => $order_id ) )->find();
-
- $pin_info = M('lionfish_comshop_pin')->where( array('pin_id' => $pin_id ) )->find();
-
- $order_goods = M('lionfish_comshop_order_goods')->where( array('order_id' => $order['order_id'] ) )->find();
-
- if($is_tuanz) {
- //开团成功
- //member_id
- $opentuantitmsg = '开团成功';
- $opentuandescmsg = '恭喜开团成功!马上叫小伙伴来参团,组团成功才能享受优惠哦';
-
- $shop_domain = D('Home/Front')->get_config_by_name('shop_domain');
-
- $url = $shop_domain;
-
-
- $wx_template_data = array();
- $wx_template_data['keyword1'] = array('value' => $order_goods['name'], 'color' => '#030303');
- $wx_template_data['keyword2'] = array('value' => $order_goods['price'], 'color' => '#030303');
- $wx_template_data['keyword3'] = array('value' => $pin_info['need_count'], 'color' => '#030303');
- $wx_template_data['keyword4'] = array('value' => date('Y-m-d H:i:s', $pin_info['begin_time']), 'color' => '#030303');
- $wx_template_data['remark'] = array('value' => '恭喜开团成功!马上叫小伙伴来参团,组团成功才能享受优惠哦', 'color' => '#030303');
-
-
- if( $order_info['from_type'] == 'wepro' )
- {
- $template_data = array();
- $template_data['keyword1'] = array('value' => $order_info['order_num_alias'], 'color' => '#030303');
- $template_data['keyword2'] = array('value' => $order_goods['name'], 'color' => '#030303');
- $template_data['keyword3'] = array('value' => $pin_info['need_count'], 'color' => '#030303');
- $template_data['keyword4'] = array('value' => $order_goods['price'], 'color' => '#030303');
-
- $template_data['keyword5'] = array('value' => date('Y-m-d H:i:s', $pin_info['begin_time']), 'color' => '#030303');
- $template_data['keyword6'] = array('value' => date('Y-m-d H:i:s', $pin_info['end_time']), 'color' => '#030303');
- $template_data['keyword7'] = array('value' => '恭喜开团成功!马上叫小伙伴来参团,组团成功才能享受优惠哦', 'color' => '#030303');
-
-
- $template_id = D('Home/Front')->get_config_by_name('weprogram_template_open_pin', $uniacid);
-
-
- $pagepath = 'lionfish_comshop/pages/share/index?id='.$order['order_id'];
-
-
-
-
- $member_formid_info = M('lionfish_comshop_member_formid')->where( "member_id=".$member_info['member_id']." and formid != ''" )->order('id desc ')->find();
-
-
-
- //更新
- if(!empty($member_formid_info))
- {
- $rs = D('Seller/User')->send_wxtemplate_msg($template_data,$url,$pagepath,$member_info['we_openid'],$template_id,$member_formid_info['formid'], 0 );
-
-
-
- M('lionfish_comshop_member_formid')->where( array('id' => $member_formid_info['id'] ) )->save(array('state' => 1));
- }
-
-
- if( $member_info['openid'] != '1')
- {
- //开团成功 weixin_template_open_pin
- //send_template_msg($wx_template_data,$url,$member_info['openid'],C('weixin_template_open_pin'));
- }
- }else{
- //开团成功 weixin_template_open_pin
- //send_template_msg($wx_template_data,$url,$member_info['openid'],C('weixin_template_open_pin'));
- }
-
-
- } else {
- //参团成功
- $tacktuantitmsg = '参团成功';
- $tacktuandescmsg = '恭喜参团成功!马上叫小伙伴来参团,组团成功才能享受优惠哦';
-
- $shop_domain = D('Home/Front')->get_config_by_name('shop_domain');
-
- $url = $shop_domain;
-
- $wx_template_data = array();
- $wx_template_data['keyword1'] = array('value' => $order_goods['name'], 'color' => '#030303');
- $wx_template_data['keyword2'] = array('value' => $order_goods['price'], 'color' => '#030303');
- $wx_template_data['keyword3'] = array('value' => date('Y-m-d H:i:s', $pin_info['end_time']), 'color' => '#030303');
- $wx_template_data['remark'] = array('value' => '恭喜参团成功!马上叫小伙伴来参团,组团成功才能享受优惠哦', 'color' => '#030303');
-
- if( $order_info['from_type'] == 'wepro' )
- {
- $template_data = array();
- $template_data['keyword1'] = array('value' => $order_goods['name'], 'color' => '#030303');
- $template_data['keyword2'] = array('value' => '参团成功', 'color' => '#030303');
- $template_data['keyword3'] = array('value' => '恭喜参团成功!马上叫小伙伴来参团,组团成功才能享受优惠哦', 'color' => '#b26f82');
-
-
- $template_id = D('Home/Front')->get_config_by_name('weprogram_template_take_pin');
-
-
- $pagepath = 'lionfish_comshop/pages/share/index?id='.$order['order_id'];
-
-
- $member_formid_info = M('lionfish_comshop_member_formid')->where( "member_id=".$member_info['member_id']." and formid != ''" )->order('id desc ')->find();
-
-
- if(!empty($member_formid_info))
- {
- $rs = D('Seller/User')->send_wxtemplate_msg($template_data,$url,$pagepath,$member_info['we_openid'],$template_id,$member_formid_info['formid'], 0);
-
-
-
- M('lionfish_comshop_member_formid')->where( array('id' => $member_formid_info['id'] ) )->save(array('state' => 1));
- }
-
- if( $member_info['openid'] != '1')
- {
- //send_template_msg($wx_template_data,$url,$member_info['openid'],C('weixin_template_take_pin'));
- }
- }else{
- //send_template_msg($wx_template_data,$url,$member_info['openid'],C('weixin_template_take_pin'));
- }
-
-
- }
-
- }
-
-
-
- }
-
-
- }
|