|
|
|
@ -3,10 +3,11 @@ package com.glxp.api.admin.service.basic.impl;
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
|
import com.glxp.api.admin.dao.basic.EntrustReceDao;
|
|
|
|
|
import com.glxp.api.admin.dao.inventory.InvSubWarehouseDao;
|
|
|
|
|
import com.glxp.api.admin.entity.basic.DlEntrustReceEntity;
|
|
|
|
|
import com.glxp.api.admin.entity.basic.EntrustReceEntity;
|
|
|
|
|
import com.glxp.api.admin.req.basic.BasicEntrustRecRequest;
|
|
|
|
|
import com.glxp.api.admin.res.basic.EntrustReceRespose;
|
|
|
|
|
import com.glxp.api.admin.res.basic.EntrustReceResponse;
|
|
|
|
|
import com.glxp.api.admin.service.basic.EntrustReceService;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
|
|
|
@ -19,6 +20,8 @@ public class EntrustReceServiceImpl implements EntrustReceService {
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
EntrustReceDao entrustReceDao;
|
|
|
|
|
@Resource
|
|
|
|
|
private InvSubWarehouseDao invSubWarehouseDao;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public EntrustReceEntity findById(Integer id) {
|
|
|
|
@ -57,7 +60,7 @@ public class EntrustReceServiceImpl implements EntrustReceService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public List<EntrustReceRespose> filterJoinEntrustRec(BasicEntrustRecRequest basicEntrustRecRequest) {
|
|
|
|
|
public List<EntrustReceResponse> filterJoinEntrustRec(BasicEntrustRecRequest basicEntrustRecRequest) {
|
|
|
|
|
|
|
|
|
|
if (basicEntrustRecRequest == null) {
|
|
|
|
|
return Collections.emptyList();
|
|
|
|
@ -66,7 +69,18 @@ public class EntrustReceServiceImpl implements EntrustReceService {
|
|
|
|
|
int offset = (basicEntrustRecRequest.getPage() - 1) * basicEntrustRecRequest.getLimit();
|
|
|
|
|
PageHelper.offsetPage(offset, basicEntrustRecRequest.getLimit());
|
|
|
|
|
}
|
|
|
|
|
return entrustReceDao.filterJoinEntrustRec(basicEntrustRecRequest);
|
|
|
|
|
List<EntrustReceResponse> entrustReceResponses = entrustReceDao.filterJoinEntrustRec(basicEntrustRecRequest);
|
|
|
|
|
if (CollUtil.isNotEmpty(entrustReceResponses)) {
|
|
|
|
|
//查询当前分库名称和委托验收分库名称
|
|
|
|
|
entrustReceResponses.forEach(entrustReceResponse -> {
|
|
|
|
|
String invWarehouseName = invSubWarehouseDao.selectNameByCode(entrustReceResponse.getInvWarehouseCode());//查询当前分库名称
|
|
|
|
|
entrustReceResponse.setInvWarehouseName(invWarehouseName);
|
|
|
|
|
|
|
|
|
|
String entrustSubInvName = invSubWarehouseDao.selectNameByCode(entrustReceResponse.getEntrustSubInv());
|
|
|
|
|
entrustReceResponse.setEntrustSubInvName(entrustSubInvName);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
return entrustReceResponses;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|