add($GLOBALS['_LANG']['not_login']); return false; } $cfg = array(); $cfg['user_id'] = $profile['user_id']; $cfg['username'] = $GLOBALS['db']->getOne("SELECT user_name FROM " . $GLOBALS['ecs']->table('users') . " WHERE user_id='" . $profile['user_id'] . "'"); if (isset($profile['sex'])) { $cfg['gender'] = intval($profile['sex']); } if (!empty($profile['email'])) { if (!is_email($profile['email'])) { $GLOBALS['err']->add(sprintf($GLOBALS['_LANG']['email_invalid'], $profile['email'])); return false; } $cfg['email'] = $profile['email']; } //手机号码 if(!empty($profile['mobile_phone'])){ $mobile = $GLOBALS['db']->getOne("SELECT mobile_phone FROM " . $GLOBALS['ecs']->table('users') . " WHERE user_id='" . $profile['user_id'] . "'"); if($mobile != $profile['mobile_phone'] && $_CFG['sms_signin'] == 1){ if(!empty($profile['mobile_code'])){ if($profile['mobile_phone'] != $_SESSION['sms_mobile'] || $profile['mobile_code'] != $_SESSION['sms_mobile_code']){ $GLOBALS['err']->add('手机校验码为空或过期,稍后修改'); return false; } }else{ $profile['mobile_phone'] = $mobile; } } $cfg['mobile_phone'] = $profile['mobile_phone']; } if (!empty($profile['birthday'])) { $cfg['bday'] = $profile['birthday']; } if (!$GLOBALS['user']->edit_user($cfg)) { if ($GLOBALS['user']->error == ERR_EMAIL_EXISTS) { $GLOBALS['err']->add(sprintf($GLOBALS['_LANG']['email_exist'], $profile['email'])); }elseif ($GLOBALS['user']->error == ERR_PHONE_EXISTS) { $GLOBALS['err']->add(sprintf($GLOBALS['_LANG']['phone_exist'], $profile['mobile_phone'])); }else { $GLOBALS['err']->add('DB ERROR!'); } return false; } /* 过滤非法的键值 */ $other_key_array = array('msn', 'qq', 'office_phone', 'home_phone'); foreach ($profile['other'] as $key => $val) { //删除非法key值 if (!in_array($key, $other_key_array)) { unset($profile['other'][$key]); } else { $profile['other'][$key] = htmlspecialchars(trim($val)); //防止用户输入javascript代码 } } /* 修改在其他资料 */ if (!empty($profile['other'])) { $GLOBALS['db']->autoExecute($GLOBALS['ecs']->table('users'), $profile['other'], 'UPDATE', "user_id = '$profile[user_id]'"); } return true; } /** * 获取用户帐号信息 * * @access public * @param int $user_id 用户user_id * * @return void */ function get_profile($user_id) { global $user; /* 会员帐号信息 */ $info = array(); $infos = array(); $sql = "SELECT user_name, birthday, sex, question, answer, rank_points, pay_points,user_money, user_rank, user_picture,". " msn, qq, office_phone, home_phone, mobile_phone, passwd_question, passwd_answer,is_validated ". "FROM " .$GLOBALS['ecs']->table('users') . " WHERE user_id = '$user_id'"; $infos = $GLOBALS['db']->getRow($sql); $infos['user_name'] = addslashes($infos['user_name']); $row = $user->get_profile_by_name($infos['user_name']); //获取用户帐号信息 $_SESSION['email'] = $row['email']; //注册SESSION /* 会员等级 */ if ($infos['user_rank'] > 0) { $sql = "SELECT rank_id, rank_name, discount FROM ".$GLOBALS['ecs']->table('user_rank') . " WHERE rank_id = '$infos[user_rank]'"; } else { $sql = "SELECT rank_id, rank_name, discount, min_points". " FROM ".$GLOBALS['ecs']->table('user_rank') . " WHERE min_points<= " . intval($infos['rank_points']) . " ORDER BY min_points DESC"; } if ($row = $GLOBALS['db']->getRow($sql)) { $info['rank_name'] = $row['rank_name']; } else { $info['rank_name'] = $GLOBALS['_LANG']['undifine_rank']; } $cur_date = date('Y-m-d H:i:s'); /* 会员红包 */ $bonus = array(); $sql = "SELECT type_name, type_money ". "FROM " .$GLOBALS['ecs']->table('bonus_type') . " AS t1, " .$GLOBALS['ecs']->table('user_bonus') . " AS t2 ". "WHERE t1.type_id = t2.bonus_type_id AND t2.user_id = '$user_id' AND t1.use_start_date <= '$cur_date' ". "AND t1.use_end_date > '$cur_date' AND t2.order_id = 0"; $bonus = $GLOBALS['db']->getAll($sql); if ($bonus) { for ($i = 0, $count = count($bonus); $i < $count; $i++) { $bonus[$i]['type_money'] = price_format($bonus[$i]['type_money'], false); } } $info['discount'] = $_SESSION['discount'] * 100 . "%"; $info['email'] = $_SESSION['email']; $info['user_name'] = $infos['user_name']; $info['rank_points'] = isset($infos['rank_points']) ? $infos['rank_points'] : ''; $info['pay_points'] = isset($infos['pay_points']) ? $infos['pay_points'] : 0; $info['user_money'] = isset($infos['user_money']) ? $infos['user_money'] : 0; $info['sex'] = isset($infos['sex']) ? $infos['sex'] : 0; $info['birthday'] = isset($infos['birthday']) ? $infos['birthday'] : ''; $info['question'] = isset($infos['question']) ? htmlspecialchars($infos['question']) : ''; $info['user_money'] = price_format($info['user_money'], false); $info['pay_points'] = $info['pay_points'] . $GLOBALS['_CFG']['integral_name']; $info['bonus'] = $bonus; $info['qq'] = $infos['qq']; $info['msn'] = $infos['msn']; $info['office_phone']= $infos['office_phone']; $info['home_phone'] = $infos['home_phone']; $info['mobile_phone'] = $infos['mobile_phone']; $info['passwd_question'] = $infos['passwd_question']; $info['passwd_answer'] = $infos['passwd_answer']; //OSS文件存储ecmoban模板堂 --zhuo start if($GLOBALS['_CFG']['open_oss'] == 1 && $infos['user_picture']){ $bucket_info = get_bucket_info(); $info['user_picture'] = $bucket_info['endpoint'] . $infos['user_picture']; }else{ $info['user_picture'] = $infos['user_picture']; } //OSS文件存储ecmoban模板堂 --zhuo end return $info; } /** * 取得收货人地址列表 * @param int $user_id 用户编号 * @return array */ function get_consignee_list($user_id) { $sql = "SELECT * FROM " . $GLOBALS['ecs']->table('user_address') . " WHERE user_id = '$user_id' LIMIT 5"; return $GLOBALS['db']->getAll($sql); } //ecmoban模板堂 --zhuo start function get_new_consignee_list($user_id) { $sql = "SELECT * FROM " . $GLOBALS['ecs']->table('user_address') . " WHERE user_id = '$user_id' LIMIT 5"; $res = $GLOBALS['db']->getAll($sql); $arr = array(); foreach($res as $key=>$row){ $arr[$key]['address_id'] = $row['address_id']; $arr[$key]['consignee'] = $row['consignee']; $arr[$key]['region'] = user_consignee_region($row['address_id']); $arr[$key]['address'] = $row['address']; $arr[$key]['email'] = $row['email']; $arr[$key]['mobile'] = $row['mobile']; $arr[$key]['tel'] = $row['tel']; $arr[$key]['zipcode'] = $row['zipcode']; $arr[$key]['sign_building'] = $row['sign_building']; $arr[$key]['best_time'] = $row['best_time']; $arr[$key]['province_id'] = $row['province']; $arr[$key]['city_id'] = $row['city']; $arr[$key]['district_id'] = $row['district']; $city = get_region_name($row['city']); $arr[$key]['city_name'] = $city['region_name']; $district = get_region_name($row['district']); $arr[$key]['district_name'] = $district['region_name']; } return $arr; } function user_consignee_region($address_id){ /* 取得区域名 */ //IFNULL(c.region_name, ''), ' ', $sql = "SELECT concat(IFNULL(p.region_name, ''), " . "' ', IFNULL(t.region_name, ''), ' ', IFNULL(d.region_name, '')) AS region " . "FROM " . $GLOBALS['ecs']->table('user_address') . " AS u " . //"LEFT JOIN " . $GLOBALS['ecs']->table('region') . " AS c ON u.country = c.region_id " . "LEFT JOIN " . $GLOBALS['ecs']->table('region') . " AS p ON u.province = p.region_id " . "LEFT JOIN " . $GLOBALS['ecs']->table('region') . " AS t ON u.city = t.region_id " . "LEFT JOIN " . $GLOBALS['ecs']->table('region') . " AS d ON u.district = d.region_id " . "WHERE u.address_id = '$address_id'"; $address = $GLOBALS['db']->getOne($sql); return $address ; } function get_user_address_info($address_id){ /* 取默认地址 */ $sql = "SELECT * FROM " . $GLOBALS['ecs']->table('user_address') . " WHERE address_id = '$address_id'"; $arr = $GLOBALS['db']->getRow($sql); return $arr; } //ecmoban模板堂 --zhuo end /** * 给指定用户添加一个指定红包 * * @access public * @param int $user_id 用户ID * @param string $bouns_sn 红包序列号 * * @return boolen $result */ function add_bonus($user_id, $bouns_sn, $password) { /*if (empty($user_id)) { $GLOBALS['err']->add($GLOBALS['_LANG']['not_login']); return false; }*/ /* 查询红包序列号是否已经存在 */ $sql = "SELECT bonus_id, bonus_sn, user_id, bonus_type_id FROM " .$GLOBALS['ecs']->table('user_bonus') . " WHERE bonus_sn = '$bouns_sn' AND bonus_password = '$password'"; $row = $GLOBALS['db']->getRow($sql); if ($row) { if ($row['user_id'] == 0) { //红包没有被使用 $sql = "SELECT send_end_date, use_end_date ". " FROM " . $GLOBALS['ecs']->table('bonus_type') . " WHERE type_id = '" . $row['bonus_type_id'] . "'"; $bonus_time = $GLOBALS['db']->getRow($sql); $now = gmtime(); if ($now > $bonus_time['use_end_date']) { $GLOBALS['err']->add($GLOBALS['_LANG']['bonus_use_expire']); return false; } $sql = "UPDATE " .$GLOBALS['ecs']->table('user_bonus') . " SET user_id = '$user_id', bind_time = '" .gmtime(). "' ". "WHERE bonus_id = '$row[bonus_id]'"; $result = $GLOBALS['db'] ->query($sql); if ($result) { return true; } else { return $GLOBALS['db']->errorMsg(); } } else { if ($row['user_id']== $user_id) { //红包已经添加过了。 $GLOBALS['err']->add($GLOBALS['_LANG']['bonus_is_used']); } else { //红包被其他人使用过了。 $GLOBALS['err']->add($GLOBALS['_LANG']['bonus_is_used_by_other']); } return false; } } else { //红包不存在 $GLOBALS['err']->add($GLOBALS['_LANG']['bonus_not_exist']); return false; } } /** * 获取用户指定范围的订单列表 * * @access public * @param int $user_id 用户ID号 * @param int $num 列表最大数量 * @param int $start 列表起始位置 * @return array $order_list 订单列表 */ function get_user_orders($user_id, $record_count, $page, $is_delete = 0, $where = '', $order = '', $handle_tyoe = 0,$pagesize=10) { require_once('includes/cls_pager.php'); if($order){ $idTxt = $order->idTxt; $keyword = $order->keyword; $action = $order->action; $type = $order->type; $status_keyword = $order->status_keyword; $date_keyword = $order->date_keyword; $id = '"'; $id .= $user_id . "="; $id .= "idTxt@" . $idTxt . "|"; $id .= "keyword@" . $keyword . "|"; $id .= "action@" . $action . "|"; $id .= "type@" . $type . "|"; if($status_keyword){ $id .= "status_keyword@" . $status_keyword . "|"; } if($date_keyword){ $id .= "date_keyword@" . $date_keyword; } $substr = substr($id, -1); if($substr == "|"){ $id = substr($id, 0, -1); } $id .= '"'; }else{ $id = $user_id; } $user_order =new Pager($record_count, $pagesize, '', $id, 0, $page, 'user_order_gotoPage', 1); $limit = $user_order->limit; $pager = $user_order->fpage(array(0,4,5,6,9)); $select = " (SELECT count(*) FROM " .$GLOBALS['ecs']->table('comment'). " AS c WHERE c.comment_type = 0 AND c.id_value = og.goods_id AND c.order_id = oi.order_id AND c.parent_id = 0 AND c.user_id = '$user_id') AS sign1, " . "(SELECT count(*) FROM " .$GLOBALS['ecs']->table('comment_img') ." AS ci, " .$GLOBALS['ecs']->table('comment') ." AS c". " WHERE c.comment_type = 0 AND c.id_value = og.goods_id AND c.order_id = oi.order_id AND c.parent_id = 0 AND c.user_id = '$user_id' AND ci.comment_id = c.comment_id ) AS sign2, "; /* 取得订单列表 */ $arr = array(); $sql = "SELECT og.ru_id, oi.main_order_id, oi.consignee,oi.pay_name, oi.order_id, oi.order_sn, oi.order_status, oi.shipping_status, oi.pay_status, oi.add_time, oi.shipping_time, oi.auto_delivery_time, oi.sign_time, " . $select . "(oi.goods_amount + oi.shipping_fee + oi.insure_fee + oi.pay_fee + oi.pack_fee + oi.card_fee + oi.tax - oi.discount) AS total_fee, og.goods_id, ". "oi.invoice_no, oi.shipping_name, oi.tel, oi.email, oi.address, oi.province, oi.city, oi.district " . " FROM " .$GLOBALS['ecs']->table('order_info') . " as oi" . " left join " .$GLOBALS['ecs']->table('order_goods'). " as og on oi.order_id = og.order_id" . " WHERE oi.user_id = '$user_id' and oi.is_delete = '$is_delete' " .$where. " and (select count(*) from " .$GLOBALS['ecs']->table('order_info'). " as oi2 where oi2.main_order_id = oi.order_id) = 0 " . //主订单下有子订单时,则主订单不显示 " group by oi.order_id ORDER BY oi.add_time DESC " . $limit; $res = $GLOBALS['db']->query($sql); $sql = 'SELECT value FROM ' . $GLOBALS['ecs']->table('shop_config').' WHERE code ="sign"'; $sign_time = $GLOBALS['db']->getOne( $sql ); //发货日期起可退换货时间 while ($row = $GLOBALS['db']->fetchRow($res)) { //ecmoban模板堂 --zhuo start $noTime = gmtime(); $date = array('order_status', 'shipping_status', 'pay_status', 'shipping_time', 'auto_delivery_time'); $orderInfo = get_table_date('order_info', "order_id = '" .$row['order_id']. "' and user_id = '$user_id'", $date); if($GLOBALS['_CFG']['open_delivery_time'] == 1){ if($orderInfo['order_status'] == 5 && $orderInfo['shipping_status'] == 1 && $orderInfo['pay_status'] == 2){ //发货状态 $delivery_time = $orderInfo['shipping_time'] + 24 * 3600 * $orderInfo['auto_delivery_time']; if($noTime > $delivery_time){ //自动确认发货操作 $sql = "UPDATE " .$GLOBALS['ecs']->table('order_info'). " SET order_status = '" .OS_SPLITED. "', shipping_status = '" .SS_RECEIVED. "', pay_status = '" .PS_PAYED. "' WHERE order_id = '" .$row['order_id']. "'"; $GLOBALS['db']->query($sql); } } } //ecmoban模板堂 --zhuo end if ($row['order_status'] == OS_UNCONFIRMED) { $row['handler'] = "".$GLOBALS['_LANG']['cancel'].""; } else if ($row['order_status'] == OS_SPLITED) { // 对配送状态的处理 if ($row['shipping_status'] == SS_SHIPPED) { @$row['handler'] = "".$GLOBALS['_LANG']['received'].""; } elseif ($row['shipping_status'] == SS_RECEIVED) { @$row['handler'] = ''.$GLOBALS['_LANG']['ss_received'] .''; } else { if ($row['pay_status'] == PS_UNPAYED) { @$row['handler'] = "' .$GLOBALS['_LANG']['pay_money']. ''; } else { @$row['handler'] = "' .$GLOBALS['_LANG']['view_order']. ''; } } } else { $row['handler'] = ''.$GLOBALS['_LANG']['os'][$row['order_status']] .''; } //ecmoban模板堂 --zhuo start $row['user_order'] = $row['order_status']; $row['user_shipping'] = $row['shipping_status']; $row['user_pay'] = $row['pay_status']; if($row['user_order'] == OS_SPLITED && $row['user_shipping'] == SS_RECEIVED && $row['user_pay'] == PS_PAYED){ $row['delete_yes'] = 1; }elseif(($row['user_order'] == OS_CONFIRMED || $row['user_order'] == OS_UNCONFIRMED || $row['user_order'] == OS_CANCELED) && $row['user_shipping'] == SS_UNSHIPPED && $row['user_pay'] == PS_UNPAYED){ $row['delete_yes'] = 1; }else{ $row['delete_yes'] = 0; } //ecmoban模板堂 --zhuo end //判断是否已评论或晒单 start if($row['sign1'] == 0){ $row['sign'] = 0; }elseif($row['sign1'] > 0 && $row['sign2'] == 0){ $row['sign'] = 1; }elseif($row['sign1'] > 0 && $row['sign2'] > 0){ $row['sign'] = 2; } //判断是否已评论或晒单 end $row['shipping_status'] = ($row['shipping_status'] == SS_SHIPPED_ING) ? SS_PREPARING : $row['shipping_status']; $row['order_status'] = $GLOBALS['_LANG']['os'][$row['order_status']] . '
' . $GLOBALS['_LANG']['ps'][$row['pay_status']] . '
' . $GLOBALS['_LANG']['ss'][$row['shipping_status']]; $br = ''; $order_over = 0; if($row['user_order'] == OS_SPLITED && $row['user_shipping'] == SS_RECEIVED && $row['user_pay'] == PS_PAYED){ $order_over = 1; //订单完成 $row['order_status'] = $GLOBALS['_LANG']['ss_received']; //添加晒单评价操作 if($row['sign'] > 0){ $sign = "&sign=" . $row['sign']; }else{ $sign = ''; } $row['handler'] = "晒单评价
'; }else if($row['user_order'] == OS_CANCELED && $row['user_shipping'] == SS_UNSHIPPED && $row['user_pay'] == PS_UNPAYED){ $order_over = 1; //订单已取消 $row['order_status'] = $GLOBALS['_LANG']['os'][OS_CANCELED]; $row['handler'] = ''; }else if($row['user_order'] == OS_SPLITED && $row['user_shipping'] == SS_SHIPPED && $row['user_pay'] == PS_PAYED){ //确认收货 $row['handler'] = $row['handler']; $br = "
"; }else{ if(!($row['user_order'] == OS_UNCONFIRMED && $row['user_shipping'] == SS_UNSHIPPED && $row['user_pay'] == PS_UNPAYED)){ $row['handler'] = ''; }else{ $br = "
"; } } /**by Leah S*/ //判断发货日期起可退换货时间 if( $sign_time > 0){ $sql = "SELECT log_time FROM " . $GLOBALS['ecs']->table('order_action') . " WHERE order_id =".$row['order_id'] . " and action_note != '' order by action_id DESC"; $log_time= $GLOBALS['db']->getOne($sql); $day = (($time-$log_time)/3600/24); if( $row['user_order'] != OS_CANCELED && $row['user_pay'] == PS_PAYED){ if( $day < $sign_time ){ @$row['handler_return'] = $br . "' .$GLOBALS['_LANG']['return'].""; }else{ @$row['handler_return'] = ''; } } } /***by Leah E*/ //ecmoban模板堂 --zhuo start $ru_id = $row['ru_id']; $row['order_goods'] = get_order_goods_toInfo($row['order_id']); $row['order_goods_count'] = count($row['order_goods']); $order_id = $row['order_id']; $date = array('order_id'); $order_child = count(get_table_date('order_info', "main_order_id='$order_id'", $date, 1)); $row[$key]['order_child'] = $order_child; $sql="select order_id from ".$GLOBALS['ecs']->table('order_info')." where main_order_id = '" .$row['main_order_id']. "' and main_order_id > 0"; $order_count = count($GLOBALS['db']->getAll($sql)); $sql="select kf_type, kf_ww, kf_qq from ".$GLOBALS['ecs']->table('seller_shopinfo')." where ru_id='$ru_id'"; $basic_info = $GLOBALS['db']->getRow($sql); $sql = "select invoice_no, shipping_name, update_time from " .$GLOBALS['ecs']->table('delivery_order'). " where order_id = '" .$row['order_id']. "'"; $delivery = $GLOBALS['db']->getRow($sql); $sql = "select invoice_no, shipping_name, update_time from " .$GLOBALS['ecs']->table('delivery_order'). " where order_id = '" .$row['order_id']. "'"; $delivery = $GLOBALS['db']->getRow($sql); $province = get_order_region_name($row['province']); $city = get_order_region_name($row['city']); $district = get_order_region_name($row['district']); if($district['region_name']){ $district_name = $district['region_name']; } $address_detail = $province['region_name'] ." ". $city['region_name'] ."市" . " " . $district_name; $delivery['delivery_time'] = local_date($GLOBALS['_CFG']['time_format'], $delivery['update_time']); if($handle_tyoe == 1){ $row['order_status'] = str_replace(array('
'), '', $row['order_status']); } $arr[] = array('order_id' => $row['order_id'], 'order_sn' => $row['order_sn'], 'order_time' => local_date($GLOBALS['_CFG']['time_format'], $row['add_time']), 'sign' => $row['sign'], 'order_status' => $row['order_status'], //ecmoban模板堂 --zhuo start 'status_number' => $status_number, 'consignee' => $row['consignee'], 'main_order_id' => $row['main_order_id'], 'user_name' => get_shop_name($ru_id, 1), //店铺名称 , 'order_goods' => $row['order_goods'], 'order_goods_count' => $row['order_goods_count'], 'order_child' => $order_child, 'no_picture' => $GLOBALS['_CFG']['no_picture'], 'order_child' => $order_child, 'delete_yes' => $row['delete_yes'], 'invoice_no' => $row['invoice_no'], 'shipping_name' => $row['shipping_name'], 'pay_name' => $row['pay_name'], 'email' => $row['email'], 'address_detail' => $row['address_detail'], 'address' => $row['address'], 'address_detail' => $address_detail, 'tel' => $row['tel'], 'delivery_time' => $delivery['delivery_time'], 'order_count' => $order_count, 'kf_type' => $basic_info['kf_type'], 'kf_ww' => $basic_info['kf_ww'], 'kf_qq' => $basic_info['kf_qq'], //ecmoban模板堂 --zhuo end 'total_fee' => price_format($row['total_fee'], false), 'handler_return' => $row['handler_return'], 'handler' => $row['handler']); } //get_print_r($arr); $order_list = array('order_list'=> $arr, 'pager' => $pager, 'record_count' => $record_count); return $order_list; } //ecmoban模板堂 --zhuo start function get_order_search_keyword($order = array()){ $where = ''; if(isset($order->keyword)){ if($order->type == 'text'){ //订单编号、商品编号、商品名称模糊查询 if($order->keyword == '商品名称、商品编号、订单编号'){ $order->keyword = ''; } $where .= " AND (oi.order_sn LIKE '%" .mysql_like_quote($order->keyword). "%' or og.goods_name LIKE '%" .mysql_like_quote($order->keyword). "%' or og.goods_sn LIKE '%" .mysql_like_quote($order->keyword). "%')"; }elseif($order->type == 'dateTime' || $order->type == 'order_status' || $order->type == 'toBe_confirmed' || $order->type == 'toBe_finished' || $order->type == 'toBe_pay' || $order->type == 'toBe_unconfirmed'){ if($order->idTxt == 'submitDate'){ //订单时间范围 $date_keyword = $order->keyword; $status_keyword = $order->status_keyword; }elseif($order->idTxt == 'status_list'){ //订单状态 $date_keyword = $order->date_keyword; $status_keyword = $order->keyword; }elseif($order->idTxt == 'payId' || $order->idTxt == 'to_finished' || $order->idTxt == 'to_confirm_order' || $order->idTxt == 'to_unconfirmed'){ $status_keyword = $order->keyword; } $firstSecToday = local_mktime(0, 0, 0, date("m"), date("d"), date("Y")); //当天开始返回时间戳 比如1369814400 2013-05-30 00:00:00 $lastSecToday = local_mktime(0, 0, 0, date("m"), date("d")+1, date("Y"))-1; //当天结束返回时间戳 比如1369900799 2013-05-30 00:00:00 if($date_keyword == 'today'){ $where .= " AND oi.add_time >= '$firstSecToday' and oi.add_time <= '$lastSecToday'"; }elseif($date_keyword == 'three_today'){ $firstSecToday = $firstSecToday - 24 * 3600 * 2; $where .= " AND oi.add_time >= '$firstSecToday' and oi.add_time <= '$lastSecToday'"; }elseif($date_keyword == 'aweek'){ $firstSecToday = $firstSecToday - 24 * 3600 * 6; $where .= " AND oi.add_time >= '$firstSecToday' and oi.add_time <= '$lastSecToday'"; }elseif($date_keyword == 'thismonth'){ $first_month_day = local_mktime(0,0,0,date('m'),1,date('Y')); //本月第一天 $last_month_day = local_mktime(0,0,0,date('m'),date('t'),date('Y')) - 1; //本月最后一天 $where .= " AND oi.add_time >= '$first_month_day' and oi.add_time <= '$last_month_day'"; } //综合状态 switch($status_keyword) { case CS_AWAIT_PAY : $where .= get_order_query_sql('await_pay', 'oi.'); break; case CS_AWAIT_SHIP : $where .= get_order_query_sql('await_ship', 'oi.'); break; case CS_FINISHED : $where .= get_order_query_sql('finished', 'oi.'); break; case CS_TO_CONFIRM : $where .= get_order_query_sql('to_confirm', 'oi.'); break; case OS_UNCONFIRMED : $where .= get_order_query_sql('unconfirmed', 'oi.'); break; case PS_PAYING : if ($status_keyword != -1) { $where .= " AND oi.pay_status = '" .$status_keyword. "' "; } break; case OS_SHIPPED_PART : if ($status_keyword != -1) { $where .= " AND oi.shipping_status = '" .$status_keyword. "'-2 "; } break; default: if ($status_keyword != -1) { $where .= " AND oi.order_status = '" .$status_keyword. "' "; } } } } return $where; } //ecmoban模板堂 --zhuo end /** * 取消一个用户订单 * * @access public * @param int $order_id 订单ID * @param int $user_id 用户ID * * @return void */ function cancel_order($order_id, $user_id = 0) { /* 查询订单信息,检查状态 */ $sql = "SELECT user_id, order_id, order_sn , surplus , integral , bonus_id, order_status, shipping_status, pay_status FROM " .$GLOBALS['ecs']->table('order_info') ." WHERE order_id = '$order_id'"; $order = $GLOBALS['db']->GetRow($sql); if (empty($order)) { $GLOBALS['err']->add($GLOBALS['_LANG']['order_exist']); return false; } // 如果用户ID大于0,检查订单是否属于该用户 if ($user_id > 0 && $order['user_id'] != $user_id) { $GLOBALS['err'] ->add($GLOBALS['_LANG']['no_priv']); return false; } // 订单状态只能是“未确认”或“已确认” if ($order['order_status'] != OS_UNCONFIRMED && $order['order_status'] != OS_CONFIRMED) { $GLOBALS['err']->add($GLOBALS['_LANG']['current_os_not_unconfirmed']); return false; } //订单一旦确认,不允许用户取消 if ( $order['order_status'] == OS_CONFIRMED) { $GLOBALS['err']->add($GLOBALS['_LANG']['current_os_already_confirmed']); return false; } // 发货状态只能是“未发货” if ($order['shipping_status'] != SS_UNSHIPPED) { $GLOBALS['err']->add($GLOBALS['_LANG']['current_ss_not_cancel']); return false; } // 如果付款状态是“已付款”、“付款中”,不允许取消,要取消和商家联系 if ($order['pay_status'] != PS_UNPAYED) { $GLOBALS['err']->add($GLOBALS['_LANG']['current_ps_not_cancel']); return false; } //将用户订单设置为取消 $sql = "UPDATE ".$GLOBALS['ecs']->table('order_info') ." SET order_status = '".OS_CANCELED."' WHERE order_id = '$order_id'"; if ($GLOBALS['db']->query($sql)) { /* 记录log */ order_action($order['order_sn'], OS_CANCELED, $order['shipping_status'], PS_UNPAYED,$GLOBALS['_LANG']['buyer_cancel'],'buyer'); /* 退货用户余额、积分、红包 */ if ($order['user_id'] > 0 && $order['surplus'] > 0) { $change_desc = sprintf($GLOBALS['_LANG']['return_surplus_on_cancel'], $order['order_sn']); log_account_change($order['user_id'], $order['surplus'], 0, 0, 0, $change_desc); } if ($order['user_id'] > 0 && $order['integral'] > 0) { $change_desc = sprintf($GLOBALS['_LANG']['return_integral_on_cancel'], $order['order_sn']); log_account_change($order['user_id'], 0, 0, 0, $order['integral'], $change_desc); } if ($order['user_id'] > 0 && $order['bonus_id'] > 0) { change_user_bonus($order['bonus_id'], $order['order_id'], false); } /* 如果使用库存,且下订单时减库存,则增加库存 */ if ($GLOBALS['_CFG']['use_storage'] == '1' && $GLOBALS['_CFG']['stock_dec_time'] == SDT_PLACE) { change_order_goods_storage($order['order_id'], false, 1); } /* 修改订单 */ $arr = array( 'bonus_id' => 0, 'bonus' => 0, 'integral' => 0, 'integral_money' => 0, 'surplus' => 0 ); update_order($order['order_id'], $arr); return true; } else { die($GLOBALS['db']->errorMsg()); } } /** * 取消一个退换单 by Leah * * @access public * @param int $order_id 订单ID * @param int $user_id 用户ID * * @return void */ function cancel_return($ret_id, $user_id = 0) { /* 查询订单信息,检查状态 */ $sql = "SELECT * FROM " .$GLOBALS['ecs']->table('order_return') ." WHERE ret_id = '$ret_id'"; $order = $GLOBALS['db']->GetRow($sql); if (empty($order)) { $GLOBALS['err']->add($GLOBALS['_LANG']['return_exist']); return false; } // 如果用户ID大于0,检查订单是否属于该用户 if ($user_id > 0 && $order['user_id'] != $user_id) { $GLOBALS['err'] ->add($GLOBALS['_LANG']['no_priv']); return false; } // 订单状态只能是用户寄回和未退款状态 if ($order['return_status'] != RF_APPLICATION && $order['refound_status'] != FF_NOREFOUND) { $GLOBALS['err']->add($GLOBALS['_LANG']['return_not_unconfirmed']); return false; } //一旦由商家收到退换货商品,不允许用户取消 if ( $order['return_status'] == RF_RECEIVE) { $GLOBALS['err']->add($GLOBALS['_LANG']['current_os_already_receive']); return false; } // 商家已发送退换货商品 if ($order['return_status'] == RF_SWAPPED_OUT_SINGLE|| $order['return_status'] == RF_SWAPPED_OUT) { $GLOBALS['err']->add($GLOBALS['_LANG']['already_out_goods']); return false; } // 如果付款状态是“已付款”、“付款中”,不允许取消,要取消和商家联系 if ($order['refound_status'] == FF_REFOUND) { $GLOBALS['err']->add($GLOBALS['_LANG']['have_refound']); return false; } //将用户订单设置为取消 $sql = "DELETE FROM ".$GLOBALS['ecs']->table('order_return') ." WHERE ret_id =".$ret_id; if ($GLOBALS['db']->query($sql)) { $sql ="DELETE FROM ".$GLOBALS['ecs']->table('return_goods') ." WHERE rec_id =".$order['rec_id']; $GLOBALS['db']->query($sql); $sql = "select img_file from " .$GLOBALS['ecs']->table('return_images'). " where user_id = '" .$_SESSION['user_id']. "' and rec_id = '" .$order['rec_id']. "'"; $img_list = $GLOBALS['db']->getAll($sql); if($img_list){ foreach($img_list as $key=>$row){ @unlink(ROOT_PATH . $row['img_file']); } $sql = "delete from " .$GLOBALS['ecs']->table('return_images'). " where user_id = '" .$_SESSION['user_id']. "' and rec_id = '" .$order['rec_id']. "'"; $GLOBALS['db']->query($sql); } /* 记录log */ return_action($ret_id, '取消', '', '','买家',''); return true; } else { die($GLOBALS['db']->errorMsg()); } } /** * 确认一个用户订单 * * @access public * @param int $order_id 订单ID * @param int $user_id 用户ID * * @return bool $bool */ function affirm_received($order_id, $user_id = 0) { /* 查询订单信息,检查状态 */ $sql = "SELECT user_id, order_sn , order_status, shipping_status, pay_status FROM ".$GLOBALS['ecs']->table('order_info') ." WHERE order_id = '$order_id'"; $order = $GLOBALS['db']->GetRow($sql); // 如果用户ID大于 0 。检查订单是否属于该用户 if ($user_id > 0 && $order['user_id'] != $user_id) { $GLOBALS['err'] -> add($GLOBALS['_LANG']['no_priv']); return false; } /* 检查订单 */ elseif ($order['shipping_status'] == SS_RECEIVED) { $GLOBALS['err'] ->add($GLOBALS['_LANG']['order_already_received']); return false; } elseif ($order['shipping_status'] != SS_SHIPPED) { $GLOBALS['err']->add($GLOBALS['_LANG']['order_invalid']); return false; } /* 修改订单发货状态为“确认收货” */ else { $sql = "UPDATE " . $GLOBALS['ecs']->table('order_info') . " SET shipping_status = '" . SS_RECEIVED . "' WHERE order_id = '$order_id'"; if ($GLOBALS['db']->query($sql)) { /* 记录日志 */ order_action($order['order_sn'], $order['order_status'], SS_RECEIVED, $order['pay_status'], '', $GLOBALS['_LANG']['buyer']); return true; } else { die($GLOBALS['db']->errorMsg()); } } } /** * 保存用户的收货人信息 * 如果收货人信息中的 id 为 0 则新增一个收货人信息 * * @access public * @param array $consignee * @param boolean $default 是否将该收货人信息设置为默认收货人信息 * @return boolean */ function save_consignee($consignee, $default=false) { if ($consignee['address_id'] > 0) { /* 修改地址 */ $res = $GLOBALS['db']->autoExecute($GLOBALS['ecs']->table('user_address'), $consignee, 'UPDATE', 'address_id = ' . $consignee['address_id']." AND `user_id`= '".$_SESSION['user_id']."'"); } else { /* 添加地址 */ $res = $GLOBALS['db']->autoExecute($GLOBALS['ecs']->table('user_address'), $consignee, 'INSERT'); $consignee['address_id'] = $GLOBALS['db']->insert_id(); } if ($default) { /* 保存为用户的默认收货地址 */ $sql = "UPDATE " . $GLOBALS['ecs']->table('users') . " SET address_id = '$consignee[address_id]' WHERE user_id = '$_SESSION[user_id]'"; $res = $GLOBALS['db']->query($sql); } return $res !== false; } /** * 删除一个收货地址 * * @access public * @param integer $id * @return boolean */ function drop_consignee($id) { $sql = "SELECT user_id FROM " .$GLOBALS['ecs']->table('user_address') . " WHERE address_id = '$id'"; $uid = $GLOBALS['db']->getOne($sql); if ($uid != $_SESSION['user_id']) { return false; } else { $sql = "DELETE FROM " .$GLOBALS['ecs']->table('user_address') . " WHERE address_id = '$id'"; $res = $GLOBALS['db']->query($sql); return $res; } } /** * 添加或更新指定用户收货地址 * * @access public * @param array $address * @return bool */ function update_address($address, $default = 0) { $address_id = intval($address['address_id']); unset($address['address_id']); if ($address_id > 0) { /* 更新指定记录 */ $GLOBALS['db']->autoExecute($GLOBALS['ecs']->table('user_address'), $address, 'UPDATE', 'address_id = ' .$address_id . ' AND user_id = ' . $address['user_id']); } else { /* 插入一条新记录 */ $GLOBALS['db']->autoExecute($GLOBALS['ecs']->table('user_address'), $address, 'INSERT'); $address_id = $GLOBALS['db']->insert_id(); } if($address_id > 0){ $sql = "SELECT count(*) FROM " .$GLOBALS['ecs']->table('user_address'). " WHERE user_id = '" .$address['user_id']. "'"; $res_count = $GLOBALS['db']->getOne($sql); if($res_count == 1){ $sql = "UPDATE ".$GLOBALS['ecs']->table('users') . " SET address_id = '".$address_id."' ". " WHERE user_id = '" .$address['user_id']. "'"; $GLOBALS['db'] ->query($sql); $_SESSION['flow_consignee'] = $address; } } if ($default > 0 && isset($address['user_id'])) { $sql = "UPDATE ".$GLOBALS['ecs']->table('users') . " SET address_id = '".$address_id."' ". " WHERE user_id = '" .$address['user_id']. "'"; $GLOBALS['db'] ->query($sql); } return true; } /** * 获取指订单的详情 * * @access public * @param int $order_id 订单ID * @param int $user_id 用户ID * * @return arr $order 订单所有信息的数组 */ function get_order_detail($order_id, $user_id = 0) { include_once(ROOT_PATH . 'includes/lib_order.php'); $order_id = intval($order_id); if ($order_id <= 0) { $GLOBALS['err']->add($GLOBALS['_LANG']['invalid_order_id']); return false; } $order = order_info($order_id); //检查订单是否属于该用户 if ($user_id > 0 && $user_id != $order['user_id']) { $GLOBALS['err']->add($GLOBALS['_LANG']['no_priv']); return false; } /* 对发货号处理 */ if (!empty($order['invoice_no'])) { $shipping_code = $GLOBALS['db']->GetOne("SELECT shipping_code FROM ".$GLOBALS['ecs']->table('shipping') ." WHERE shipping_id = '$order[shipping_id]'"); $plugin = ROOT_PATH.'includes/modules/shipping/'. $shipping_code. '.php'; if (file_exists($plugin)) { include_once($plugin); $shipping = new $shipping_code; //$order['invoice_no'] = $shipping->query($order['invoice_no']); } } /* 只有未确认才允许用户修改订单地址 */ if ($order['order_status'] == OS_UNCONFIRMED) { $order['allow_update_address'] = 1; //允许修改收货地址 } else { $order['allow_update_address'] = 0; } /* 获取订单中实体商品数量 */ $order['exist_real_goods'] = exist_real_goods($order_id); /* 如果是未付款状态,生成支付按钮 */ if (($order['pay_status'] == PS_PAYED_PART) || ($order['pay_status'] == PS_UNPAYED && ($order['order_status'] == OS_UNCONFIRMED || $order['order_status'] == OS_CONFIRMED))) { /* * 在线支付按钮 */ //支付方式信息 $payment_info = array(); $payment_info = payment_info($order['pay_id']); //无效支付方式 if ($payment_info === false) { $order['pay_online'] = ''; } else { //ecmoban模板堂 --will改 start //pc端如果使用的是app的支付方式,也不生成支付按钮 if (substr($payment_info['pay_code'], 0 , 4) == 'pay_') { $order['pay_online'] = ''; } else { //取得支付信息,生成支付代码 $payment = unserialize_config($payment_info['pay_config']); //获取需要支付的log_id $order['log_id'] = get_paylog_id($order['order_id'], $pay_type = PAY_ORDER); $order['user_name'] = $_SESSION['user_name']; $order['pay_desc'] = $payment_info['pay_desc']; /* 调用相应的支付方式文件 */ include_once(ROOT_PATH . 'includes/modules/payment/' . $payment_info['pay_code'] . '.php'); /* 取得在线支付方式的支付按钮 */ $pay_obj = new $payment_info['pay_code']; $order['pay_online'] = $pay_obj->get_code($order, $payment); } //ecmoban模板堂 --will end } } else { $order['pay_online'] = ''; } /* 无配送时的处理 */ $order['shipping_id'] == -1 and $order['shipping_name'] = $GLOBALS['_LANG']['shipping_not_need']; /* 其他信息初始化 */ $order['how_oos_name'] = $order['how_oos']; $order['how_surplus_name'] = $order['how_surplus']; /* 虚拟商品付款后处理 */ if ($order['pay_status'] != PS_UNPAYED) { /* 取得已发货的虚拟商品信息 */ $virtual_goods = get_virtual_goods($order_id, true); $virtual_card = array(); foreach ($virtual_goods AS $code => $goods_list) { /* 只处理虚拟卡 */ if ($code == 'virtual_card') { foreach ($goods_list as $goods) { if ($info = virtual_card_result($order['order_sn'], $goods)) { $virtual_card[] = array('goods_id'=>$goods['goods_id'], 'goods_name'=>$goods['goods_name'], 'info'=>$info); } } } /* 处理超值礼包里面的虚拟卡 */ if ($code == 'package_buy') { foreach ($goods_list as $goods) { $sql = 'SELECT g.goods_id FROM ' . $GLOBALS['ecs']->table('package_goods') . ' AS pg, ' . $GLOBALS['ecs']->table('goods') . ' AS g ' . "WHERE pg.goods_id = g.goods_id AND pg.package_id = '" . $goods['goods_id'] . "' AND extension_code = 'virtual_card'"; $vcard_arr = $GLOBALS['db']->getAll($sql); foreach ($vcard_arr AS $val) { if ($info = virtual_card_result($order['order_sn'], $val)) { $virtual_card[] = array('goods_id'=>$goods['goods_id'], 'goods_name'=>$goods['goods_name'], 'info'=>$info); } } } } } $var_card = deleteRepeat($virtual_card); $GLOBALS['smarty']->assign('virtual_card', $var_card); } /* 确认时间 支付时间 发货时间 */ if ($order['confirm_time'] > 0 && ($order['order_status'] == OS_CONFIRMED || $order['order_status'] == OS_SPLITED || $order['order_status'] == OS_SPLITING_PART)) { $order['confirm_time'] = sprintf($GLOBALS['_LANG']['confirm_time'], local_date($GLOBALS['_CFG']['time_format'], $order['confirm_time'])); } else { $order['confirm_time'] = ''; } if ($order['pay_time'] > 0 && $order['pay_status'] != PS_UNPAYED) { $order['pay_time'] = sprintf($GLOBALS['_LANG']['pay_time'], local_date($GLOBALS['_CFG']['time_format'], $order['pay_time'])); } else { $order['pay_time'] = ''; } if ($order['shipping_time'] > 0 && in_array($order['shipping_status'], array(SS_SHIPPED, SS_RECEIVED))) { $order['shipping_time'] = local_date($GLOBALS['_CFG']['time_format'], $order['shipping_time']); } else { $order['shipping_time'] = ''; } $order['add_time'] = local_date($GLOBALS['_CFG']['time_format'], $order['add_time']); /* 取得区域名 */ //IFNULL(c.region_name, ''), ' ', $sql = "SELECT concat(IFNULL(p.region_name, ''), " . "' ', IFNULL(t.region_name, ''), ' ', IFNULL(d.region_name, '')) AS region " . "FROM " . $GLOBALS['ecs']->table('order_info') . " AS o " . //"LEFT JOIN " . $GLOBALS['ecs']->table('region') . " AS c ON o.country = c.region_id " . "LEFT JOIN " . $GLOBALS['ecs']->table('region') . " AS p ON o.province = p.region_id " . "LEFT JOIN " . $GLOBALS['ecs']->table('region') . " AS t ON o.city = t.region_id " . "LEFT JOIN " . $GLOBALS['ecs']->table('region') . " AS d ON o.district = d.region_id " . "WHERE o.order_id = '" .$order['order_id']. "'"; $order['region'] = $GLOBALS['db']->getOne($sql); return $order; } /** * 获得退换货订单信息 * @param type $order_id * @param type $user_id * @return boolean by leah */ function get_return_detail( $ret_id, $user_id = 0 ){ include_once(ROOT_PATH . 'includes/lib_order.php'); $ret_id = intval($ret_id); if ($ret_id <= 0) { $GLOBALS['err']->add($GLOBALS['_LANG']['invalid_order_id']); return false; } $order = return_order_info($ret_id); return $order ; } /** * 获取用户可以和并的订单数组 * * @access public * @param int $user_id 用户ID * * @return array $merge 可合并订单数组 */ function get_user_merge($user_id) { include_once(ROOT_PATH . 'includes/lib_order.php'); $sql = "SELECT order_sn FROM ".$GLOBALS['ecs']->table('order_info') . " WHERE user_id = '$user_id' " . order_query_sql('unprocessed') . "AND extension_code = '' ". " ORDER BY add_time DESC"; $list = $GLOBALS['db']->GetCol($sql); $merge = array(); foreach ($list as $val) { $merge[$val] = $val; } return $merge; } /** * 合并指定用户订单 * * @access public * @param string $from_order 合并的从订单号 * @param string $to_order 合并的主订单号 * * @return boolen $bool */ function merge_user_order($from_order, $to_order, $user_id = 0) { if ($user_id > 0) { /* 检查订单是否属于指定用户 */ if (strlen($to_order) > 0) { $sql = "SELECT user_id FROM " .$GLOBALS['ecs']->table('order_info'). " WHERE order_sn = '$to_order'"; $order_user = $GLOBALS['db']->getOne($sql); if ($order_user != $user_id) { $GLOBALS['err']->add($GLOBALS['_LANG']['no_priv']); } } else { $GLOBALS['err']->add($GLOBALS['_LANG']['order_sn_empty']); return false; } } $result = merge_order($from_order, $to_order); if ($result === true) { return true; } else { $GLOBALS['err']->add($result); return false; } } /** * 将指定订单中的商品添加到购物车 * * @access public * @param int $order_id *@param array $rec_id 订单商品编号 * @return mix $message 成功返回true, 错误返回出错信息 */ function return_to_cart($order_id, $rec_id=array()) { //ecmoban模板堂 --zhuo start if(!empty($_SESSION['user_id'])){ $sess_id = " user_id = '" . $_SESSION['user_id'] . "' "; $sess = ""; }else{ $sess_id = " session_id = '" . real_cart_mac_ip() . "' "; $sess = real_cart_mac_ip(); } //ecmoban模板堂 --zhuo end /* 初始化基本件数量 goods_id => goods_number */ $basic_number = array(); /* 查订单商品:不考虑赠品 */ $sql = "SELECT rec_id,goods_id, product_id,goods_number, goods_attr, parent_id, model_attr, goods_attr_id, " . " goods_price, ru_id, warehouse_id, area_id, model_attr, shopping_fee " . //ecmoban模板堂 --zhuo " FROM " . $GLOBALS['ecs']->table('order_goods') . " WHERE order_id = '$order_id' AND is_gift = 0 AND extension_code <> 'package_buy'" . " ORDER BY parent_id ASC"; $res = $GLOBALS['db']->query($sql); $time = gmtime(); while ($row = $GLOBALS['db']->fetchRow($res)) { // 查该商品信息:是否删除、是否上架 //ecmoban模板堂 --zhuo $sql = "SELECT g.goods_sn, g.goods_name, " . "IF(g.model_inventory < 1, g.goods_number, IF(g.model_inventory < 2, wg.region_number, wag.region_number)) AS goods_number, ". " g.market_price, " . "IF(g.is_promote = 1 AND '$time' BETWEEN g.promote_start_date AND g.promote_end_date, g.promote_price, g.shop_price) AS goods_price," . "g.is_real, g.extension_code, g.is_alone_sale, g.goods_type " . "FROM " . $GLOBALS['ecs']->table('goods') . " as g " . " left join " .$GLOBALS['ecs']->table('warehouse_goods'). " as wg on g.goods_id = wg.goods_id" . " left join " .$GLOBALS['ecs']->table('warehouse_area_goods'). " as wag on g.goods_id = wag.goods_id" . " WHERE g.goods_id = '$row[goods_id]' " . " AND is_delete = 0 LIMIT 1"; $goods = $GLOBALS['db']->getRow($sql); // 如果该商品不存在,处理下一个商品 if (empty($goods) || (!empty($rec_id) && !in_array($row['rec_id'], $rec_id))) { continue; } if($row['product_id']) { $order_goods_product_id=$row['product_id']; //ecmoban模板堂 --zhuo satrt if($row['model_attr'] == 1){ $products_table = "products_warehouse"; }elseif($row['model_attr'] == 2){ $products_table = "products_area"; }else{ $products_table = "products"; } //ecmoban模板堂 --zhuo end $sql="SELECT product_number from ".$GLOBALS['ecs']->table($products_table)."where product_id='$order_goods_product_id'"; $product_number=$GLOBALS['db']->getOne($sql); } // 如果使用库存,且库存不足,修改数量 if ($GLOBALS['_CFG']['use_storage'] == 1 && ($row['product_id']?($product_number<$row['goods_number']):($goods['goods_number'] < $row['goods_number']))) { if ($goods['goods_number'] == 0 || $product_number=== 0) { // 如果库存为0,处理下一个商品 continue; } else { if($row['product_id']) { $row['goods_number']=$product_number; } else { // 库存不为0,修改数量 $row['goods_number'] = $goods['goods_number']; } } } //检查商品价格是否有会员价格 $sql = "SELECT goods_number FROM" . $GLOBALS['ecs']->table('cart') . " " . "WHERE " . $sess_id . "AND goods_id = '" . $row['goods_id'] . "' " . "AND rec_type = '" . CART_GENERAL_GOODS . "' LIMIT 1"; $temp_number = $GLOBALS['db']->getOne($sql); $row['goods_number'] += $temp_number; $attr_array = empty($row['goods_attr_id']) ? array() : explode(',', $row['goods_attr_id']); $goods['goods_price'] = get_final_price($row['goods_id'], $row['goods_number'], true, $attr_array); // 要返回购物车的商品 $return_goods = array( 'goods_id' => $row['goods_id'], 'goods_sn' => addslashes($goods['goods_sn']), 'goods_name' => addslashes($goods['goods_name']), 'market_price' => $goods['market_price'], 'product_id' => $row['product_id'], //ecmoban模板堂 --zhu 商品货品ID 'goods_price' => $row['goods_price'], //ecmoban模板堂 --zhuo 商品价格 'warehouse_id' => $row['warehouse_id'], //ecmoban模板堂 --zhuo 仓库 'area_id' => $row['area_id'], //ecmoban模板堂 --zhuo 仓库地区 'ru_id' => $row['ru_id'], //ecmoban模板堂 --zhuo 商家ID 'model_attr' => $row['model_attr'], //ecmoban模板堂 --zhuo 商品属性模式 'shopping_fee' => $row['shopping_fee'], //ecmoban模板堂 --zhuo 商品运费 'goods_number' => $row['goods_number'], 'goods_attr' => empty($row['goods_attr']) ? '' : addslashes($row['goods_attr']), 'goods_attr_id' => empty($row['goods_attr_id']) ? '' : $row['goods_attr_id'], 'is_real' => $goods['is_real'], 'extension_code'=> addslashes($goods['extension_code']), 'parent_id' => '0', 'is_gift' => '0', 'rec_type' => CART_GENERAL_GOODS ); // 如果是配件 if ($row['parent_id'] > 0) { // 查询基本件信息:是否删除、是否上架、能否作为普通商品销售 $sql = "SELECT goods_id " . "FROM " . $GLOBALS['ecs']->table('goods') . " WHERE goods_id = '$row[parent_id]' " . " AND is_delete = 0 AND is_on_sale = 1 AND is_alone_sale = 1 LIMIT 1"; $parent = $GLOBALS['db']->getRow($sql); if ($parent) { // 如果基本件存在,查询组合关系是否存在 $sql = "SELECT goods_price " . "FROM " . $GLOBALS['ecs']->table('group_goods') . " WHERE parent_id = '$row[parent_id]' " . " AND goods_id = '$row[goods_id]' LIMIT 1"; $fitting_price = $GLOBALS['db']->getOne($sql); if ($fitting_price) { // 如果组合关系存在,取配件价格,取基本件数量,改parent_id $return_goods['parent_id'] = $row['parent_id']; $return_goods['goods_price'] = $fitting_price; $return_goods['goods_number'] = $basic_number[$row['parent_id']]; } } } else { // 保存基本件数量 $basic_number[$row['goods_id']] = $row['goods_number']; } // 返回购物车:看有没有相同商品 $sql = "SELECT goods_id " . "FROM " . $GLOBALS['ecs']->table('cart') . " WHERE " . $sess_id . " AND goods_id = '$return_goods[goods_id]' " . " AND goods_attr = '$return_goods[goods_attr]' " . " AND parent_id = '$return_goods[parent_id]' " . " AND is_gift = 0 " . " AND rec_type = '" . CART_GENERAL_GOODS . "'"; $cart_goods = $GLOBALS['db']->getOne($sql); if (empty($cart_goods)) { // 没有相同商品,插入 $return_goods['session_id'] = $sess; $return_goods['user_id'] = $_SESSION['user_id']; $GLOBALS['db']->autoExecute($GLOBALS['ecs']->table('cart'), $return_goods, 'INSERT'); } else { // 有相同商品,修改数量 $sql = "UPDATE " . $GLOBALS['ecs']->table('cart') . " SET " . "goods_number = '" . $return_goods['goods_number'] . "' " . ",goods_price = '" . $return_goods['goods_price'] . "' " . "WHERE " . $sess_id . "AND goods_id = '" . $return_goods['goods_id'] . "' " . "AND rec_type = '" . CART_GENERAL_GOODS . "' LIMIT 1"; $GLOBALS['db']->query($sql); } } // 清空购物车的赠品 $sql = "DELETE FROM " . $GLOBALS['ecs']->table('cart') . " WHERE " .$sess_id. " AND is_gift = 1"; $GLOBALS['db']->query($sql); return true; } /** * 保存用户收货地址 * * @access public * @param array $address array_keys(consignee string, email string, address string, zipcode string, tel string, mobile stirng, sign_building string, best_time string, order_id int) * @param int $user_id 用户ID * * @return boolen $bool */ function save_order_address($address, $user_id) { $GLOBALS['err']->clean(); /* 数据验证 */ empty($address['consignee']) and $GLOBALS['err']->add($GLOBALS['_LANG']['consigness_empty']); empty($address['address']) and $GLOBALS['err']->add($GLOBALS['_LANG']['address_empty']); $address['order_id'] == 0 and $GLOBALS['err']->add($GLOBALS['_LANG']['order_id_empty']); if (empty($address['email'])) { $GLOBALS['err']->add($GLOBALS['email_empty']); } else { if (!is_email($address['email'])) { $GLOBALS['err']->add(sprintf($GLOBALS['_LANG']['email_invalid'], $address['email'])); } } if ($GLOBALS['err']->error_no > 0) { return false; } /* 检查订单状态 */ $sql = "SELECT user_id, order_status FROM " .$GLOBALS['ecs']->table('order_info'). " WHERE order_id = '" .$address['order_id']. "'"; $row = $GLOBALS['db']->getRow($sql); if ($row) { if ($user_id > 0 && $user_id != $row['user_id']) { $GLOBALS['err']->add($GLOBALS['_LANG']['no_priv']); return false; } if ($row['order_status'] != OS_UNCONFIRMED) { $GLOBALS['err']->add($GLOBALS['_LANG']['require_unconfirmed']); return false; } $GLOBALS['db']->autoExecute($GLOBALS['ecs']->table('order_info'), $address, 'UPDATE', "order_id = '$address[order_id]'"); return true; } else { /* 订单不存在 */ $GLOBALS['err']->add($GLOBALS['_LANG']['order_exist']); return false; } } /** * * @access public * @param int $user_id 用户ID * @param int $num 列表显示条数 * @param int $start 显示起始位置 * * @return array $arr 红保列表 */ function get_user_bouns_list($user_id, $num = 10, $start = 0) { $sql = "SELECT u.bonus_sn, u.order_id, b.type_name, b.type_money, b.min_goods_amount, b.use_start_date, b.use_end_date ". " FROM " .$GLOBALS['ecs']->table('user_bonus'). " AS u ,". $GLOBALS['ecs']->table('bonus_type'). " AS b". " WHERE u.bonus_type_id = b.type_id AND u.user_id = '" .$user_id. "'"; $res = $GLOBALS['db']->selectLimit($sql, $num, $start); $arr = array(); $day = getdate(); $cur_date = local_mktime(23, 59, 59, $day['mon'], $day['mday'], $day['year']); while ($row = $GLOBALS['db']->fetchRow($res)) { /* 先判断是否被使用,然后判断是否开始或过期 */ if (empty($row['order_id'])) { /* 没有被使用 */ if ($row['use_start_date'] > $cur_date) { $row['status'] = $GLOBALS['_LANG']['not_start']; } else if ($row['use_end_date'] < $cur_date) { $row['status'] = $GLOBALS['_LANG']['overdue']; } else { $row['status'] = $GLOBALS['_LANG']['not_use']; } } else { $row['status'] = '' .$GLOBALS['_LANG']['had_use']. ''; } $row['use_startdate'] = local_date($GLOBALS['_CFG']['date_format'], $row['use_start_date']); $row['use_enddate'] = local_date($GLOBALS['_CFG']['date_format'], $row['use_end_date']); $arr[] = $row; } return $arr; } /** * 获得会员的团购活动列表 * * @access public * @param int $user_id 用户ID * @param int $num 列表显示条数 * @param int $start 显示起始位置 * * @return array $arr 团购活动列表 */ function get_user_group_buy($user_id, $num = 10, $start = 0) { return true; } /** * 获得团购详细信息(团购订单信息) * * */ function get_group_buy_detail($user_id, $group_buy_id) { return true; } /** * 去除虚拟卡中重复数据 * * */ function deleteRepeat($array){ $_card_sn_record = array(); foreach ($array as $_k => $_v){ foreach ($_v['info'] as $__k => $__v){ if (in_array($__v['card_sn'],$_card_sn_record)){ unset($array[$_k]['info'][$__k]); } else { array_push($_card_sn_record,$__v['card_sn']); } } } return $array; } ?>