材料员确认
This commit is contained in:
parent
0c352f19d4
commit
7901d6fc1e
|
|
@ -225,6 +225,13 @@ public class LeaseApplyInfoServiceImpl implements ILeaseApplyInfoService {
|
|||
List<LeaseApplyDetails> details = leaseApplyInfoMapper.getDetailsLeaseList(bean);
|
||||
if (!CollectionUtils.isEmpty(details)) {
|
||||
leaseApplyRequestVo.setLeaseApplyDetailsList(details);
|
||||
for (LeaseApplyDetails detail : details) {
|
||||
// 获取编码详情
|
||||
List<MaCodeVo> maCodeVoList = leaseApplyDetailsMapper.getCodeList(bean.getId(), detail.getTypeId());
|
||||
if (!CollectionUtils.isEmpty(maCodeVoList)) {
|
||||
detail.setMaCodeVoList(maCodeVoList);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 根据id查询领料出库情况,查询出库人电子签名详情
|
||||
|
|
|
|||
Loading…
Reference in New Issue