|
|
|
@ -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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|