wupengfei 2 years ago
parent
commit
19885815dc

+ 4 - 1
application/common/model/OfflineOrderItem.php

@@ -4,6 +4,9 @@ use think\Model;
 // 线下订单详情
 class OfflineOrderItem extends Model
 {
- 
 
+    public function orderItem()
+    {
+        return  $this->hasMany('OfflineOrderItem','order_id');
+    }
 }

+ 9 - 0
application/common/model/OfflineOrderRefund.php

@@ -0,0 +1,9 @@
+<?php
+namespace app\common\model;
+use think\Model;
+// 线下订单退款
+class OfflineOrderRefund extends Model
+{
+
+
+}

+ 30 - 0
application/common/service/PurchaseLogic.php

@@ -9,6 +9,8 @@ use app\common\model\DepotGoodsItem;
 use app\common\model\DepotOrder;
 use app\common\model\DepotOrderItem;
 use app\common\model\GoodsParam;
+use app\common\model\OfflineOrder;
+use app\common\model\OfflineOrderRefund;
 use app\common\model\StoreGoods;
 use app\common\model\StoreGoodsItem;
 use app\common\model\SupplierOrder;
@@ -284,5 +286,33 @@ class PurchaseLogic
     }
 
 
+    // 线下订单退款申请
+    public static function offlineOrderRefund($order_id,$reason)
+    {
+        $ret = ['code'=>200,'msg'=>'ok'];
+        $order_info = OfflineOrderRefund::with('orderItem')->where('id',$order_id)->find()->toArray();
+        if(in_array($order_info['refund_status'],[1,2])) return ['code'=>201,'订单已申请退款'];
+        Db::startTrans();
+        try {
+            $refund_info = [
+                'order_id' => $order_id,
+                'reason' => $reason,
+                'order_num' => $order_info['order_num'],
+                'order_money' => $order_info['order_money'],
+                'goods_id' => $order_info['goods_id'],
+                'sh_status' => 0,
+            ];
+            Data::save('OfflineOrderRefund',$refund_info,'order_id',['order_id'=>$order_id]);// 退款记录
+            OfflineOrder::where('id',$order_id)->update(['refund_status'=>1]);//关联订单
+            Db::commit();
+        }catch (\Exception $e){
+            $ret['code'] = 202;
+            $ret['msg'] = $e->getMessage();
+            Db::rollback();
+        }
+        return $ret;
+    }
+
+
 
 }

+ 23 - 0
application/purchase/controller/OfflineOrder.php

@@ -4,6 +4,7 @@ use app\common\model\BaseGoods;
 use app\common\model\BaseGoodsItem;
 use app\common\model\OfflineOrderItem;
 use app\common\model\SystemUser;
+use app\common\service\PurchaseLogic;
 use library\tools\Data;
 use think\Db;
 
@@ -260,4 +261,26 @@ class OfflineOrder extends PurBase
         }
     }
 
