Compare commits

..

No commits in common. "f4e3e41a152693538af601500a9daa7b8fc43a61" and "c6e31124b4da847d0ead6ef4799ac3cbec66be83" have entirely different histories.

4 changed files with 4 additions and 13 deletions

View File

@ -167,12 +167,7 @@ public class LisWorkController extends BaseController {
@ApiOperation("未建项目结果")
@GetMapping("/noitemresult")
public Result noitemresult(Date jyrq, String yq,String ybh) {
return lisWorkService.getnoitemresult(jyrq,yq,ybh);
}
@ApiOperation("项目与通道号对照")
@GetMapping("/setiteminter")
public Result setiteminter(Date jyrq, String yq,String ybh,String xmdh,String tdh) {
// return lisWorkService.setiteminter(jyrq,yq,ybh);
return new Result("0","成功");
return lisWorkService.noitemresult(jyrq,yq,ybh);
}
}

View File

@ -29,5 +29,5 @@ public interface LisWorkService {
Result changelink(Date jyrq, String yq,String ybh,String instrid);
Result clearnotcomplete(Date jyrq, String yq,String ybh);
Result viewbackup(Date jyrq, String yq,String ybh);
Result getnoitemresult(Date jyrq, String yq,String ybh);
Result noitemresult(Date jyrq, String yq,String ybh);
}

View File

@ -629,7 +629,7 @@ public class LisWorkServiceImpl implements LisWorkService {
return new Result("0", "成功!",map);
}
@Override
public Result getnoitemresult(Date jyrq, String yq,String ybh){
public Result noitemresult(Date jyrq, String yq,String ybh){
return new Result("0", "成功!");
}
}

View File

@ -128,8 +128,4 @@
select * from lab_result_bk
where jyrq = #{jyrq} and yq = #{yq} and ybh = #{ybh}
</select>
<select id="getnoitemresult" resultType="com.czlis.common.core.domain.entity.lis.LabResult">
SELECT yq,xmdh,csjg FROM lab_result WHERE jyrq = #{jyrq} AND yq = #{yq} AND ybh =#{ybh}
AND upper(xmdh) not in (select tdh from xm_inter where yq = #{yq} )
</select>
</mapper>