报告模板菜单

This commit is contained in:
tangw 2026-01-07 15:09:02 +08:00
parent 85209f51ad
commit 37ed099615
2 changed files with 3 additions and 2 deletions

View File

@ -226,7 +226,7 @@ public class CommonUtil {
public int insertLabReqsteplog(LabReqsteplog labReqsteplog) { public int insertLabReqsteplog(LabReqsteplog labReqsteplog) {
return labReqsteplogMapper.insertLabReqsteplog(labReqsteplog); return labReqsteplogMapper.insertLabReqsteplog(labReqsteplog);
} }
public int getLabReqsteplogMax(String sqh) { public Integer getLabReqsteplogMax(String sqh) {
return labReqsteplogMapper.getLabReqsteplogMax(sqh); return labReqsteplogMapper.getLabReqsteplogMax(sqh);
} }
public List<LabRefused> getLabRefusedList(LabRefused labRefused) { public List<LabRefused> getLabRefusedList(LabRefused labRefused) {

View File

@ -199,7 +199,8 @@ public class LisWorkBase {
* @param yhdh 用户 * @param yhdh 用户
*/ */
public void setlabReqsteplog(String sqh, String zt, String yhdh) { public void setlabReqsteplog(String sqh, String zt, String yhdh) {
int xh = commonUtil.getLabReqsteplogMax(sqh); Integer xh = commonUtil.getLabReqsteplogMax(sqh);
if(xh==null) xh=0;
xh = xh + 1; xh = xh + 1;
LabReqsteplog labReqsteplog = new LabReqsteplog(); LabReqsteplog labReqsteplog = new LabReqsteplog();
labReqsteplog.setXh(xh); labReqsteplog.setXh(xh);