1.修复垛位查询由于没有板材时垛位不显示的问题

2.优化页面显示,显示语音识别结果
3.优化上料查询结果排序,使用工单号正序排序
master
董哲奇 5 months ago
parent 00f81b5e25
commit 1a24e1c9d8

@ -415,6 +415,7 @@ public class ZyjhController {
.eq(StrUtil.isNotEmpty(search.getDcch()),DmYdjh::getDcCh, search.getDcch())
.eq(StrUtil.isNotEmpty(search.getDcPl()),DmYdjh::getDcPl, search.getDcPl())
.eq(StrUtil.isNotEmpty(search.getKw()),DmYdjh::getKw, search.getKw())
.orderByDesc(DmYdjh::getDjh)
);
return new ResultBean<>(list);

@ -125,6 +125,7 @@ public class WebSocketService extends TextWebSocketHandler {
case ERROR:
tipHandler.execute(msg);
case ZX:
tipHandler.execute(msg);
zxHandler.execute(msg);
break;
}

@ -43,10 +43,9 @@
a.id,a.name,a.type,a.tzbh,
<include refid="ycldwInfo" />
from
ycldw a left join ycldw_info b on a.id=b.dw_id
ycldw a left join ycldw_info b on a.id=b.dw_id <if test="lx!=null and lx!=''">AND b.zt=#{lx}</if>
<where>
<if test="type!=null and type!=''">a.type = #{type}</if>
<if test="lx!=null and lx!=''">AND b.zt=#{lx}</if>
</where>
order by a.id,ceng
</select>

Loading…
Cancel
Save