+    /**
+     * 订单退款申请
+     * @auth true
+     * @menu true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function refund()
+    {
+        $this->title = '供货订单退款申请';
+        $this->_form($this->table, 'refund');
+    }
+
+    // 退款申请
+    protected function _refund_form_result($id){
+        $res = PurchaseLogic::offlineOrderRefund($id,$this->request->post('reason'));
+        $res['code'] == 200 ? $this->success($res['msg']):$this->error($res['msg']);
+    }
+
 }

+ 263 - 0
application/purchase/controller/OfflineOrderRefund.php

@@ -0,0 +1,263 @@
+<?php
+namespace app\purchase\controller;
+use app\common\model\BaseGoods;
+use app\common\model\BaseGoodsItem;
+use app\common\model\OfflineOrderItem;
+use app\common\model\SystemUser;
+use library\tools\Data;
+use think\Db;
+
+/**
+ * 销售订单管理
+ * Class OfflineOrder
+ * @package app\purchase\controller
+ */
+class OfflineOrderRefund extends PurBase
+{
+
+    /**
+     * 绑定数据表
+     * @var string
+     */
+    protected $table = 'OfflineOrderRefund';
+
+    /**
+     * 销售订单列表
+     * @auth true
+     * @menu true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function index()
+    {
+        $this->title = '销售订单列表';
+        $this->supplier = Db::name('Supplier')->where('is_deleted',0)->column('name','id');
+        $this->admin_arr =SystemUser::column('username','id');
+        $this->admin_arr[0] = 'admin';
+        $where = [];
+        $where[] = ['is_deleted','=',0];
+        if($this->admin_authorize == 1) $where[] = ['employee_user','=',$this->admin_user['id']];
+        $query = $this->_query($this->table)->where($where);
+        $query->like('order_num');
+        $query->order('id desc')->page();
+    }
+
+    /**
+     * 数据列表处理
+     * @auth true
+     * @menu true
+     * @param array $data
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     */
+    protected function _index_page_filter(&$data)
+    {
+        foreach ($data as &$v)
+        {
+            $v['list'] = OfflineOrderItem::where('order_id',$v['id'])->select()->toArray();
+        }
+    }
+
+
+
+
+
+
+
+    /**
+     * 添加销售订单
+     * @auth true
+     * @menu true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function add()
+    {
+        $this->title = '添加';
+        $this->_form($this->table, 'form');
+    }
+
+
+    /**
+     * 编辑销售订单
+     * @auth true
+     * @menu true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function edit()
+    {
+        $this->title = '编辑';
+        $this->_form($this->table, 'form');
+    }
+
+    /**
+     * 销售订单审核
+     * @auth true
+     * @menu true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function audit()
+    {
+        $this->title = '审核';
+        $this->_form($this->table, 'audit');
+    }
+
+
+
+    /**
+     * 删除
+     * @auth true
+     * @menu true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function del()
+    {
+        $this->_save($this->table, ['is_deleted' => 1]);
+    }
+
+
+    /**
+     * 表单数据处理
+     * @auth true
+     * @menu true
+     * @param array $data
+     */
+    protected function _form_filter(&$data)
+    {
+        if($this->request->isGet()){
+            $this->supplier = Db::name('Supplier')->where('is_deleted',0)->column('name','id');
+            $this->goods_list = BaseGoods::where(['is_deleted'=>0])->order('sort desc ,id desc')->column('name','id');
+            $this->item_list = [];
+            if($this->request->action() == 'edit' || $this->request->action() == 'depot') {
+                $this->item_list = OfflineOrderItem::where(['order_id'=>$data['id']])->select()->toArray();
+            }
+        }
+        if($this->request->isPost())
+        {
+            // 录单人id
+            if(in_array($this->request->action(),['edit','add'])){
+                if(!empty($data['id'])) {
+                    $order_sh = \app\common\model\OfflineOrder::where('id',$data['id'])->value('sh_status');
+                    if($order_sh) $this->error('已审核通过,不能修改');
+                }
+                $data['employee_user'] =  $this->admin_user['id'];
+                $data['goods_num'] = array_sum($data['num']);
+            }
+            // 审核人id
+            if($this->request->action() == 'audit') {
+                $order_sh = \app\common\model\OfflineOrder::where('id',$data['id'])->value('sh_status');
+                if($order_sh) $this->error('已审核通过,不能修改');
+                $data['audit_user'] = $this->admin_user['id'];
+            }
+
+        }
+        $data['create_at'] = date('Y-m-d H:i:s');
+    }
+
+    protected function _form_result($id)
+    {
+        // 审核通过
+        if($this->request->isPost() && $this->request->action() == 'audit') {
+            $sh_status = input('sh_status');
+            OfflineOrderItem::where(['order_id'=>$id])->update(['sh_status'=>$sh_status]);
+        }
+
+        if($this->request->isPost() && in_array($this->request->action(),['add','edit']))
+        {
+            list($post, $data) = [$this->request->post(), []];
+            if(!empty($post['item_id']))
+            {
+                foreach (array_keys($post['item_id']) as $key) {
+                    $item_info = [
+                        'order_id' => $id,
+                        'goods_id' => $post['goods_id'],
+                        'spec_id' =>$post['item_id'][$key],
+                        'goods_spec' =>$post['goods_spec'][$key],
+                        'num' =>$post['num'][$key],
+                        'price' =>$post['price'][$key],
+                        'total_price' =>bcmul($post['num'][$key],$post['price'][$key],2),
+                    ];
+                    Data::save('OfflineOrderItem',$item_info,'order_id',['order_id' => $id, 'goods_id' => $post['goods_id'], 'spec_id' =>$post['item_id'][$key]]);
+                }
+            }
+        }
+
+        if($this->request->action() == 'audit' && $this->request->post('sh_status') == 1)
+        {
+
+        }
+
+    }
+
+    /**
+     * ajax获取商品规格
+     * @auth true
+     * @menu true
+     */
+    public function goods_item()
+    {
+        if($this->request->isAjax()){
+            $goods_id= input('goods_id');
+            $item_list= BaseGoodsItem::where(['goods_id'=>$goods_id,'is_deleted'=>0])->order('sort desc ,id desc')->select()->toArray();
+            $this->success('ok',['list'=>$item_list]);
+        }
+
+    }
+
+
+    /**
+     * 修改快递
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function express()
+    {
+        if ($this->request->isGet()) {
+            $where = ['is_deleted' => '0', 'status' => '1'];
+            $this->expressList = Db::name('express_company')->where($where)->order('sort desc,id desc')->select();
+        }
+        $this->_form($this->table);
+    }
+
+    /**
+     * 快递表单处理
+     * @param array $vo
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     */
+    protected function _express_form_filter(&$vo)
+    {
+        if ($this->request->isPost()) {
+            $order = Db::name($this->table)->where(['id' => $vo['id']])->find();
+            if (empty($order)) $this->error('订单查询异常,请稍候再试!');
+            $express = Db::name('express_company')->where(['express_code' => $vo['express_company_code']])->find();
+            if (empty($express)) $this->error('发货快递公司异常,请重新选择快递公司!');
+            $vo['express_company_title'] = $express['express_title'];
+            $vo['express_send_at'] = empty($order['express_send_at']) ? date('Y-m-d H:i:s') : $order['express_send_at'];
+            $vo['express_state'] = '1';
+            $vo['status'] = '1';
+        }
+    }
+
+}

