|
|
@ -461,6 +461,10 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
* @Date: 2019/9/16 19:42 |
|
|
|
*/ |
|
|
|
private Result checkItemCirculation(ItemHandleSubmitFormDTO dto) { |
|
|
|
// 判断流转部门不能为空
|
|
|
|
if (null == dto.getDeptResultDTOS() || dto.getDeptResultDTOS().size() <= 0) { |
|
|
|
return new Result().error("请选择流转协助部门"); |
|
|
|
} |
|
|
|
// 校验是否跨级流转
|
|
|
|
String typeKey = ""; |
|
|
|
for (ItemCirculationDeptResultDTO circulationDeptResultDTO: |
|
|
|