|
@@ -27,6 +27,7 @@ import com.platform.dao.vo.query.store.StoreCheckJobVO;
|
|
|
import com.platform.dao.vo.query.store.StoreVO;
|
|
|
import com.platform.service.base.impl.BaseServiceImpl;
|
|
|
import com.platform.service.event.WorkplaceBacklogEvent;
|
|
|
+import com.platform.service.store.OutStoreDetailService;
|
|
|
import com.platform.service.store.OutStoreFormService;
|
|
|
import com.platform.service.store.StoreService;
|
|
|
import com.platform.service.upms.SysUserRoleService;
|
|
@@ -68,6 +69,15 @@ public class OutStoreFormServiceImpl extends BaseServiceImpl<OutStoreFormMapper,
|
|
|
private SbInfoMapper sbInfoMapper;
|
|
|
private SbPositionMapper sbPositionMapper;
|
|
|
private SysUserRoleService sysUserService;
|
|
|
+ private OutStoreDetailService outStoreDetailService;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public OutStoreFormVO selectbyRepairForm(String id) {
|
|
|
+ List<OutStoreDetail> outStoreDetails = outStoreDetailService.getModelListByDTO(new OutStoreDetailDTO().setRepairFormId(id));
|
|
|
+ OutStoreFormVO vo = new OutStoreFormVO();
|
|
|
+ vo.setId(outStoreDetails.get(0).getOutId());
|
|
|
+ return vo.setOutStoreDetail(outStoreDetails);
|
|
|
+ }
|
|
|
|
|
|
@Override
|
|
|
public List<OutStoreFormVO> selectLists(OutStoreFormDTO dto) {
|