浏览代码

36、流量卡订单 有个BUG 只有已付款的才有退款功能+重新提交

Cherry 2 年之前
父节点
当前提交
d9e552d294
共有 2 个文件被更改,包括 35 次插入1 次删除
  1. 21 0
      application/admin/controller/MobileOrderFlow.php
  2. 14 1
      public/assets/js/backend/mobile_order_flow.js

+ 21 - 0
application/admin/controller/MobileOrderFlow.php

@@ -7,9 +7,11 @@ use app\admin\model\MobileOrderAdmin;
 use app\admin\model\ShortcutContent;
 use app\common\controller\Backend;
 use app\common\model\LogisticsCompany;
+use app\common\model\MobileOrder;
 use app\common\model\MobileOrderOperation;
 use app\common\service\MobileOrderExport;
 use app\common\service\Refund;
+use app\service\GantanhaoService;
 use think\Db;
 use think\db\Query;
 use think\Loader;
@@ -434,4 +436,23 @@ class MobileOrderFlow extends Backend
 
         return view('', compact('row'));
     }
+
+    // 重新提交敢探号
+    public function reSubmit(){
+        $id=input('ids/d');
+        if($this->request->isGet()){
+            $this->error();
+            return ;
+        }else{
+            $mobileOrder = new MobileOrder;
+            $mobileOrder=$mobileOrder::with(['info'])->where('id',$id)->find();
+
+            try {
+                GantanhaoService::orderPurchase($mobileOrder);
+            }catch (\Exception $e){
+                $this->error($e->getMessage());
+            }
+            $this->success('ok',null,$mobileOrder);
+        }
+    }
 }

+ 14 - 1
public/assets/js/backend/mobile_order_flow.js

@@ -221,6 +221,19 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                             }
                         },
                         {
+                            name: '重新提交',
+                            text: __('重新提交'),
+                            title: __('重新提交'),
+                            classname: 'btn btn-xs btn-info btn-ajax',
+                            url: 'mobile_order_flow/reSubmit?a=1',
+                            refresh: true,
+                            callback: function (data) {
+                            },
+                            visible: function (row) {
+                                return row.status==10;
+                            }
+                        },
+                        {
                             name:'detail',
                             title:'查看物流',
                             text: __('查看物流'),
@@ -254,7 +267,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                             callback: function (data) {
                             },
                             visible: function (row) {
-                                return $('#table').data('mobile_order_refund') && row.status>0 && row.status!==90 && row.amount>0;
+                                return $('#table').data('mobile_order_refund') && row.status>0 && row.status==10 && row.amount>0;
                             }
                         },
                     ]