|
|
|
@ -51,8 +51,6 @@ import com.glxp.api.common.enums.ResultEnum;
|
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
@ -1177,9 +1175,14 @@ public class WareHouseController {
|
|
|
|
|
public BaseResponse saveWarehouseUser(@RequestBody Map<String, Object> params) {
|
|
|
|
|
String code = String.valueOf(params.get("code"));
|
|
|
|
|
String userListJson = String.valueOf(params.get("userList"));
|
|
|
|
|
if (StrUtil.isBlank(code) || StrUtil.isBlank(userListJson))
|
|
|
|
|
if (StrUtil.isBlank(code) || StrUtil.isBlank(userListJson)) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL);
|
|
|
|
|
warehouseUserService.saveWarehouseUser(code, JSONUtil.toList(userListJson, AuthAdmin.class));
|
|
|
|
|
}
|
|
|
|
|
List<AuthAdmin> userList = JSONUtil.toList(userListJson, AuthAdmin.class);
|
|
|
|
|
if (CollUtil.isEmpty(userList)) {
|
|
|
|
|
return ResultVOUtils.error(500, "用户列表不能为空");
|
|
|
|
|
}
|
|
|
|
|
warehouseUserService.saveWarehouseUser(code, userList);
|
|
|
|
|
invWarehouseService.updateTime(code, new Date());
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
}
|
|
|
|
|