Commit 5d944759 by java-李谡

修改条件评估论证bug

parent 682a68e2
#MySQL Database Config(The All Config Is Must) #MySQL Database Config(The All Config Is Must)
db.table.prefix=foc_ db.table.prefix=foc_
jdbc.type=mysql jdbc.type=mysql
jdbc.driver.class=com.mysql.jdbc.Driver jdbc.driver.class=com.mysql.jdbc.Driver
#jdbc.url=jdbc:mysql://106.75.105.96:5508/jd_foc?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull jdbc.url=jdbc:mysql://106.75.105.96:5508/jd_foc?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull
jdbc.url=jdbc:mysql://localhost:5508/jd_foc?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull #jdbc.url=jdbc:mysql://localhost:5508/jd_foc?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull
jdbc.username=sms_develop jdbc.username=sms_develop
jdbc.password=Develop2018!@# jdbc.password=Develop2018!@#
#\u521d\u59cb\u5316\u8fde\u63a5 #\u521d\u59cb\u5316\u8fde\u63a5
jdbc.initialSize=0 jdbc.initialSize=0
#\u8fde\u63a5\u6c60\u7684\u6700\u5927\u6d3b\u52a8\u4e2a\u6570 #\u8fde\u63a5\u6c60\u7684\u6700\u5927\u6d3b\u52a8\u4e2a\u6570
......
...@@ -190,7 +190,7 @@ ...@@ -190,7 +190,7 @@
<if test="aircraftType != null and aircraftType != ''"> <if test="aircraftType != null and aircraftType != ''">
AND a.aircraft_type = #{aircraftType} AND a.aircraft_type = #{aircraftType}
</if> </if>
group by a.id group by a.id,depart_name
</select> </select>
...@@ -319,8 +319,8 @@ ...@@ -319,8 +319,8 @@
a.del_flag = #{DEL_FLAG_NORMAL} a.del_flag = #{DEL_FLAG_NORMAL}
AND a.verif_id = #{verifId} AND a.verif_id = #{verifId}
AND f.depart_id = #{userDepartId} AND f.depart_id = #{userDepartId}
-- AND f.feedback_status='00' AND a.depart_id= #{departId}
group by a.verif_id,f.depart_id -- group by a.verif_id,f.depart_id
</when> </when>
<otherwise> <otherwise>
WHERE WHERE
...@@ -372,6 +372,7 @@ ...@@ -372,6 +372,7 @@
left join foc_condition_feedback f on v.id=f.condition_id left join foc_condition_feedback f on v.id=f.condition_id
where f.depart_id=#{userDepartId} where f.depart_id=#{userDepartId}
and v.verif_id=#{verifId} and v.verif_id=#{verifId}
AND v.depart_id= #{departId}
group by v.id group by v.id
</when> </when>
<otherwise> <otherwise>
......
...@@ -37,6 +37,6 @@ ...@@ -37,6 +37,6 @@
<setting name="jdbcTypeForNull" value="NULL"/> <setting name="jdbcTypeForNull" value="NULL"/>
<!--打印sql--> <!--打印sql-->
<!--<setting name="logImpl" value="STDOUT_LOGGING"/>--> <setting name="logImpl" value="STDOUT_LOGGING"/>
</settings> </settings>
</configuration> </configuration>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment