|
@@ -13,6 +13,7 @@ import com.platform.dao.bean.MyPage;
|
|
|
import com.platform.dao.dto.store.OutStoreDetailDTO;
|
|
|
import com.platform.dao.dto.store.OutStoreFormDTO;
|
|
|
import com.platform.dao.dto.store.SparePickFormDTO;
|
|
|
+import com.platform.dao.entity.repair.RepairApplicationForm;
|
|
|
import com.platform.dao.entity.sb.SbOil;
|
|
|
import com.platform.dao.entity.store.*;
|
|
|
import com.platform.dao.enums.*;
|
|
@@ -130,8 +131,12 @@ public class OutStoreFormServiceImpl extends BaseServiceImpl<OutStoreFormMapper,
|
|
|
@Override
|
|
|
public OutStoreFormVO getDetail(Object id) {
|
|
|
OutStoreForm outStoreForm = this.getModelById(id);
|
|
|
+ RepairApplicationForm form = new RepairApplicationForm();
|
|
|
+ form.setId(outStoreForm.getPickId());
|
|
|
+
|
|
|
OutStoreFormVO outStoreFormVO = new OutStoreFormVO();
|
|
|
BeanConverterUtil.copyObjectProperties(outStoreForm, outStoreFormVO);
|
|
|
+ outStoreFormVO.setRepairNo(repairApplicationFormMapper.selectOne(form).getNo());
|
|
|
// 详情列表
|
|
|
/* if (StringUtils.isNotBlank(outStoreForm.getStoreId())) {
|
|
|
Store store = storeService.getModelById(outStoreForm.getStoreId());
|