|
@@ -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);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|