+ 2 - 1
application/purchase/controller/SupplierOrder.php

@@ -210,7 +210,8 @@ class SupplierOrder extends PurBase
 
     // 退款申请
     protected function _refund_form_result($id){
-           PurchaseLogic::supplierOrderApplyRefund($id,$this->request->post('reason'));
+         $res =  PurchaseLogic::supplierOrderApplyRefund($id,$this->request->post('reason'));
+        $res['code'] == 200 ? $this->success($res['msg']):$this->error($res['msg']);
     }
 
     protected function _form_result($id)

+ 22 - 0
application/purchase/view/offline_order/refund.html

@@ -0,0 +1,22 @@
+
+<div class="think-box-shadow">
+    <form class="layui-form layui-card" action="{:request()->url()}" data-auto="true" method="post" autocomplete="off">
+        <div class="layui-card-body">
+
+            <div class="layui-form-item">
+                <label class="layui-form-label">退款原因:</label>
+                <div class="layui-input-block">
+                    <input name="reason"  value='' placeholder="" class="layui-input">
+                </div>
+            </div>
+            {notempty name='vo.id'}<input type='hidden' value='{$vo.id}' name='id'>{/notempty}
+            <div class="layui-form-item text-center">
+                <button class="layui-btn" type='submit'>确 定</button>
+                <button class="layui-btn layui-btn-danger" type='button' data-confirm="确定取消吗?" data-close>取 消</button>
+            </div>
+        </div>
+    </form>
+    <script>
+        window.form.render();
+    </script>
+</div>