LD 5 年 前
コミット
8fe22c3ff4
1 ファイル変更7 行追加3 行削除
  1. 7 3
      routes/web.php

+ 7 - 3
routes/web.php

@@ -356,6 +356,13 @@ Route::group(['prefix'=>'inventory'],function(){
         });
         });
     });
     });
 
 
+    /** 盲收 */
+    Route::group(['prefix'=>'blindReceive'],function(){
+        Route::get('/', function () { return view('inventory.blindReceive.index');});
+        Route::get('excels', 'InventoryBlindReceiveExcelController@index');
+        Route::post('excels/apiStore', 'InventoryBlindReceiveExcelController@apiStore');
+    });
+
     Route::get('syncOwners','InventoryAccountController@syncOwners');
     Route::get('syncOwners','InventoryAccountController@syncOwners');
     Route::any('删除盘点记录','InventoryAccountController@删除盘点记录');
     Route::any('删除盘点记录','InventoryAccountController@删除盘点记录');
     Route::get('完结盘点任务/{id}','InventoryAccountController@完结盘点任务');
     Route::get('完结盘点任务/{id}','InventoryAccountController@完结盘点任务');
@@ -421,7 +428,4 @@ Route::group(['prefix'=>'order'],function(){
     Route::post('resetLogisticsGetMark','OrderController@resetLogisticsGetMark');
     Route::post('resetLogisticsGetMark','OrderController@resetLogisticsGetMark');
 });
 });
 
 
-Route::get('inventory/blindReceive', function () { return view('inventory.blindReceive.index');});
-Route::get('inventory/blindReceive/excels', 'InventoryBlindReceiveExcelController@index');
-Route::post('inventory/blindReceive/excels/apiStore', 'InventoryBlindReceiveExcelController@apiStore');