|
|
|
@ -1233,6 +1233,20 @@ public class BaseController extends AbstractController { |
|
|
|
return responseData; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param [inData] |
|
|
|
* @author: sxm |
|
|
|
* @description: 获取物料工序最大工序编号 |
|
|
|
* @return: com.gaotao.common.utils.R |
|
|
|
* @date: 2023/3/7 11:55 |
|
|
|
*/ |
|
|
|
@PostMapping("getPartNoRouteInMaxItemNo") |
|
|
|
@ResponseBody |
|
|
|
public R getPartNoRouteInMaxItemNo(@RequestBody RoutingDetailData inData) { |
|
|
|
String maxItemNo = baseService.getPartNoRouteInMaxItemNo(inData); |
|
|
|
return R.ok().put("data", maxItemNo); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return {@link Object} |
|
|
|
* @Title deleteRoutingDetail |
|
|
|
@ -1852,9 +1866,9 @@ public class BaseController extends AbstractController { |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* @author: sxm |
|
|
|
* @description: 获取选中班次类型 默认信息 |
|
|
|
* @param [calendarData] |
|
|
|
* @author: sxm |
|
|
|
* @description: 获取选中班次类型 默认信息 |
|
|
|
* @return: com.gaotao.common.utils.R |
|
|
|
* @date: 2022/10/21 10:06 |
|
|
|
*/ |
|
|
|
@ -1866,16 +1880,18 @@ public class BaseController extends AbstractController { |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param [calendarExceptionData] |
|
|
|
* @author: sxm |
|
|
|
* @description: 修改班次信息 |
|
|
|
* @param [calendarExceptionData] |
|
|
|
* @return: com.gaotao.common.utils.R |
|
|
|
* @date: 2022/10/21 10:27 |
|
|
|
*/ |
|
|
|
@PostMapping("/updateWorkingCalendar") |
|
|
|
@ResponseBody |
|
|
|
public R updateWorkingCalendar(@RequestBody CalendarExceptionData calendarExceptionData) { |
|
|
|
baseService.updateWorkingCalendar(calendarExceptionData); |
|
|
|
public R updateWorkingCalendar(@RequestBody CalendarExceptionData calendarExceptionData) { |
|
|
|
baseService.updateWorkingCalendar(calendarExceptionData); |
|
|
|
return R.ok(getLanguageMsg(SysMsgConstant.OBJECT_ID_200000)); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |