-
Notifications
You must be signed in to change notification settings - Fork 27
/
quotation.php
156 lines (141 loc) · 6.06 KB
/
quotation.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<?php
/**
* 鸿宇多用户商城 报价单
* ============================================================================
* 版权所有 2015-2016 鸿宇多用户商城科技有限公司,并保留所有权利。
* 网站地址: http://bbs.hongyuvip.com;
* ----------------------------------------------------------------------------
* 仅供学习交流使用,如需商用请购买正版版权。鸿宇不承担任何法律责任。
* 踏踏实实做事,堂堂正正做人。
* ============================================================================
* $Author: Shadow & 鸿宇
* $Id: quotation.php 17217 2016-01-19 06:29:08Z Shadow & 鸿宇
*/
define('IN_ECS', true);
require(dirname(__FILE__) . '/includes/init.php');
$action = isset($_REQUEST['act']) ? trim($_REQUEST['act']) : 'default';
if ($action == 'print_quotation')
{
$smarty->template_dir = DATA_DIR;
$smarty->assign('shop_name', $_CFG['shop_title']);
$smarty->assign('cfg', $_CFG);
$where = get_quotation_where($_POST);
$sql = "SELECT g.goods_id, g.goods_name, g.shop_price, g.goods_number, c.cat_name AS goods_category,p.product_id,p.product_number,p.goods_attr".
" FROM " . $ecs->table('goods') . " AS g LEFT JOIN " . $ecs->table('category') . " AS c ON g.cat_id = c.cat_id LEFT JOIN ".$ecs->table('products')."as p On g.goods_id=p.goods_id" . $where . " AND is_on_sale = 1 AND is_alone_sale = 1 ";
$goods_list = $db->getAll($sql);
foreach($goods_list as $key=>$val)
{
if(!empty($val['product_id']))
{
$goods_list[$key]['goods_number']=$val['product_number'];
$product_info=product_info($val['goods_attr'],$val['goods_id']);
$goods_list[$key]['members_price'] = $val['shop_price'];
$goods_list[$key]['shop_price'] += $product_info['attr_price'];
$goods_list[$key]['product_name']=$product_info['attr_value'];
$goods_list[$key]['attr_price'] =$product_info['attr_price'];
}
else
{
$goods_list[$key]['members_price'] = $val['shop_price'];
$goods_list[$key]['product_name']=' ';
$goods_list[$key]['product_price']=0;
}
$goods_list[$key]['goods_key']=$key;
}
$user_rank = $db->getAll("SELECT * FROM " .$ecs->table('user_rank') . "WHERE show_price = 1 OR rank_id = '$_SESSION[user_rank]'");
$rank_point = 0;
if (!empty($_SESSION['user_id']))
{
$rank_point = $db->getOne("SELECT rank_points FROM " . $ecs->table('users') . " WHERE user_id = '$_SESSION[user_id]'");
}
$user_rank = calc_user_rank($user_rank, $rank_point);
$user_men = serve_user($goods_list);
$smarty->assign('extend_price', $user_rank['ext_price']);
$smarty->assign('extend_rank', $user_men);
$smarty->assign('goods_list', $goods_list);
$html = $smarty->fetch('quotation_print.html');
exit($html);
}
assign_template();
$position = assign_ur_here(0, $_LANG['quotation']);
$smarty->assign('page_title', $position['title']); // 页面标题
$smarty->assign('ur_here', $position['ur_here']); // 当前位置
$smarty->assign('cat_list', cat_list());
$smarty->assign('brand_list', get_brand_list());
if (is_null($smarty->get_template_vars('helps')))
{
$smarty->assign('helps', get_shop_help()); // 网店帮助
}
$smarty->display('quotation.dwt');
function get_quotation_where($filter)
{
include_once(ROOT_PATH . ADMIN_PATH . '/includes/lib_main.php');
$_filter = new StdClass();
$_filter->cat_id = $filter['cat_id'];
$_filter->brand_id = $filter['brand_id'];
$where = get_where_sql($_filter);
$_filter->keyword = $filter['keyword'];
$where .= isset($_filter->keyword) && trim($_filter->keyword) != '' ? " AND (g.goods_name LIKE '%" . mysql_like_quote($_filter->keyword) . "%' OR g.goods_sn LIKE '%" . mysql_like_quote($_filter->keyword) . "%' OR g.goods_id LIKE '%" . mysql_like_quote($_filter->keyword) . "%') " : '';
return $where;
}
function calc_user_rank($rank, $rank_point)
{
$_tmprank = array();
foreach($rank as $_rank)
{
if ($_rank['show_price'])
{
$_tmprank['ext_price'][] = $_rank['rank_name'];
$_tmprank['ext_rank'][] = $_rank['discount'];
}
else
{
if (!empty($_SESSION['user_id']) && ($rank_point >= $_rank['min_points']))
{
$_tmprank['ext_price'][] = $_rank['rank_name'];
$_tmprank['ext_rank'][] = $_rank['discount'];
}
}
}
return $_tmprank;
}
function serve_user($goods_list)
{
foreach ( $goods_list as $key=> $all_list )
{
$goods_id = $all_list['goods_id'];
$goods_key =$all_list['goods_key'];
$price = $all_list['members_price'];
$sql = "SELECT rank_id, IFNULL(mp.user_price, r.discount * $price / 100) AS price, r.rank_name, r.discount " .
'FROM ' . $GLOBALS['ecs']->table('user_rank') . ' AS r ' .
'LEFT JOIN ' . $GLOBALS['ecs']->table('member_price') . " AS mp ".
"ON mp.goods_id = '$goods_id' AND mp.user_rank = r.rank_id " .
"WHERE r.show_price = 1 OR r.rank_id = '$_SESSION[user_rank]'";
$res = $GLOBALS['db']->getAll($sql);
foreach ( $res as $row )
{
$arr[$row['rank_id']] = array(
'rank_name' => htmlspecialchars($row['rank_name']),
'price' => price_format($row['price']+$all_list['attr_price']));
}
$arr_list[$goods_key] = $arr;
}
return $arr_list;
}
function product_info($goods_attr,$goods_id)
{
$goods_attr=str_replace('|',' OR goods_attr_id=',$goods_attr);
$sql="SELECT attr_value,attr_price FROM ". $GLOBALS['ecs']->table('goods_attr') ." WHERE goods_id='$goods_id' AND (goods_attr_id = $goods_attr)";
$result =$GLOBALS['db']->getAll($sql);
$i=1;
$count=count($result);
foreach ($result as $val)
{
$i==$count?$f='':$f='<br/>';
$product_info['attr_value'].=$val['attr_value'].$f;
$product_info['attr_price']+=$val['attr_price'];
$i++;
}
return($product_info);
}
?>