1.用户信息接口增加返回用户仓库和分仓中文名称字段值

fengcang
x_z 3 years ago
parent 48927352e1
commit d7473dc7a8

@ -216,7 +216,8 @@ public class LoginController {
LoginUserInfoResponse loginUserInfoResponse = new LoginUserInfoResponse();
BeanUtils.copyProperties(authAdmin, loginUserInfoResponse);
loginUserInfoResponse.setAuthRules(authRules);
loginUserInfoResponse.setLocInvName(invWarehouseService.getInvName(loginUserInfoResponse.getLocInvCode()));
loginUserInfoResponse.setLocSubInvName(invSubWarehouseService.getSubInvName(loginUserInfoResponse.getLocSubInvCode()));
return ResultVOUtils.success(loginUserInfoResponse);
}

@ -30,4 +30,12 @@ public interface InvSubWarehouseService {
boolean deleteByParentCode(String code);
public boolean checkDuplicateName(String parentId, String name);
/**
*
*
* @param subInvCode
* @return
*/
String getSubInvName(String subInvCode);
}

@ -62,4 +62,12 @@ public interface InvWarehouseService {
* @return
*/
List<InvWarehouseThirdSysResponse> getThirdSysDetail(FilterBasicThirdSysRequest request, Integer id);
/**
*
*
* @param code
* @return
*/
String getInvName(String code);
}

@ -1,6 +1,7 @@
package com.glxp.api.admin.service.inventory.impl;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.util.StrUtil;
import com.github.pagehelper.PageHelper;
import com.glxp.api.admin.dao.inventory.InvSubWarehouseDao;
import com.glxp.api.admin.entity.inventory.InvSubWarehouseEntity;
@ -109,4 +110,12 @@ public class InvSubWarehouseServiceImpl implements InvSubWarehouseService {
}
return false;
}
@Override
public String getSubInvName(String subInvCode) {
if (StrUtil.isBlank(subInvCode)) {
return "";
}
return invSubWarehouseDao.selectNameByCode(subInvCode);
}
}

@ -2,6 +2,7 @@ package com.glxp.api.admin.service.inventory.impl;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.util.ReflectUtil;
import cn.hutool.core.util.StrUtil;
import com.github.pagehelper.PageHelper;
import com.glxp.api.admin.dao.basic.BasicThirdSysDao;
import com.glxp.api.admin.dao.inventory.InvWarehouseDao;
@ -215,4 +216,12 @@ public class InvWarehouseServiceImpl implements InvWarehouseService {
}
return result;
}
@Override
public String getInvName(String code) {
if (StrUtil.isBlank(code)) {
return "";
}
return invWarehouseDao.getNameByCode(code);
}
}

Loading…
Cancel
Save