|
|
@@ -292,24 +292,7 @@ Route::group(['prefix'=>'transport'],function(){
|
|
|
Route::resource('waybillFinancialExcepted','WaybillFinancialExceptedController');
|
|
|
});
|
|
|
Route::resource('waybill','WaybillController');
|
|
|
- /** 卸货 */
|
|
|
- Route::group(['prefix'=>'discharge'],function(){
|
|
|
- /** 卸货任务 */
|
|
|
- Route::group(['prefix'=>'task'],function(){
|
|
|
- Route::get('index','DischargeTaskController@index');
|
|
|
- Route::any('export','DischargeTaskController@export');
|
|
|
- });
|
|
|
- /** 结算报表 */
|
|
|
- Route::group(['prefix'=>'statement'],function(){
|
|
|
- Route::get('index','DischargeTaskController@statementIndex');
|
|
|
- Route::any('export','DischargeTaskController@exportStatements');
|
|
|
- });
|
|
|
- /** 服务商 对账单*/
|
|
|
- Route::group(['prefix'=>'facilitator'],function(){
|
|
|
- Route::get('index','FacilitatorController@statementIndex');
|
|
|
- Route::any('export','FacilitatorController@exportStatement');
|
|
|
- });
|
|
|
- });
|
|
|
+
|
|
|
});
|
|
|
/** 运输 */
|
|
|
Route::group(['prefix'=>'waybill'],function(){
|
|
|
@@ -579,6 +562,25 @@ Route::group(['prefix'=>'personnel'],function(){
|
|
|
Route::get('relating',function (){return view('personnel/menuPersonnel');});
|
|
|
|
|
|
Route::resource('laborReport','LaborReportController');
|
|
|
+
|
|
|
+ /** 卸货 */
|
|
|
+ Route::group(['prefix'=>'discharge'],function(){
|
|
|
+ /** 卸货任务 */
|
|
|
+ Route::group(['prefix'=>'task'],function(){
|
|
|
+ Route::get('index','DischargeTaskController@index');
|
|
|
+ Route::any('export','DischargeTaskController@export');
|
|
|
+ });
|
|
|
+ /** 结算报表 */
|
|
|
+ Route::group(['prefix'=>'statement'],function(){
|
|
|
+ Route::get('index','DischargeTaskController@statementIndex');
|
|
|
+ Route::any('export','DischargeTaskController@exportStatements');
|
|
|
+ });
|
|
|
+ /** 服务商 对账单*/
|
|
|
+ Route::group(['prefix'=>'facilitator'],function(){
|
|
|
+ Route::get('index','FacilitatorController@statementIndex');
|
|
|
+ Route::any('export','FacilitatorController@exportStatement');
|
|
|
+ });
|
|
|
+ });
|
|
|
});
|
|
|
|
|
|
Route::get('getLaborReport','LaborReportController@getDailyLabor');
|