|
@@ -222,6 +222,13 @@ Route::group(['middleware'=> ['checkLogin']],function ($route){
|
|
|
$route->any('BookingDetail', 'Api\BookingListController@customerDetail');
|
|
|
$route->any('BookingConfirm', 'Api\BookingListController@customerConfirm');
|
|
|
|
|
|
+ //排班设置
|
|
|
+ $route->any('scheduleList', 'Api\ScheduleController@getList');
|
|
|
+ $route->any('scheduleEdit', 'Api\ScheduleController@edir');
|
|
|
+ $route->any('scheduleDetail', 'Api\ScheduleController@detail');
|
|
|
+ $route->any('scheduleAdd', 'Api\ScheduleController@add');
|
|
|
+ $route->any('scheduleDel', 'Api\ScheduleController@del');
|
|
|
+
|
|
|
//现存量
|
|
|
$route->any('productInventoryList', 'Api\ProductInventoryController@productInventoryList');
|
|
|
//库存台账
|