wupengfei 2 tahun lalu
induk
melakukan
c529c53954

+ 2 - 2
application/common/service/PurchaseLogic.php

@@ -153,7 +153,7 @@ class PurchaseLogic
     {
         $ret = ['code'=>200,'msg'=>'ok'];
         $order_info = SupplierOrder::with('orderItem')->where('id',$order_id)->find()->toArray();
-        if(in_array($order_info['refund_status'],[1,2])) return ['code'=>201,'订单已申请退款'];
+        if(in_array($order_info['refund_status'],[1,2])) return ['code'=>201,'msg'=>'订单已申请退款'];
         Db::startTrans();
         try {
             $refund_info = [
@@ -291,7 +291,7 @@ class PurchaseLogic
     {
         $ret = ['code'=>200,'msg'=>'ok'];
         $order_info = OfflineOrder::with('orderItem')->where('id',$order_id)->find()->toArray();
-        if(in_array($order_info['refund_status'],[1,2])) return ['code'=>201,'订单已申请退款'];
+        if(in_array($order_info['refund_status'],[1,2])) return ['code'=>201,'msg'=>'订单已申请退款'];
         Db::startTrans();
         try {
             $refund_info = [

+ 26 - 157
application/purchase/controller/OfflineOrderRefund.php

@@ -1,15 +1,15 @@
 <?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 app\common\service\PurchaseLogic;
 use library\tools\Data;
 use think\Db;
+use function AlibabaCloud\Client\value;
 
 /**
- * 销售订单管理
- * Class OfflineOrder
+ * 线下订单管理
+ * Class OfflineOrderRefund
  * @package app\purchase\controller
  */
 class OfflineOrderRefund extends PurBase
@@ -22,7 +22,7 @@ class OfflineOrderRefund extends PurBase
     protected $table = 'OfflineOrderRefund';
 
     /**
-     * 销售订单列表
+     * 线下订单列表
      * @auth true
      * @menu true
      * @throws \think\Exception
@@ -33,16 +33,19 @@ class OfflineOrderRefund extends PurBase
      */
     public function index()
     {
-        $this->title = '销售订单列表';
+        $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();
+        $where[] = ['r.is_deleted','=',0];
+        $query = $this->_query($this->table)
+            ->field('r.*,o.employee_user')
+            ->alias('r')
+            ->leftJoin('OfflineOrder o','o.id = r.order_id')
+            ->where($where);
+        $query->like('r.order_num');
+        $query->order('r.id desc')->page();
     }
 
     /**
@@ -56,53 +59,13 @@ class OfflineOrderRefund extends PurBase
      */
     protected function _index_page_filter(&$data)
     {
-        foreach ($data as &$v)
-        {
-            $v['list'] = OfflineOrderItem::where('order_id',$v['id'])->select()->toArray();
+        foreach ($data as &$v) {
+            $v['list'] = OfflineOrderItem::where('order_id',$v['order_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
@@ -113,12 +76,11 @@ class OfflineOrderRefund extends PurBase
      */
     public function audit()
     {
-        $this->title = '审核';
+        $this->title = '审核线下订单';
         $this->_form($this->table, 'audit');
     }
 
 
-
     /**
      * 删除
      * @auth true
@@ -142,121 +104,28 @@ class OfflineOrderRefund extends PurBase
     {
         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']);
-            }
+        if($this->request->isPost()) {
             // 审核人id
             if($this->request->action() == 'audit') {
-                $order_sh = \app\common\model\OfflineOrder::where('id',$data['id'])->value('sh_status');
-                if($order_sh) $this->error('已审核通过,不能修改');
+                $order_sh = \app\common\model\OfflineOrderRefund::where('id',$data['id'])->value('sh_status');
+                if($order_sh == 1) $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';
+            $res = PurchaseLogic::auditSupplierRefund($id,$sh_status,$this->request->post('remark'));
+            $res['code'] == 200 ? $this->success($res['msg']):$this->error($res['msg']);
         }
     }
 

+ 41 - 0
application/purchase/view/offline_order_refund/audit.html

@@ -0,0 +1,41 @@
+
+<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   value='{$vo.reason|default=""}' placeholder="" class="layui-input">
+                </div>
+            </div>
+
+
+            <div class="layui-form-item">
+                <label class="layui-form-label">审核:</label>
+                <div class="layui-input-block">
+                    <select name="sh_status" >
+                        <option value="0"  {if $vo.sh_status eq 0}selected {/if} >不审核</option>
+                        <option value="1"  {if $vo.sh_status eq 1}selected {/if} >同意</option>
+                        <option value="2"  {if $vo.sh_status eq 2}selected {/if} >拒绝</option>
+                    </select>
+                </div>
+            </div>
+
+            <div class="layui-form-item">
+                <label class="layui-form-label">备注:</label>
+                <div class="layui-input-block">
+                    <input name="remark"  value='{$vo.remark|default=""}' 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>

+ 110 - 0
application/purchase/view/offline_order_refund/index.html

@@ -0,0 +1,110 @@
+{extend name='admin@main'}
+
+{block name="content"}
+<div class="think-box-shadow">
+    {include file='offline_order_refund/index_search'}
+    <table class="layui-table margin-top-20" lay-skin="line">
+        <thead>
+        <tr>
+            <th class='text-left nowrap'>详情</th>
+            <th class='text-left nowrap'>订单归属</th>
+            <th class='text-left nowrap'>审核状态</th>
+            <th class='text-left nowrap padding-0 relative' style="min-width:400px">
+                <div class="layui-row" style="line-height:28px">
+                    <div class="layui-col-xs6 text-center layui-elip">商品规格</div>
+                    <div class="layui-col-xs3 text-center layui-elip">售价/数量</div>
+                    <div class="layui-col-xs3 text-center layui-elip">金额</div>
+                </div>
+            </th>
+            <th class='text-left nowrap'>订单金额</th>
+            <th class='text-left nowrap'>申请原因</th>
+            <th class="text-left nowrap" >操作</th>
+        </tr>
+        </thead>
+        <tbody>
+        {foreach $list as $key=>$vo}
+        <tr>
+            <td class='text-left nowrap'>
+                <div class="inline-block">
+                    订单ID: {$vo.order_id|default=''}<br/>
+                    订单号:{$vo.order_num|default=''}<br/>
+                    供货商:{$supplier[$vo.supplier_id]|default='--'}
+                </div>
+            </td>
+            <td class='text-left nowrap'>
+                <div class="inline-block">
+                    账号:{$admin_arr[$vo.employee_user]|default=''}<br/>
+                    销售:{$supplier[$vo.supplier_id]|default='--'}<br/>
+                    电话:{$vo.phone|default='--'}
+                </div>
+            </td>
+            <td class='text-left nowrap'>
+                <div class="inline-block">
+                    状态:
+                    {eq name='vo.sh_status' value='0'}待审核{/eq}
+                    {eq name='vo.sh_status' value='1'}审核通过{/eq}
+                    {eq name='vo.sh_status' value='2'}审核拒绝{/eq}<br/>
+                    审核人:{$vo.audit_user ? $admin_arr[$vo.audit_user]:'--'}
+                </div>
+            </td>
+
+            <td class='text-left nowrap padding-0 relative'>
+                <div style="overflow:auto;max-height:68px;padding:5px 0">
+                    {foreach $vo.list as $goods}
+                    <div class="layui-row" style="line-height:23px">
+                        <div class="layui-col-xs6 text-center layui-elip font-s10">{:str_replace(['::',';;'],[':',';'],$goods.goods_spec)}</div>
+                        <div class="layui-col-xs3 text-center layui-elip color-blue font-s10">{$goods.price}/{$goods.num}</div>
+                        <div class="layui-col-xs3 text-center layui-elip color-blue font-s10">{$goods.total_price}</div>
+                    </div>
+                    {/foreach}
+                </div>
+            </td>
+
+
+            <td class='text-left nowrap'>{$vo.order_money}</td>
+            <td class='text-left nowrap'>{$vo.reason}</td>
+            <td class='text-left' >
+                {if auth("purchase/offline_order_refund/audit") && $vo.sh_status == 0 }
+                    <a data-title="审核" class="layui-btn layui-btn-sm layui-btn-warm" data-modal='{:url("audit")}?id={$vo.id}'>审 核</a>
+                {else auth("purchase/offline_order_refund/audit")}
+                    <a data-title="查看" class="layui-btn layui-btn-sm" data-modal='{:url("audit")}?id={$vo.id}'>查 看</a>
+                {/if}
+
+                {if auth("purchase/offline_order_refund/del")}
+                <span class="layui-btn layui-btn-sm layui-btn-danger" onclick="btn_confirm('删除','del','{$vo.id}');">删 除</span>
+                {/if}
+
+            </td>
+        </tr>
+        {/foreach}
+        </tbody>
+    </table>
+
+    {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
+</div>
+<script>
+    function btn_confirm(msg,fun,id) {
+        layer.confirm('请确定是否'+msg, {btn: ['确定', '取消'], title: "提示"}, function () {
+            var url = "/purchase/offline_order_refund/"+fun;
+            layer.closeAll();
+            $.ajax({
+                type: "post",
+                url: url,
+                data: {id:id},
+                dataType: "json",
+                async: false,
+                success: function (data) {
+                    layer.msg(data.info);
+                    setTimeout(function () {
+                        window.location.reload();
+                    },1000)
+                }
+            });
+        });
+    }
+
+</script>
+{/block}
+
+
+

+ 16 - 0
application/purchase/view/offline_order_refund/index_search.html

@@ -0,0 +1,16 @@
+<fieldset>
+    <legend>条件搜索</legend>
+    <form class="layui-form layui-form-pane form-search" action="{:request()->url()}" onsubmit="return false" method="get" autocomplete="off">
+        <div class="layui-form-item layui-inline">
+            <label class="layui-form-label">订单号</label>
+            <div class="layui-input-inline">
+                <input name="order_num" value="{$Think.get.order_num|default=''}" placeholder="请输入订单号" class="layui-input">
+            </div>
+        </div>
+
+        <div class="layui-form-item layui-inline">
+            <button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
+        </div>
+    </form>
+    <script>form.render()</script>
+</fieldset>