查询等相关bug修改

cert
anthonywj 2 years ago
parent 6499f423f0
commit fe8c6fcaac

@ -113,7 +113,4 @@ public class TraceTaskController {
} }
} }

@ -215,6 +215,10 @@ public class UdiTraceController extends BaseController {
UdiEntity udiEntity = null; UdiEntity udiEntity = null;
UserCompanyEntity userCompanyEntity = null; UserCompanyEntity userCompanyEntity = null;
if (traceRecordRequest.getCompanyId() == null) {
return ResultVOUtils.error(500, "请先选择当前所在企业!");
}
if (StrUtil.isNotEmpty(traceRecordRequest.getUdiCode())) { if (StrUtil.isNotEmpty(traceRecordRequest.getUdiCode())) {
traceRecordRequest.setTraceType(Constant.UDI_TRACE); traceRecordRequest.setTraceType(Constant.UDI_TRACE);
} }

@ -4,9 +4,9 @@ server:
spring: spring:
datasource: datasource:
driver-class-name: com.p6spy.engine.spy.P6SpyDriver driver-class-name: com.p6spy.engine.spy.P6SpyDriver
jdbc-url: jdbc:p6spy:mysql://192.168.0.66:3364/udi_cpt?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true jdbc-url: jdbc:p6spy:mysql://127.0.0.1:3306/udi_cpt?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
username: root username: root
password: Glxp@6066 password: 123456
hikari: hikari:
connection-timeout: 60000 connection-timeout: 60000
maximum-pool-size: 20 maximum-pool-size: 20

@ -38,8 +38,7 @@
<select id="filterJoin" parameterType="com.glxp.api.req.trace.TraceOrderDetailRequest" <select id="filterJoin" parameterType="com.glxp.api.req.trace.TraceOrderDetailRequest"
resultType="com.glxp.api.res.trace.TraceOrderResponse"> resultType="com.glxp.api.res.trace.TraceOrderResponse">
SELECT trace_order.*, SELECT trace_product_record.udiCode,
trace_product_record.udiCode,
trace_product_record.ylqxzcrbarmc, trace_product_record.ylqxzcrbarmc,
trace_product_record.creditNum, trace_product_record.creditNum,
trace_product_record.cpmctymc, trace_product_record.cpmctymc,
@ -50,6 +49,7 @@
trace_product_record.expireDate, trace_product_record.expireDate,
trace_product_record.serialNo, trace_product_record.serialNo,
trace_product_record.zczbhhzbapzbh, trace_product_record.zczbhhzbapzbh,
trace_order.*,
uc.companyName uc.companyName
FROM trace_order FROM trace_order
left join trace_product_record left join trace_product_record
@ -104,8 +104,7 @@
<select id="filterOrder" parameterType="com.glxp.api.req.trace.TraceOrderRequest" <select id="filterOrder" parameterType="com.glxp.api.req.trace.TraceOrderRequest"
resultType="com.glxp.api.res.trace.TraceOrderResponse"> resultType="com.glxp.api.res.trace.TraceOrderResponse">
SELECT tpr.cpmctymc, tpr.ggxh, tpr.ylqxzcrbarmc, tpr.creditNum, tpr.batchNo, tr.* SELECT tpr.cpmctymc, tpr.ggxh, tpr.ylqxzcrbarmc, tpr.creditNum, tpr.batchNo, tr.*
FROM FROM trace_order AS tr
trace_order AS tr
LEFT JOIN trace_product_record tpr ON tr.traceProductIdFk = tpr.id LEFT JOIN trace_product_record tpr ON tr.traceProductIdFk = tpr.id
<where> <where>
<if test="recordCode != '' and recordCode != null"> <if test="recordCode != '' and recordCode != null">

@ -3,7 +3,7 @@
<mapper namespace="com.glxp.api.dao.trace.TraceRecordMapper"> <mapper namespace="com.glxp.api.dao.trace.TraceRecordMapper">
<select id="filterTraces" parameterType="com.glxp.api.req.trace.TraceRecordRequest" <select id="filterTraces" parameterType="com.glxp.api.req.trace.TraceRecordRequest"
resultType="com.glxp.api.res.trace.TraceRecordResponse"> resultType="com.glxp.api.res.trace.TraceRecordResponse">
SELECT tr.recordCode, tr.remark,tr.createUser, trd.* SELECT tr.recordCode, tr.remark, tr.createUser, tr.updateTime, trd.*
FROM trace_record_log tr FROM trace_record_log tr
LEFT JOIN trace_product_record trd ON trd.id = tr.traceProductIdFk LEFT JOIN trace_product_record trd ON trd.id = tr.traceProductIdFk
<where> <where>

@ -32,5 +32,7 @@
and ttn.batchNo = #{batchNo} and ttn.batchNo = #{batchNo}
</if> </if>
</where> </where>
order by ttn.updateTime desc
</select> </select>
</mapper> </mapper>

Loading…
Cancel
Save