|
@@ -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');
|
|
|
|
|
|
|
|