Order.php
10.3 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
<?php
//订单处理类
class Order{
public static function updateStatus($orderNo,$payment_id=0,$callback_info=null){
$model = new Model("order");
$order = $model->where("order_no='".$orderNo."'")->find();
if(isset($callback_info['trade_no'])) $trading_info = $callback_info['trade_no'];
else $trading_info = '';
if(empty($order)) return false;
if($order['pay_status']==1){
return $order['id'];
}else if($order['pay_status']==0){
//更新订单信息
$data = array(
'status' => 3,
'pay_time' => date('Y-m-d H:i:s'),
'trading_info'=>$trading_info,
'pay_status' => 1,
);
//修改用户最后选择的支付方式
if($payment_id!=0){
$data['payment'] = $payment_id;
}else{
$payment_id = $order['payment'];
}
//更新订单支付状态
$model->table("order")->data($data)->where("id=".$order['id'])->update();
//商品中优惠券的处理
$products = $model->table("order_goods")->where("order_id=".$order['id'])->findAll();
$goods_ids = array();
$allVirtual = true;
$review = false;
$model_virtual_template = new Model('virtual_template');
foreach ($products as $pro) {
$prom = unserialize($pro['prom_goods']);
if(isset($prom['prom'])){
$prom = $prom['prom'];
//商品中优惠券的处理
if(isset($prom['type']) && $prom['type']==3 && $order['type']==0){
$voucher_template_id = $prom['expression'];
$voucher_template = $model->table("voucher_template")->where("id=".$voucher_template_id)->find();
Common::paymentVoucher($voucher_template,$order['user_id']);
//优惠券发放日志
}
}
//更新货品中的库存信息
$goods_nums = $pro['goods_nums'];
$product_id = $pro['product_id'];
$model->table("products")->where("id=".$product_id.' and (goods_type=0 or goods_type=2)')->data(array('store_nums'=>"`store_nums`-".$goods_nums))->update();
$goods_ids[$pro['goods_id']] = $pro['goods_id'];
if($pro['goods_type']==0) $allVirtual = false;
if ($pro['goods_type']==1){
$vt = $model_virtual_template->where('id='.$pro['virtual_extend'])->find();
for($i=0;$i<$goods_nums;$i++){
$account = strtoupper(CHash::random(16,'char'));
$password = strtoupper(CHash::random(16,'char'));
if($vt){
$start_time =date("Y-m-d");
$end_time = date("Y-m-d 23:59:59", strtotime("+".$vt['valid_days']." days"));
$vdata = array(
'user_id'=>$order['user_id'],
'order_id'=>$order['id'],
'template_id'=>$vt['id'],
'name'=>$vt['name'],
'value'=>$vt['value'],
'account'=>$account,
'password'=>$password,
'start_time'=>$start_time,
'end_time'=>$end_time,
'status'=>0
);
$review = true;
$model->table('virtual_goods')->data($vdata)->insert();
}
}
}elseif ($pro['goods_type']==2) {
$vg = $model->table('virtual_goods')->where('template_id='.$pro['virtual_extend'].' and status=1')->find();
if($vg){
$model->table('virtual_goods')->data(array('status'=>0,'order_id'=>$order['id'],'user_id'=>$order['user_id']))->where('id='.$vg['id'])->update();
$review = true;
}
}elseif ($pro['goods_type']==3) {
$review = true;
}
if($review){
$data = array('goods_id'=>$pro['goods_id'],'user_id'=>$order['user_id'],'order_no'=>$order['order_no'],'buy_time'=>$order['create_time']);
$model->table('review')->data($data)->insert();
}
}
if($allVirtual){
//订单完成
$model_tem = new Model('order');
$model_tem->where("id=".$order['id'])->data(array('delivery_status'=>2,'status'=>4,'completion_time'=>date('Y-m-d H:i:s'),'send_time'=>date('Y-m-d H:i:s')))->update();
//允许评价
$model_tem = new Model('order as od');
$products = $model_tem->join('left join order_goods as og on od.id=og.order_id')->where('od.id='.$order['id'])->findAll();
foreach ($products as $product) {
$data = array('goods_id'=>$product['goods_id'],'user_id'=>$order['user_id'],'order_no'=>$product['order_no'],'buy_time'=>$product['create_time']);
$model_tem->table('review')->data($data)->insert();
}
}
//系统发货提醒
$template_data = $order;
$area_parse = array();
$area_model = new Model('area');
$areas = $area_model->where("id in(".$order['province'].",".$order['city'].",".$order['county'].")")->findall();
foreach ($areas as $area) {
$area_parse[$area['id']] = $area['name'];
}
$area_parse[0] = "";
$template_data['address'] = $area_parse[$order['province']].$area_parse[$order['city']].$area_parse[$order['county']].$order['addr'];
$template_data['pay_time'] = date('H点i分s秒');
$NoticeService = new NoticeService();
$NoticeService->send('payment_order',$template_data);
//更新商品表里的库存信息
foreach ($goods_ids as $id) {
$objs = $model->table('products')->fields('sum(store_nums) as store_nums')->where('goods_id='.$id)->query();
if($objs){
$num = $objs[0]['store_nums'];
$model->table('goods')->data(array('store_nums'=>$num))->where('id='.$id.' and (goods_type=0 or goods_type=2)')->update();
}
}
//普通订单的处理
if($order['type']==0){
//订单优惠券活动事后处理
$prom = unserialize($order['prom']);
if(!empty($prom) && $prom['type']==3){
$voucher_template_id = $prom['expression'];
$voucher_template = $model->table("voucher_template")->where("id=".$voucher_template_id)->find();
Common::paymentVoucher($voucher_template,$order['user_id']);
}
}else if($order['type']==1){
//更新团购信息
$prom = unserialize($order['prom']);
if(isset($prom['id'])){
$groupbuy = $model->table("groupbuy")->where("id=".$prom['id'])->find();
if($groupbuy){
$goods_num = $groupbuy['goods_num'];
$order_num = $groupbuy['order_num'];
$max_num = $groupbuy['max_num'];
$end_time = $groupbuy['end_time'];
$time_diff = time()-strtotime($end_time);
foreach ($products as $pro){
$data = array('goods_num'=>($goods_num+$pro['goods_nums']),'order_num'=>$order_num+1);
}
if($time_diff>=0 || $max_num<=$data['goods_num']) $data['is_end'] = 1;
$model->table("groupbuy")->where("id=".$prom['id'])->data($data)->update();
}
}
}else if($order['type']==2){
//更新抢购信息
$prom = unserialize($order['prom']);
if(isset($prom['id'])){
$flashbuy = $model->table("flash_sale")->where("id=".$prom['id'])->find();
if($flashbuy){
$goods_num = $flashbuy['goods_num'];
$order_num = $flashbuy['order_num'];
$max_num = $flashbuy['max_num'];
$end_time = $flashbuy['end_time'];
$time_diff = time()-strtotime($end_time);
foreach ($products as $pro){
$data = array('goods_num'=>($goods_num+$pro['goods_nums']),'order_num'=>$order_num+1);
}
if($time_diff>=0 || $max_num<=$data['goods_num']) $data['is_end'] = 1;
$model->table("flash_sale")->where("id=".$prom['id'])->data($data)->update();
}
}
}
//送积分
if($order['point']>0){
Pointlog::write($order['user_id'], $order['point'], '购买商品,订单:'.$order['order_no'].' 赠送'.$order['point'].'积分');
}
//记录支付日志
// $paymentModel = new Model('payment');
// $paymentObj = $paymentModel->where("id=$payment_id")->find();
// $paymentName = $paymentObj['pay_name'];
// Log::balance((0-$order['order_amount']),$order['user_id'],'通过'.$paymentName.'方式进行商品购买,订单编号:'.$order['order_no']);
//对使用代金券的订单,修改代金券的状态
if($order['voucher_id']){
$model->table("voucher")->where("id=".$order['voucher_id'])->data(array('status'=>1))->update();
}
//生成收款单
$receivingData = array(
'order_id'=>$order['id'],
'user_id'=>$order['user_id'],
'amount'=>$order['order_amount'],
'create_time'=>date('Y-m-d H:i:s'),
'payment_time'=>date('Y-m-d H:i:s'),
'doc_type'=>0,
'payment_id'=>$payment_id,
'pay_status'=>1
);
$model->table("doc_receiving")->data($receivingData)->insert();
//统计会员规定时间内的消费金额,进行会员升级。
$config = Config::getInstance();
$config_other = $config->get('other');
$grade_days = isset($config_other['other_grade_days'])?intval($config_other['other_grade_days']):365;
$time = date("Y-m-d H:i:s",strtotime("-".$grade_days." day"));
$obj = $model->table("doc_receiving")->fields("sum(amount) as amount")->where("user_id=".$order['user_id']." and doc_type=0 and payment_time > '$time'")->query();
if(isset($obj[0])){
$amount = $obj[0]['amount'];
$grade = $model->table('grade')->where('money < '.$amount)->order('money desc')->find();
if($grade){
$model->table('customer')->data(array('group_id'=>$grade['id']))->where("user_id=".$order['user_id'])->update();
}
}
return $order['id'];
}else{
return false;
}
}
//充值
public static function recharge($recharge_no,$payment_id=0,$callback_info=null){
$model = new Model("recharge");
$recharge = $model->where("recharge_no='".$recharge_no."'")->find();
if(empty($recharge)){
return false;
}
if($recharge['status']==1){
return $recharge['id'];
}else{
//更新充值订单信息
$model->data(array('status'=>1))->where("recharge_no='".$recharge_no."'")->update();
$account = $recharge['account'];
$user_id = $recharge['user_id'];
//给用户充值
$result = $model->table("customer")->data(array('balance'=>"`balance`+".$account))->where("user_id=".$user_id)->update();
if($result){
//填写收款单
$receivingData = array(
'order_id'=>$recharge['id'],
'user_id'=>$user_id,
'amount'=>$account,
'create_time'=>date('Y-m-d H:i:s'),
'payment_time'=>date('Y-m-d H:i:s'),
'doc_type'=>1,
'payment_id'=>$payment_id,
'pay_status'=>1
);
$model->table("doc_receiving")->data($receivingData)->insert();
//写充值日志
Log::balance($account,$user_id,'用户充值,充值编号:'.$recharge_no,1);
return $recharge['id'];
}
return false;
}
}
}