送货和核货关联到打印详细信息

master
erzhongxmu 2020-10-26 08:11:23 +08:00
parent 2052866dd9
commit 0ed0f29f86
2 changed files with 5 additions and 2 deletions

View File

@ -530,8 +530,11 @@ public class TmsYwDingdanController extends BaseController {
ResultDO D0 = new ResultDO();
D0.setOK(true);
String hql="from WmTmsNoticeHEntity ";
System.out.println("/list/username"+username );
System.out.println("/list/searchstr"+searchstr );
List<WmTmsNoticeHEntity> listWaveToDowns =new ArrayList<>();
if(StringUtil.isNotEmpty(searchstr)){
if(StringUtil.isNotEmpty(searchstr)&&!"null".equals(searchstr)){
hql="from WmTmsNoticeHEntity where omSta <> ? and reMember = ? and omNoticeId = ?";
listWaveToDowns = wmOmNoticeHService.findHql(hql,"已送货",username,searchstr);
}else{

View File

@ -2666,7 +2666,7 @@ public class WmOmNoticeHController extends BaseController {
String hql="from WmOmNoticeHEntity ";
List<WmOmNoticeHEntity> listWaveToDowns =new ArrayList<>();
if(StringUtil.isNotEmpty(searchstr)){
if(StringUtil.isNotEmpty(searchstr)&&!"null".equals(searchstr)){
hql="from WmOmNoticeHEntity where omSta <> ? and reMember = ? and omNoticeId = ?";
listWaveToDowns = wmOmNoticeHService.findHql(hql,"复核完成",username,searchstr);
}else{