|
@@ -4637,4 +4637,16 @@
|
|
|
WHERE TTR.ORDER_ID = #{orderId}
|
|
|
</select>
|
|
|
|
|
|
+ <select id="getQueueInfo" parameterType="java.util.Map" resultType="java.util.Map">
|
|
|
+ select LIST_ID "listId",
|
|
|
+ IS_SPELLING "isSpelling",
|
|
|
+ RESULT_ID "resultId",
|
|
|
+ INSERT_UPDATE_REMARK "insertUpdateRemark"
|
|
|
+ from QMS_QUEUE_RESULT where RESULT_TOTAL_ID = #{resultTotalId} and CAPACITY_ID = #{capacityId}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <update id="updatePassthrough" parameterType="java.math.BigDecimal">
|
|
|
+ update TMSTRUCK_ENFACTORY_RESULT t set t.INSERT_UPDATE_REMARK = "OK"
|
|
|
+ where t.RESULT_TOTAL_ID = #{resultTotalId}
|
|
|
+ </update>
|
|
|
</mapper>
|