Order.php
37.9 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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
<?php
/**
* tpshop
* ============================================================================
* 版权所有 2015-2027 深圳搜豹网络科技有限公司,并保留所有权利。
* 网站地址: http://www.tp-shop.cn
* ----------------------------------------------------------------------------
* 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
* 不允许对程序代码以任何形式任何目的的再发布。
* ============================================================================
* Author: 当燃
* Date: 2015-09-09
*/
namespace app\manager\controller;
use app\manager\logic\OrderLogic;
use think\AjaxPage;
use think\Page;
use think\Db;
class Order extends Base {
public $order_status;
public $pay_status;
public $shipping_status;
/*
* 初始化操作
*/
public function _initialize() {
parent::_initialize();
C('TOKEN_ON',false); // 关闭表单令牌验证
$this->order_status = C('ORDER_STATUS');
$this->pay_status = C('PAY_STATUS');
$this->shipping_status = C('SHIPPING_STATUS');
// 订单 支付 发货状态
$this->assign('order_status',$this->order_status);
$this->assign('pay_status',$this->pay_status);
$this->assign('shipping_status',$this->shipping_status);
}
/*
*订单首页
*/
public function index(){
$begin = date('Y-m-d',strtotime("-1 year"));//30天前
$end = date('Y/m/d',strtotime('+1 days'));
$this->assign('timegap',$begin.'-'.$end);
return $this->fetch();
}
/*
*Ajax首页
*/
public function ajaxindex(){
$orderLogic = new OrderLogic();
$timegap = I('timegap');
if($timegap){
$gap = explode('-', $timegap);
$begin = strtotime($gap[0]);
$end = strtotime($gap[1]);
}else{
//@new 新后台UI参数
$begin = strtotime(I('add_time_begin'));
$end = strtotime(I('add_time_end'));
}
// 搜索条件
$condition = array();
$keyType = I("keytype");
$keywords = I('keywords','','trim');
$consignee = ($keyType && $keyType == 'consignee') ? $keywords : I('consignee','','trim');
$consignee ? $condition['consignee'] = trim($consignee) : false;
if($begin && $end){
$condition['add_time'] = array('between',"$begin,$end");
}
$order_sn = ($keyType && $keyType == 'order_sn') ? $keywords : I('order_sn') ;
$order_sn ? $condition['order_sn'] = trim($order_sn) : false;
I('order_status') != '' ? $condition['order_status'] = I('order_status') : false;
I('pay_status') != '' ? $condition['pay_status'] = I('pay_status') : false;
I('pay_code') != '' ? $condition['pay_code'] = I('pay_code') : false;
I('shipping_status') != '' ? $condition['shipping_status'] = I('shipping_status') : false;
I('user_id') ? $condition['user_id'] = trim(I('user_id')) : false;
$sort_order = I('order_by','DESC').' '.I('sort');
$count = M('order')->where($condition)->count();
$Page = new AjaxPage($count,20);
// 搜索条件下 分页赋值
foreach($condition as $key=>$val) {
if($key == 'add_time'){
$between_time = explode(',',$val[1]);
$parameter_add_time = date('Y/m/d',$between_time[0]) . '-' . date('Y/m/d',$between_time[1]);
$Page->parameter['timegap'] = $parameter_add_time;
}else{
$Page->parameter[$key] = urlencode($val);
}
}
$show = $Page->show();
//获取订单列表
$orderList = $orderLogic->getOrderList($condition,$sort_order,$Page->firstRow,$Page->listRows);
$this->assign('orderList',$orderList);
$this->assign('page',$show);// 赋值分页输出
$this->assign('pager',$Page);
return $this->fetch();
}
/*
* ajax 发货订单列表
*/
public function ajaxdelivery(){
$orderLogic = new OrderLogic();
$condition = array();
I('consignee') ? $condition['consignee'] = trim(I('consignee')) : false;
I('order_sn') != '' ? $condition['order_sn'] = trim(I('order_sn')) : false;
$shipping_status = I('shipping_status');
$condition['shipping_status'] = empty($shipping_status) ? array('neq',1) : $shipping_status;
$condition['order_status'] = array('in','1,2,4');
$count = M('order')->where($condition)->count();
$Page = new AjaxPage($count,10);
//搜索条件下 分页赋值
foreach($condition as $key=>$val) {
if(!is_array($val)){
$Page->parameter[$key] = urlencode($val);
}
}
$show = $Page->show();
$orderList = M('order')->where($condition)->limit($Page->firstRow.','.$Page->listRows)->order('add_time DESC')->select();
$this->assign('orderList',$orderList);
$this->assign('page',$show);// 赋值分页输出
$this->assign('pager',$Page);
return $this->fetch();
}
/**
* 订单详情
* @param int $id 订单id
*/
public function detail($order_id){
$orderLogic = new OrderLogic();
$order = $orderLogic->getOrderInfo($order_id);
$orderGoods = $orderLogic->getOrderGoods($order_id);
$button = $orderLogic->getOrderButton($order);
// 获取操作记录
$action_log = M('order_action')->where(array('order_id'=>$order_id))->order('log_time desc')->select();
$userIds = array();
//查找用户昵称
foreach ($action_log as $k => $v){
$userIds[$k] = $v['action_user'];
}
if($userIds && count($userIds) > 0){
$users = M("users")->where("user_id in (".implode(",",$userIds).")")->getField("user_id , nickname" , true);
}
$this->assign('users',$users);
$this->assign('order',$order);
$this->assign('action_log',$action_log);
$this->assign('orderGoods',$orderGoods);
$split = count($orderGoods) >1 ? 1 : 0;
foreach ($orderGoods as $val){
if($val['goods_num']>1){
$split = 1;
}
}
$this->assign('split',$split);
$this->assign('button',$button);
return $this->fetch();
}
/**
* 订单编辑
* @param int $id 订单id
*/
public function edit_order(){
$order_id = I('order_id');
$orderLogic = new OrderLogic();
$order = $orderLogic->getOrderInfo($order_id);
if($order['shipping_status'] != 0){
$this->error('已发货订单不允许编辑');
exit;
}
$orderGoods = $orderLogic->getOrderGoods($order_id);
if(IS_POST)
{
$order['consignee'] = I('consignee');// 收货人
$order['province'] = I('province'); // 省份
$order['city'] = I('city'); // 城市
$order['district'] = I('district'); // 县
$order['address'] = I('address'); // 收货地址
$order['mobile'] = I('mobile'); // 手机
$order['invoice_title'] = I('invoice_title');// 发票
$order['admin_note'] = I('admin_note'); // 管理员备注
$order['admin_note'] = I('admin_note'); //
$order['shipping_code'] = I('shipping');// 物流方式
$order['shipping_name'] = M('plugin')->where(array('status'=>1,'type'=>'shipping','code'=>I('shipping')))->getField('name');
$order['pay_code'] = I('payment');// 支付方式
$order['pay_name'] = M('plugin')->where(array('status'=>1,'type'=>'payment','code'=>I('payment')))->getField('name');
$goods_id_arr = I("goods_id/a");
$new_goods = $old_goods_arr = array();
//################################订单添加商品
if($goods_id_arr){
$new_goods = $orderLogic->get_spec_goods($goods_id_arr);
foreach($new_goods as $key => $val)
{
$val['order_id'] = $order_id;
$rec_id = M('order_goods')->add($val);//订单添加商品
if(!$rec_id)
$this->error('添加失败');
}
}
//################################订单修改删除商品
$old_goods = I('old_goods/a');
foreach ($orderGoods as $val){
if(empty($old_goods[$val['rec_id']])){
M('order_goods')->where("rec_id=".$val['rec_id'])->delete();//删除商品
}else{
//修改商品数量
if($old_goods[$val['rec_id']] != $val['goods_num']){
$val['goods_num'] = $old_goods[$val['rec_id']];
M('order_goods')->where("rec_id=".$val['rec_id'])->save(array('goods_num'=>$val['goods_num']));
}
$old_goods_arr[] = $val;
}
}
$goodsArr = array_merge($old_goods_arr,$new_goods);
$result = calculate_price($order['user_id'],$goodsArr,$order['shipping_code'],0,$order['province'],$order['city'],$order['district'],0,0,0,0);
if($result['status'] < 0)
{
$this->error($result['msg']);
}
//################################修改订单费用
$order['goods_price'] = $result['result']['goods_price']; // 商品总价
$order['shipping_price'] = $result['result']['shipping_price'];//物流费
$order['order_amount'] = $result['result']['order_amount']; // 应付金额
$order['total_amount'] = $result['result']['total_amount']; // 订单总价
$o = M('order')->where('order_id='.$order_id)->save($order);
$l = $orderLogic->orderActionLog($order_id,'edit','修改订单');//操作日志
if($o && $l){
$this->success('修改成功',U('Admin/Order/editprice',array('order_id'=>$order_id)));
}else{
$this->success('修改失败',U('Admin/Order/detail',array('order_id'=>$order_id)));
}
exit;
}
// 获取省份
$province = M('region')->where(array('parent_id'=>0,'level'=>1))->select();
//获取订单城市
$city = M('region')->where(array('parent_id'=>$order['province'],'level'=>2))->select();
//获取订单地区
$area = M('region')->where(array('parent_id'=>$order['city'],'level'=>3))->select();
//获取支付方式
$payment_list = M('plugin')->where(array('status'=>1,'type'=>'payment'))->select();
//获取配送方式
$shipping_list = M('plugin')->where(array('status'=>1,'type'=>'shipping'))->select();
$this->assign('order',$order);
$this->assign('province',$province);
$this->assign('city',$city);
$this->assign('area',$area);
$this->assign('orderGoods',$orderGoods);
$this->assign('shipping_list',$shipping_list);
$this->assign('payment_list',$payment_list);
return $this->fetch();
}
/*
* 拆分订单
*/
public function split_order(){
$order_id = I('order_id');
$orderLogic = new OrderLogic();
$order = $orderLogic->getOrderInfo($order_id);
if($order['shipping_status'] != 0){
$this->error('已发货订单不允许编辑');
exit;
}
$orderGoods = $orderLogic->getOrderGoods($order_id);
if(IS_POST){
$data = I('post.');
//################################先处理原单剩余商品和原订单信息
$old_goods = I('old_goods/a');
foreach ($orderGoods as $val){
if(empty($old_goods[$val['rec_id']])){
M('order_goods')->where("rec_id=".$val['rec_id'])->delete();//删除商品
}else{
//修改商品数量
if($old_goods[$val['rec_id']] != $val['goods_num']){
$val['goods_num'] = $old_goods[$val['rec_id']];
M('order_goods')->where("rec_id=".$val['rec_id'])->save(array('goods_num'=>$val['goods_num']));
}
$oldArr[] = $val;//剩余商品
}
$all_goods[$val['rec_id']] = $val;//所有商品信息
}
$result = calculate_price($order['user_id'],$oldArr,$order['shipping_code'],0,$order['province'],$order['city'],$order['district'],0,0,0,0);
if($result['status'] < 0)
{
$this->error($result['msg']);
}
//修改订单费用
$res['goods_price'] = $result['result']['goods_price']; // 商品总价
$res['order_amount'] = $result['result']['order_amount']; // 应付金额
$res['total_amount'] = $result['result']['total_amount']; // 订单总价
M('order')->where("order_id=".$order_id)->save($res);
//################################原单处理结束
//################################新单处理
for($i=1;$i<20;$i++){
$temp = $this->request->param($i.'_old_goods/a');
if(!empty($temp)){
$split_goods[] = $temp;
}
}
foreach ($split_goods as $key=>$vrr){
foreach ($vrr as $k=>$v){
$all_goods[$k]['goods_num'] = $v;
$brr[$key][] = $all_goods[$k];
}
}
foreach($brr as $goods){
$result = calculate_price($order['user_id'],$goods,$order['shipping_code'],0,$order['province'],$order['city'],$order['district'],0,0,0,0);
if($result['status'] < 0)
{
$this->error($result['msg']);
}
$new_order = $order;
$new_order['order_sn'] = date('YmdHis').mt_rand(1000,9999);
$new_order['parent_sn'] = $order['order_sn'];
//修改订单费用
$new_order['goods_price'] = $result['result']['goods_price']; // 商品总价
$new_order['order_amount'] = $result['result']['order_amount']; // 应付金额
$new_order['total_amount'] = $result['result']['total_amount']; // 订单总价
$new_order['add_time'] = time();
unset($new_order['order_id']);
$new_order_id = DB::name('order')->insertGetId($new_order);//插入订单表
foreach ($goods as $vv){
$vv['order_id'] = $new_order_id;
unset($vv['rec_id']);
$nid = M('order_goods')->add($vv);//插入订单商品表
}
}
//################################新单处理结束
$this->success('操作成功',U('Admin/Order/detail',array('order_id'=>$order_id)));
exit;
}
foreach ($orderGoods as $val){
$brr[$val['rec_id']] = array('goods_num'=>$val['goods_num'],'goods_name'=>getSubstr($val['goods_name'], 0, 35).$val['spec_key_name']);
}
$this->assign('order',$order);
$this->assign('goods_num_arr',json_encode($brr));
$this->assign('orderGoods',$orderGoods);
return $this->fetch();
}
/*
* 价钱修改
*/
public function editprice($order_id){
$orderLogic = new OrderLogic();
$order = $orderLogic->getOrderInfo($order_id);
$this->editable($order);
if(IS_POST){
$admin_id = session('admin_id');
if(empty($admin_id)){
$this->error('非法操作');
exit;
}
$update['discount'] = I('post.discount');
$update['shipping_price'] = I('post.shipping_price');
$update['order_amount'] = $order['goods_price'] + $update['shipping_price'] - $update['discount'] - $order['user_money'] - $order['integral_money'] - $order['coupon_price'];
$row = M('order')->where(array('order_id'=>$order_id))->save($update);
if(!$row){
$this->success('没有更新数据',U('Admin/Order/editprice',array('order_id'=>$order_id)));
}else{
$this->success('操作成功',U('Admin/Order/detail',array('order_id'=>$order_id)));
}
exit;
}
$this->assign('order',$order);
return $this->fetch();
}
/**
* 订单删除
* @param int $id 订单id
*/
public function delete_order($order_id){
$orderLogic = new OrderLogic();
$del = $orderLogic->delOrder($order_id);
if($del){
$this->success('删除订单成功');
}else{
$this->error('订单删除失败');
}
}
/**
* 订单取消付款
*/
public function pay_cancel($order_id){
if(I('remark')){
$data = I('post.');
$note = array('退款到用户余额','已通过其他方式退款','不处理,误操作项');
if($data['refundType'] == 0 && $data['amount']>0){
accountLog($data['user_id'], $data['amount'], 0, '退款到用户余额');
}
$orderLogic = new OrderLogic();
$orderLogic->orderProcessHandle($data['order_id'],'pay_cancel');
$d = $orderLogic->orderActionLog($data['order_id'],'pay_cancel',$data['remark'].':'.$note[$data['refundType']]);
if($d){
exit("<script>window.parent.pay_callback(1);</script>");
}else{
exit("<script>window.parent.pay_callback(0);</script>");
}
}else{
$order = M('order')->where("order_id=$order_id")->find();
$this->assign('order',$order);
return $this->fetch();
}
}
/**
* 订单打印
* @param int $id 订单id
*/
public function order_print(){
$order_id = I('order_id');
$orderLogic = new OrderLogic();
$order = $orderLogic->getOrderInfo($order_id);
$order['province'] = getRegionName($order['province']);
$order['city'] = getRegionName($order['city']);
$order['district'] = getRegionName($order['district']);
$order['full_address'] = $order['province'].' '.$order['city'].' '.$order['district'].' '. $order['address'];
$orderGoods = $orderLogic->getOrderGoods($order_id);
$shop = tpCache('shop_info');
$this->assign('order',$order);
$this->assign('shop',$shop);
$this->assign('orderGoods',$orderGoods);
$template = I('template','print');
return $this->fetch($template);
}
/**
* 快递单打印
*/
public function shipping_print(){
$order_id = I('get.order_id');
$orderLogic = new OrderLogic();
$order = $orderLogic->getOrderInfo($order_id);
//查询是否存在订单及物流
$shipping = M('plugin')->where(array('code'=>$order['shipping_code'],'type'=>'shipping'))->find();
if(!$shipping){
$this->error('物流插件不存在');
}
if(empty($shipping['config_value'])){
$this->error('请设置'.$shipping['name'].'打印模板');
}
$shop = tpCache('shop_info');//获取网站信息
$shop['province'] = empty($shop['province']) ? '' : getRegionName($shop['province']);
$shop['city'] = empty($shop['city']) ? '' : getRegionName($shop['city']);
$shop['district'] = empty($shop['district']) ? '' : getRegionName($shop['district']);
$order['province'] = getRegionName($order['province']);
$order['city'] = getRegionName($order['city']);
$order['district'] = getRegionName($order['district']);
if(empty($shipping['config'])){
$config = array('width'=>840,'height'=>480,'offset_x'=>0,'offset_y'=>0);
$this->assign('config',$config);
}else{
$this->assign('config',unserialize($shipping['config']));
}
$template_var = array("发货点-名称", "发货点-联系人", "发货点-电话", "发货点-省份", "发货点-城市",
"发货点-区县", "发货点-手机", "发货点-详细地址", "收件人-姓名", "收件人-手机", "收件人-电话",
"收件人-省份", "收件人-城市", "收件人-区县", "收件人-邮编", "收件人-详细地址", "时间-年", "时间-月",
"时间-日","时间-当前日期","订单-订单号", "订单-备注","订单-配送费用");
$content_var = array($shop['store_name'],$shop['contact'],$shop['phone'],$shop['province'],$shop['city'],
$shop['district'],$shop['phone'],$shop['address'],$order['consignee'],$order['mobile'],$order['phone'],
$order['province'],$order['city'],$order['district'],$order['zipcode'],$order['address'],date('Y'),date('M'),
date('d'),date('Y-m-d'),$order['order_sn'],$order['admin_note'],$order['shipping_price'],
);
$shipping['config_value'] = str_replace($template_var,$content_var, $shipping['config_value']);
$this->assign('shipping',$shipping);
return $this->fetch("Plugin/print_express");
}
/**
* 生成发货单
*/
public function deliveryHandle(){
$orderLogic = new OrderLogic();
$data = I('post.');
$res = $orderLogic->deliveryHandle($data);
if($res){
$this->success('操作成功',U('Admin/Order/delivery_info',array('order_id'=>$data['order_id'])));
}else{
$this->success('操作失败',U('Admin/Order/delivery_info',array('order_id'=>$data['order_id'])));
}
}
public function delivery_info(){
$order_id = I('order_id');
$orderLogic = new OrderLogic();
$order = $orderLogic->getOrderInfo($order_id);
$orderGoods = $orderLogic->getOrderGoods($order_id);
$delivery_record = M('delivery_doc')->alias('d')->join('__ADMIN__ a','a.admin_id = d.admin_id')->where('d.order_id='.$order_id)->select();
if($delivery_record){
$order['invoice_no'] = $delivery_record[count($delivery_record)-1]['invoice_no'];
}
$this->assign('order',$order);
$this->assign('orderGoods',$orderGoods);
$this->assign('delivery_record',$delivery_record);//发货记录
return $this->fetch();
}
/**
* 发货单列表
*/
public function delivery_list(){
return $this->fetch();
}
/*
* ajax 退货订单列表
*/
public function ajax_return_list(){
// 搜索条件
$order_sn = trim(I('order_sn'));
$order_by = I('order_by') ? I('order_by') : 'id';
$sort_order = I('sort_order') ? I('sort_order') : 'desc';
$status = I('status');
$where = " 1 = 1 ";
$order_sn && $where.= " and order_sn like '%$order_sn%' ";
empty($order_sn) && $where.= " and status = '$status' ";
$count = M('return_goods')->where($where)->count();
$Page = new AjaxPage($count,13);
$show = $Page->show();
$list = M('return_goods')->where($where)->order("$order_by $sort_order")->limit("{$Page->firstRow},{$Page->listRows}")->select();
$goods_id_arr = get_arr_column($list, 'goods_id');
if(!empty($goods_id_arr)){
$goods_list = M('goods')->where("goods_id in (".implode(',', $goods_id_arr).")")->getField('goods_id,goods_name');
}
$this->assign('goods_list',$goods_list);
$this->assign('list',$list);
$this->assign('pager',$Page);
$this->assign('page',$show);// 赋值分页输出
return $this->fetch();
}
/**
* 删除某个退换货申请
*/
public function return_del(){
$id = I('get.id');
M('return_goods')->where("id = $id")->delete();
$this->success('成功删除!');
}
/**
* 退换货操作
*/
public function return_info()
{
$id = I('id');
$return_goods = M('return_goods')->where("id= $id")->find();
if($return_goods['imgs'])
$return_goods['imgs'] = explode(',', $return_goods['imgs']);
$user = M('users')->where("user_id = {$return_goods[user_id]}")->find();
$goods = M('goods')->where("goods_id = {$return_goods[goods_id]}")->find();
$type_msg = array('退换','换货');
$status_msg = array('未处理','处理中','已完成');
if(IS_POST)
{
$data['type'] = I('type');
$data['status'] = I('status');
$data['remark'] = I('remark');
$note ="退换货:{$type_msg[$data['type']]}, 状态:{$status_msg[$data['status']]},处理备注:{$data['remark']}";
$result = M('return_goods')->where("id= $id")->save($data);
if($result)
{
$type = empty($data['type']) ? 2 : 3;
$where = " order_id = ".$return_goods['order_id']." and goods_id=".$return_goods['goods_id'];
M('order_goods')->where($where)->save(array('is_send'=>$type));//更改商品状态
$orderLogic = new OrderLogic();
$log = $orderLogic->orderActionLog($return_goods[order_id],'refund',$note);
$this->success('修改成功!');
exit;
}
}
$this->assign('id',$id); // 用户
$this->assign('user',$user); // 用户
$this->assign('goods',$goods);// 商品
$this->assign('return_goods',$return_goods);// 退换货
return $this->fetch();
}
/**
* 管理员生成申请退货单
*/
public function add_return_goods()
{
$order_id = I('order_id');
$goods_id = I('goods_id');
$return_goods = M('return_goods')->where("order_id = $order_id and goods_id = $goods_id")->find();
if(!empty($return_goods))
{
$this->error('已经提交过退货申请!',U('Admin/Order/return_list'));
exit;
}
$order = M('order')->where("order_id = $order_id")->find();
$data['order_id'] = $order_id;
$data['order_sn'] = $order['order_sn'];
$data['goods_id'] = $goods_id;
$data['addtime'] = time();
$data['user_id'] = $order[user_id];
$data['remark'] = '管理员申请退换货'; // 问题描述
M('return_goods')->add($data);
$this->success('申请成功,现在去处理退货',U('Admin/Order/return_list'));
exit;
}
/**
* 订单操作
* @param $id
*/
public function order_action(){
$orderLogic = new OrderLogic();
$action = I('get.type');
$order_id = I('get.order_id');
if($action && $order_id){
if($action !=='pay'){
$res = $orderLogic->orderActionLog($order_id,$action,I('note'));
}
$a = $orderLogic->orderProcessHandle($order_id,$action,array('note'=>I('note'),'admin_id'=>0));
if($res !== false && $a !== false){
if ($action == 'remove') {
exit(json_encode(array('status' => 1, 'msg' => '操作成功', 'data' => array('url' => U('manager/order/index')))));
}
exit(json_encode(array('status' => 1,'msg' => '操作成功')));
}else{
if ($action == 'remove') {
exit(json_encode(array('status' => 0, 'msg' => '操作失败', 'data' => array('url' => U('manager/order/index')))));
}
exit(json_encode(array('status' => 0,'msg' => '操作失败')));
}
}else{
$this->error('参数错误',U('Admin/Order/detail',array('order_id'=>$order_id)));
}
}
public function order_log(){
$timegap = I('timegap');
if($timegap){
$gap = explode('-', $timegap);
$begin = strtotime($gap[0]);
$end = strtotime($gap[1]);
}else{
//@new 兼容新模板
$begin = strtotime(I('timegap_begin'));
$end = strtotime(I('timegap_end'));
}
$condition = array();
$log = M('order_action');
if($begin && $end){
$condition['log_time'] = array('between',"$begin,$end");
}
$admin_id = I('admin_id');
if($admin_id >0 ){
$condition['action_user'] = $admin_id;
}
$count = $log->where($condition)->count();
$Page = new Page($count,20);
foreach($condition as $key=>$val) {
$Page->parameter[$key] = urlencode($val);
}
$show = $Page->show();
$list = $log->where($condition)->order('action_id desc')->limit($Page->firstRow.','.$Page->listRows)->select();
$this->assign('list',$list);
$this->assign('pager',$Page);
$this->assign('page',$show);
$admin = M('admin')->getField('admin_id,user_name');
$this->assign('admin',$admin);
return $this->fetch();
}
/**
* 检测订单是否可以编辑
* @param $order
*/
private function editable($order){
if($order['shipping_status'] != 0){
$this->error('已发货订单不允许编辑');
exit;
}
return;
}
public function export_order()
{
//搜索条件
$where = 'where 1=1 ';
$consignee = I('consignee');
if($consignee){
$where .= " AND consignee like '%$consignee%' ";
}
$order_sn = I('order_sn');
if($order_sn){
$where .= " AND order_sn = '$order_sn' ";
}
if(I('order_status')){
$where .= " AND order_status = ".I('order_status');
}
$timegap = I('timegap');
if($timegap){
$gap = explode('-', $timegap);
$begin = strtotime($gap[0]);
$end = strtotime($gap[1]);
$where .= " AND add_time>$begin and add_time<$end ";
}
$sql = "select *,FROM_UNIXTIME(add_time,'%Y-%m-%d') as create_time from __PREFIX__order $where order by order_id";
$orderList = DB::query($sql);
$strTable ='<table width="500" border="1">';
$strTable .= '<tr>';
$strTable .= '<td style="text-align:center;font-size:12px;width:120px;">订单编号</td>';
$strTable .= '<td style="text-align:center;font-size:12px;" width="100">日期</td>';
$strTable .= '<td style="text-align:center;font-size:12px;" width="*">收货人</td>';
$strTable .= '<td style="text-align:center;font-size:12px;" width="*">收货地址</td>';
$strTable .= '<td style="text-align:center;font-size:12px;" width="*">电话</td>';
$strTable .= '<td style="text-align:center;font-size:12px;" width="*">订单金额</td>';
$strTable .= '<td style="text-align:center;font-size:12px;" width="*">实际支付</td>';
$strTable .= '<td style="text-align:center;font-size:12px;" width="*">支付方式</td>';
$strTable .= '<td style="text-align:center;font-size:12px;" width="*">支付状态</td>';
$strTable .= '<td style="text-align:center;font-size:12px;" width="*">发货状态</td>';
$strTable .= '<td style="text-align:center;font-size:12px;" width="*">商品信息</td>';
$strTable .= '</tr>';
if(is_array($orderList)){
$region = M('region')->getField('id,name');
foreach($orderList as $k=>$val){
$strTable .= '<tr>';
$strTable .= '<td style="text-align:center;font-size:12px;"> '.$val['order_sn'].'</td>';
$strTable .= '<td style="text-align:left;font-size:12px;">'.$val['create_time'].' </td>';
$strTable .= '<td style="text-align:left;font-size:12px;">'.$val['consignee'].'</td>';
$strTable .= '<td style="text-align:left;font-size:12px;">'."{$region[$val['province']]},{$region[$val['city']]},{$region[$val['district']]},{$region[$val['twon']]}{$val['address']}".' </td>';
$strTable .= '<td style="text-align:left;font-size:12px;">'.$val['mobile'].'</td>';
$strTable .= '<td style="text-align:left;font-size:12px;">'.$val['goods_price'].'</td>';
$strTable .= '<td style="text-align:left;font-size:12px;">'.$val['order_amount'].'</td>';
$strTable .= '<td style="text-align:left;font-size:12px;">'.$val['pay_name'].'</td>';
$strTable .= '<td style="text-align:left;font-size:12px;">'.$this->pay_status[$val['pay_status']].'</td>';
$strTable .= '<td style="text-align:left;font-size:12px;">'.$this->shipping_status[$val['shipping_status']].'</td>';
$orderGoods = D('order_goods')->where('order_id='.$val['order_id'])->select();
$strGoods="";
foreach($orderGoods as $goods){
$strGoods .= "商品编号:".$goods['goods_sn']." 商品名称:".$goods['goods_name'];
if ($goods['spec_key_name'] != '') $strGoods .= " 规格:".$goods['spec_key_name'];
$strGoods .= "<br />";
}
unset($orderGoods);
$strTable .= '<td style="text-align:left;font-size:12px;">'.$strGoods.' </td>';
$strTable .= '</tr>';
}
}
$strTable .='</table>';
unset($orderList);
downloadExcel($strTable,'order');
exit();
}
/**
* 退货单列表
*/
public function return_list(){
return $this->fetch();
}
/**
* 添加一笔订单
*/
public function add_order()
{
$order = array();
// 获取省份
$province = M('region')->where(array('parent_id'=>0,'level'=>1))->select();
// 获取订单城市
$city = M('region')->where(array('parent_id'=>$order['province'],'level'=>2))->select();
// 获取订单地区
$area = M('region')->where(array('parent_id'=>$order['city'],'level'=>3))->select();
// 获取配送方式
$shipping_list = M('plugin')->where(array('status'=>1,'type'=>'shipping'))->select();
// 获取支付方式
$payment_list = M('plugin')->where(array('status'=>1,'type'=>'payment'))->select();
if(IS_POST)
{
$order['user_id'] = I('user_id');// 用户id 可以为空
$order['consignee'] = I('consignee');// 收货人
$order['province'] = I('province'); // 省份
$order['city'] = I('city'); // 城市
$order['district'] = I('district'); // 县
$order['address'] = I('address'); // 收货地址
$order['mobile'] = I('mobile'); // 手机
$order['invoice_title'] = I('invoice_title');// 发票
$order['admin_note'] = I('admin_note'); // 管理员备注
$order['order_sn'] = date('YmdHis').mt_rand(1000,9999); // 订单编号;
$order['admin_note'] = I('admin_note'); //
$order['add_time'] = time(); //
$order['shipping_code'] = I('shipping');// 物流方式
$order['shipping_name'] = M('plugin')->where(array('status'=>1,'type'=>'shipping','code'=>I('shipping')))->getField('name');
$order['pay_code'] = I('payment');// 支付方式
$order['pay_name'] = M('plugin')->where(array('status'=>1,'type'=>'payment','code'=>I('payment')))->getField('name');
$goods_id_arr = I("goods_id/a");
$orderLogic = new OrderLogic();
$order_goods = $orderLogic->get_spec_goods($goods_id_arr);
$result = calculate_price($order['user_id'],$order_goods,$order['shipping_code'],0,$order[province],$order[city],$order[district],0,0,0,0);
if($result['status'] < 0)
{
$this->error($result['msg']);
}
$order['goods_price'] = $result['result']['goods_price']; // 商品总价
$order['shipping_price'] = $result['result']['shipping_price']; //物流费
$order['order_amount'] = $result['result']['order_amount']; // 应付金额
$order['total_amount'] = $result['result']['total_amount']; // 订单总价
// 添加订单
$order_id = M('order')->add($order);
$order_insert_id = DB::getLastInsID();
if($order_id)
{
foreach($order_goods as $key => $val)
{
$val['order_id'] = $order_id;
$rec_id = M('order_goods')->add($val);
if(!$rec_id)
$this->error('添加失败');
}
$this->success('添加商品成功',U("Admin/Order/detail",array('order_id'=>$order_insert_id)));
exit();
}
else{
$this->error('添加失败');
}
}
$this->assign('shipping_list',$shipping_list);
$this->assign('payment_list',$payment_list);
$this->assign('province',$province);
$this->assign('city',$city);
$this->assign('area',$area);
return $this->fetch();
}
/**
* 选择搜索商品
*/
public function search_goods()
{
$brandList = M("brand")->select();
$categoryList = M("goods_category")->select();
$this->assign('categoryList',$categoryList);
$this->assign('brandList',$brandList);
$where = ' is_on_sale = 1 ';//搜索条件
I('intro') && $where = "$where and ".I('intro')." = 1";
if(I('cat_id')){
$this->assign('cat_id',I('cat_id'));
$grandson_ids = getCatGrandson(I('cat_id'));
$where = " $where and cat_id in(". implode(',', $grandson_ids).") "; // 初始化搜索条件
}
if(I('brand_id')){
$this->assign('brand_id',I('brand_id'));
$where = "$where and brand_id = ".I('brand_id');
}
if(!empty($_REQUEST['keywords']))
{
$this->assign('keywords',I('keywords'));
$where = "$where and (goods_name like '%".I('keywords')."%' or keywords like '%".I('keywords')."%')" ;
}
$goodsList = M('goods')->where($where)->order('goods_id DESC')->limit(10)->select();
foreach($goodsList as $key => $val)
{
$spec_goods = M('spec_goods_price')->where("goods_id = {$val['goods_id']}")->select();
$goodsList[$key]['spec_goods'] = $spec_goods;
}
if($goodsList){
//计算商品数量
foreach ($goodsList as $value){
if($value['spec_goods']){
$count += count($value['spec_goods']);
}else{
$count++;
}
}
$this->assign('totalSize',$count);
}
$this->assign('goodsList',$goodsList);
return $this->fetch();
}
public function ajaxOrderNotice(){
$order_amount = M('order')->where("order_status=0 and (pay_status=1 or pay_code='cod')")->count();
echo $order_amount;
}
}