order.html
14.1 KB
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
{echo:JS::import("form")}
{echo:JS::import('dialog?skin=tinysimple');}
{echo:JS::import('dialogtools');}
<link type="text/css" rel="stylesheet" href="{url:#css/simple.css}" />
{set:$items=array("购物车","确认订单信息","选择支付","订购完成");}
{widget:name=sub_navs action=crumbs items=$items step=4 current=2}
<div class="container">
<div class="order-info mt20">
{if:isset($msg)}
<div class="message_{$msg[0]}">{$msg[1]}</div>
{/if}
<form action="{url:/simple/order_act}" method="post">
<div class="clearfix address address-box">
<h2><b class="fl">选择收货地址:</b><a class="btn btn-main btn-mini fr" href="{url:/ucenter/address}" target="_blank">管理地址</a></h2>
<ul class="address-list clearfix">
{set:$address_default=0;}
{list:items=$address}
<li>
<a href="javascript:;" data-value="{$item['id']}" class="modify"> 修改地址 </a>
<div class="address-info " >
<input type="radio" name="address_id" value="{$item['id']}" {if:$item['is_default']==1}{set:$address_default=$item['id']}checked="checked"{/if}><label>{$parse_area[$item['province']]} <strong>{$parse_area[$item['city']]}</strong>({$item['accept_name']} 收)</label>
<p>
{$parse_area[$item['county']]} {$item['addr']} {$item['mobile']}
</p>
</div>
<i class="icon-selected-32 ie6png"></i>
</li>
{/list}
</ul>
<div><a id="address_other" class="btn btn-main btn-mini" href="javascript:;">使用新地址</a></div>
</div>
<h2 class="f14 mt20">支付方式:</h2>
<div class="clearfix">
<ul class="payment-list">
{set:$payment_default = 1;}
{query:name=payment as pa fields=pa.*,pp.logo,pp.class_name join=left join pay_plugin as pp on pa.plugin_id eq pp.id where=pa.status eq 0 and (pa.client_type eq 0 or pa.client_type eq 2) order=pa.sort desc}
<li ><input type="radio" name="payment_id" {if:$key==0} {set:$payment_default = $item['id'];} checked="checked"{/if} value="{$item['id']}"><label><b>{$item['pay_name']}</b> {$item['pay_desc']}</label>
<div><img src="{url:@protected/classes/$item[logo]}"></div>
</li>
{/query}
</ul>
</div>
<h2 class="f14 mt20">商品清单:</h2>
<div class="mt15 clearfix">
<table width="100%" class="simple">
<tr>
<th style="width:60px;">商品</th>
<th>名称</th>
<th style="width:120px;">规格</th>
<th style="width:100px;">单价</th>
<th style="width:120px;">数量</th>
<th style="width:100px;">优惠</th>
<th style="width:100px;">小计</th>
</tr>
{set:$total=0.00;$weight=0;$point=0;$allVirtual=true}
{list:items=$cart}
{set:$total+=$item['amount'];$weight += ($item['weight']*$item['num']);$point += ($item['point']*$item['num']);}
{if:$item['goods_type']==0}{set:$allVirtual=false;}{/if}
<tr id="{$item['id']}"><td><a href="{url:/index/product/id/$item[goods_id]}" target="_blank"><img src="{url:@$item[img]}" width="50" height="50"></a></td><td><a href="{url:/index/product/id/$item[goods_id]}" target="_blank">{$item['name']}</a></td> <td>{list:items=$item['spec'] item=$spec}
<p title="{$spec['name']}:{$spec['value'][2]}">{$spec['name']}:{$spec['value'][2]}</p>
{/list}</td> <td class="tr">{$item['price']}</td> <td class="tc"><div class="buy-num-bar buy-num clearfix">{$item['num']}</div></td> <td class="prom tc">{$item['prom']}</td> <td class="amount red tr">{$item['amount']}</td> </tr>
{/list}
</table>
{set:$prom = new Prom($total);$proms = $prom->meetProms();}
{set:$fare = new Fare($weight);}
<table class="mt10 simple noborder form">
<tr><td> <p>订单备注信息:<input type="text" name="user_remark" style="width:346px;"></p> </td> <td width="260" class="tr">购物车商品合计:</td> <td width="140"><div class="mb10 mt10" style=" background: #f0f0f0;"><span class="fr"><span style=""><span class="currency-symbol f18">{$currency_symbol}</span><b class="cart-total red f18" id="total-amount" total="{$total}">{echo:sprintf("%01.2f",$total)} </b></span></span></div>
</td></tr>
<tr>
<td >
<p >订单促销活动:{if:!empty($proms)}<select name="prom_id" id="prom_order">
{list:items=$proms}
{set:$parse_prom = $prom->parsePorm($item);}
<option value="{$item['id']}" data-type="{$item['type']}" data-value="{$parse_prom['value']}"> {$parse_prom['note']} </option>
{/list}
</select>{/if}</p>
</td>
<td class="tr">
<p class="fr">订单优惠:</p>
</td>
<td class="tr">- <b id="prom_order_text">0</b></td>
</tr>
{if:$open_invoice}
<tr >
<td>
<p style="height:32px;line-height:32px;">索要发票({$tax}%):<input type="checkbox" name="is_invoice" id="is_invoice" value="1" data-value="{$tax}"> <span id="invoice" {if:isset($is_invoice) && $is_invoice==1} {else:}style="display:none;"{/if}>发票抬头:<select name="invoice_type"><option value="0">个人</option><option value="1">单位</option></select> <input type="text" name="invoice_title" ></span></p>
</td>
<td class="tr">税:</td>
<td>
<p class="fr">+ <b id="taxes" data-value="{$tax}">0</b></p>
</td>
</tr>
{/if}
<tr>
<td >
</td>
<td class="tr">运费:</td>
<td>
<p class="fr">+ <b id="fare" data-weight="{$weight}">{echo:$fare->calculate(16);}</b></p>
</td>
</tr>
<tr>
<td >
</td>
<td class="tr orange">送积分:</td>
<td>
<p class="fr orange"><b id="point" data-point="{$point}">{$point}</b></p>
</td>
</tr>
<tr><td>
<a href="javascript:;" id="voucher-btn" style="line-height: 25px;height:25px;"><i class="icon-plus "></i>使用代金券抵消部分总额:</a>
</td><td class="tr">代金券:</td>
<td class="tr">- <b id="voucher">0.00</b></td></tr>
</table>
</div>
<div class="box p15 mt5" id="voucher-n" style="display: none">
<p class="clearfix">提示:一个订单最多能使用一张代金券(<b class="red">注:代金券仅能抵扣商品金额,多出商品的部分忽略不计</b>)。<a id="voucher-cancel" class="fr btn btn-mini ">取消优惠券</a></p>
<table class="voucher-list mt10" >
<tr style="background: #fff5cc;color: #000;height:20px;"><td>名称</td>
<td>编号</td>
<td>面值</td>
<td>需满足金额</td>
<td>有效期</td></tr>
<tbody class="page-content">
<tr>
<td><input name="voucher" type="radio" value="{id}" data-value="{value}"> <label>{name}</label></td>
<td>{account}</td>
<td>{value}</td>
<td>{money}</td>
<td>{end_time}</td>
</tr>
</tbody>
</table>
<div class="page-nav">ww</div>
</div>
<div class="mb10 mt10 clearfix" style="padding:10px; background: #f0f0f0;">
<span class="fr f14">应付总额:<span style="font-size: 24px;font-family: tahoma"><span class="currency-symbol">{$currency_symbol}</span><b class="cart-total red" id="real-total">{echo:sprintf("%01.2f",$total)}</b></span></span>
</div>
<div class=" clearfix mt10">
<input name="cart_type" type="hidden" value="{$cart_type|''}">
<p class=""><input type="submit" class="btn btn-main fr" value="提交订单"></p>
</div>
{token:key=order}
</form>
</div>
</div>
<script type="text/javascript">
{if:$allVirtual}
$('.address-box').hide();
{/if}
$("#address_other").on("click",function(){
art.dialog.open('{url:/simple/address_other}',{width:960,height:460,lock:true});
return false;
})
$(".address-list .modify").each(function(){
$(this).on("click",function(){
var id = $(this).attr("data-value");
art.dialog.open('{url:/simple/address_other/id/}'+id,{width:960,height:460,lock:true});
return false;
});
});
$("#voucher-n").Paging({
url:'{url:/simple/get_voucher}',
params:{amount:{$total}},
callback:function(){
calculate();
$("#voucher-n input[name='voucher']").each(function(){
$(this).on("click",function(){
calculate();
});
});
}
});
$("#voucher-cancel").on("click",function(){
if($("#voucher-n input[name='voucher']:checked").size()>0){
$("#voucher-n input[name='voucher']:checked").prop("checked",false);
calculate();
}
})
$("#voucher-btn").on("click",function(){
$("#voucher-n").toggle();
if($("i",this).hasClass("icon-plus")){
$("i",this).removeClass("icon-plus");
$("i",this).addClass("icon-minus");
}
else{
$("i",this).removeClass("icon-minus");
$("i",this).addClass("icon-plus");
}
})
$(".address-list li").each(function(){
$(this).has("input[name='address_id']:checked").addClass("selected");
$(this).on("click",function(){
$(".address-list li").removeClass("selected");
$("input[name='address_id']").removeProp("checked");
$("input[name='address_id']",this).prop("checked","checked");
$(this).addClass("selected");
$("a.default").hide();
$("a.default",this).show();
var id = $("input[name='address_id']",this).val();
var weight = $("#fare").attr("data-weight");
var allvirtual = "{!=$allVirtual?'true':'false'}";
$.post("{url:/ajax/calculate_fare}",{weight:weight,id:id,allvirtual:allvirtual},function(data){
if(data['status']=='success'){
$("#fare").text(data['fee']);
calculate();
}
},'json');
});
});
FireEvent($(".address-list input[name='address_id']:checked").get(0),"click");
$(".payment-list li").each(function(){
$(this).has("input[name='payment_id']:checked").addClass("selected");
$(this).on("click",function(){
$(".payment-list li").removeClass("selected");
$("input[name='payment_id']").removeProp("checked");
$("input[name='payment_id']",this).prop("checked","checked");
$(this).addClass("selected");
});
});
$("#prom_order").on("change",function(){
calculate();
});
$("#is_invoice").on("click",function(){
if(!!$(this).prop("checked")){
$("#invoice").show();
}
else $("#invoice").hide();
calculate();
})
//计算实付金额
function calculate(){
var total = parseFloat($("#total-amount").attr("total"));
var voucher = 0;
var fare = parseFloat($("#fare").text());
if($("#voucher-n input[name='voucher']:checked").size()>0){
voucher = parseFloat($("#voucher-n input[name='voucher']:checked").attr('data-value'));
if(voucher==undefined) voucher =0;
}
total -= voucher;
$("#voucher").text(voucher.toFixed(2));
if(total<=0) total = 0;
if($("#is_invoice").size()>0){
if(!!$("#is_invoice").prop("checked")){
var tax_fee = ((total*{$tax})/100);
total += tax_fee;
$("#taxes").text(tax_fee.toFixed(2));
}
else{
$("#taxes").text("0.00");
}
}
total += fare;
if($("#prom_order").size()>0){
var prom_order = $("#prom_order").find("option:selected");
var type = prom_order.attr("data-type");
var value = parseFloat(prom_order.attr("data-value"));
var data_point =parseInt($("#point").attr("data-point"));
$("#point").text(data_point);
if(type!=4){
if(type==2){
data_point = data_point*value;
$("#point").text(data_point);
$("#prom_order_text").text('0.00');
}else{
total = (total-value);
$("#prom_order_text").text(value.toFixed(2));
}
}
else {
total = (total-value-fare);
$("#prom_order_text").text(fare.toFixed(2));
}
}
if(total<0)total = 0;
$("#real-total").text(total.toFixed(2));
}
calculate();
var form = new Form();
form.setValue('address_id',"{$order_status['address_id']|$address_default}");
form.setValue('payment_id',"{$order_status['payment_id']|$payment_default}");
form.setValue('user_remark',"{$order_status['user_remark']}");
form.setValue('prom_id',"{$order_status['prom_id']}");
{if:isset($is_invoice) && $is_invoice == 1}
form.setValue('is_invoice',"{$is_invoice}");
form.setValue('invoice_type',"{$invoice_type}");
form.setValue('invoice_title',"{$invoice_title}");
//FireEvent(document.getElementById('is_invoice'), 'click');
{/if}
</script>