|
@@ -138,7 +138,9 @@ public class OutStoreFormServiceImpl extends BaseServiceImpl<OutStoreFormMapper,
|
|
|
OutStoreFormVO outStoreFormVO = new OutStoreFormVO();
|
|
|
BeanConverterUtil.copyObjectProperties(outStoreForm, outStoreFormVO);
|
|
|
if(StringUtils.isNotBlank(outStoreForm.getPickId())){
|
|
|
- outStoreFormVO.setRepairNo(repairApplicationFormMapper.selectByPrimaryKey(outStoreForm.getPickId()).getNo());
|
|
|
+ RepairApplicationForm repairApplicationForm = repairApplicationFormMapper.selectByPrimaryKey(outStoreForm.getPickId());
|
|
|
+ outStoreFormVO.setRepairNo(repairApplicationForm.getNo());
|
|
|
+ outStoreFormVO.setContent(repairApplicationForm.getContent());
|
|
|
}
|
|
|
// 详情列表
|
|
|
/* if (StringUtils.isNotBlank(outStoreForm.getStoreId())) {
|