123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <?php
- /**
- * 退货管理
- *
- *
- *
- ***/
- defined('InShopNC') or exit('Access Invalid!');
- class returnControl extends SystemControl{
- public function __construct(){
- parent::__construct();
- $model_refund = Model('refund_return');
- $model_refund->getRefundStateArray();
- }
- /**
- * 待处理列表
- */
- public function return_manageOp() {
- $model_refund = Model('refund_return');
- $condition = array();
- $condition['refund_state'] = '2';//状态:1为处理中,2为待管理员处理,3为已完成
- $keyword_type = array('order_sn','refund_sn','store_name','buyer_name','goods_name');
- if (trim($_GET['key']) != '' && in_array($_GET['type'],$keyword_type)) {
- $type = $_GET['type'];
- $condition[$type] = array('like','%'.$_GET['key'].'%');
- }
- if (trim($_GET['add_time_from']) != '' || trim($_GET['add_time_to']) != '') {
- $add_time_from = strtotime(trim($_GET['add_time_from']));
- $add_time_to = strtotime(trim($_GET['add_time_to']));
- if ($add_time_from !== false || $add_time_to !== false) {
- $condition['add_time'] = array('time',array($add_time_from,$add_time_to));
- }
- }
- $return_list = $model_refund->getReturnList($condition,10);
- Tpl::output('return_list',$return_list);
- Tpl::output('show_page',$model_refund->showpage());
- Tpl::showpage('return_manage.list');
- }
- /**
- * 所有记录
- */
- public function return_allOp() {
- $model_refund = Model('refund_return');
- $condition = array();
- $keyword_type = array('order_sn','refund_sn','store_name','buyer_name','goods_name');
- if (trim($_GET['key']) != '' && in_array($_GET['type'],$keyword_type)) {
- $type = $_GET['type'];
- $condition[$type] = array('like','%'.$_GET['key'].'%');
- }
- if (trim($_GET['add_time_from']) != '' || trim($_GET['add_time_to']) != '') {
- $add_time_from = strtotime(trim($_GET['add_time_from']));
- $add_time_to = strtotime(trim($_GET['add_time_to']));
- if ($add_time_from !== false || $add_time_to !== false) {
- $condition['add_time'] = array('time',array($add_time_from,$add_time_to));
- }
- }
- $return_list = $model_refund->getReturnList($condition,10);
- Tpl::output('return_list',$return_list);
- Tpl::output('show_page',$model_refund->showpage());
- Tpl::showpage('return_all.list');
- }
- /**
- * 退货处理页
- *
- */
- public function editOp() {
- $model_refund = Model('refund_return');
- $condition = array();
- $condition['refund_id'] = intval($_GET['return_id']);
- $return_list = $model_refund->getReturnList($condition);
- $return = $return_list[0];
- if (chksubmit()) {
- if ($return['refund_state'] != '2') {//检查状态,防止页面刷新不及时造成数据错误
- showMessage(Language::get('nc_common_save_fail'));
- }
- $order_id = $return['order_id'];
- $refund_array = array();
- $refund_array['admin_time'] = time();
- $refund_array['refund_state'] = '3';//状态:1为处理中,2为待管理员处理,3为已完成
- $refund_array['admin_message'] = $_POST['admin_message'];
- $state = $model_refund->editOrderRefund($return);
- if ($state) {
- $model_refund->editRefundReturn($condition, $refund_array);
- $this->log('退货确认,退货编号'.$return['refund_sn']);
- // 发送买家消息
- $param = array();
- $param['code'] = 'refund_return_notice';
- $param['member_id'] = $return['buyer_id'];
- $param['param'] = array(
- 'refund_url' => urlShop('return_id', 'view', array('return_id' => $return['refund_id'])),
- 'refund_sn' => $return['refund_sn']
- );
- QueueClient::push('sendMemberMsg', $param);
- showMessage(Language::get('nc_common_save_succ'),'index.php?act=return&op=return_manage');
- } else {
- showMessage(Language::get('nc_common_save_fail'));
- }
- }
- Tpl::output('return',$return);
- $info['buyer'] = array();
- if(!empty($return['pic_info'])) {
- $info = unserialize($return['pic_info']);
- }
- Tpl::output('pic_list',$info['buyer']);
- Tpl::showpage('return.edit');
- }
- /**
- * 退货记录查看页
- *
- */
- public function viewOp() {
- $model_refund = Model('refund_return');
- $condition = array();
- $condition['refund_id'] = intval($_GET['return_id']);
- $return_list = $model_refund->getReturnList($condition);
- $return = $return_list[0];
- Tpl::output('return',$return);
- $info['buyer'] = array();
- if(!empty($return['pic_info'])) {
- $info = unserialize($return['pic_info']);
- }
- Tpl::output('pic_list',$info['buyer']);
- Tpl::showpage('return.view');
- }
- }
|