代码备份

master
anthonywj 2 years ago
parent 3a0bf62f22
commit 1eea12e8a7

@ -351,6 +351,7 @@ public class SpsSyncDownloadController {
spsSyncOtherDataResponse.setTaskId(one.getId());
spsSyncOtherDataResponse.setIoCodeLostList((List<IoCodeLostEntity>) map.get(IoCodeLostEntity.class.getSimpleName()));
spsSyncOtherDataResponse.setIoCodeRelList((List<IoCodeRelEntity>) map.get(IoCodeRelEntity.class.getSimpleName()));
} catch (FileNotFoundException e) {
throw new RuntimeException("系统异常,未找到对应数据文件");
} catch (IOException e) {

@ -99,7 +99,7 @@
</if>
<if test="supInoivceSearch != null">
<if test="invoiceActions1 != null and invoiceActions1.size() != 0">
<if test="invoiceActions1 != null and invoiceActions2 == null">
AND ((`action` in
<foreach collection="invoiceActions1" index="index" item="item" open="(" close=")" separator=",">
#{item}
@ -133,19 +133,18 @@
</if>
</if>
<if test="supInoivceSearch != null and invoiceActions1 == null and invoiceActions1.size() == 0 ">
<if test="supInoivceSearch != null and invoiceActions1 == null and invoiceActions1.size() == 0">
<if test="invoiceActions2 != null and invoiceActions2.size() != 0">
and (
`action` in
`action` in
<foreach collection="invoiceActions2" index="index" item="item" open="(" close=")" separator=",">
#{item}
</foreach>
and status = 7
)
)
</if>
</if>
<if test="supInoivceSearch != null and invoiceActions2 == null and invoiceActions2.size()== 0 ">
<if test="supInoivceSearch != null and invoiceActions2 == null and invoiceActions2.size() == 0">
<if test="invoiceActions1 != null and invoiceActions2 == null">
AND (`action` in
<foreach collection="invoiceActions1" index="index" item="item" open="(" close=")" separator=",">
@ -154,7 +153,6 @@
and status = 10)
</if>
</if>
</where>
order by createTime desc
</select>

Loading…
Cancel
Save