Merge branch 'dev'
This commit is contained in:
commit
a789733f6a
|
@ -165,12 +165,11 @@ public class TAbilityApplicationServiceImpl extends CrudServiceImpl<TAbilityAppl
|
||||||
if (processInstanceDTO.getProcessVariables().containsKey("backToFirst")) {
|
if (processInstanceDTO.getProcessVariables().containsKey("backToFirst")) {
|
||||||
try {
|
try {
|
||||||
Boolean backToFirst = Boolean.parseBoolean(processInstanceDTO.getProcessVariables().getOrDefault("backToFirst", "false").toString());
|
Boolean backToFirst = Boolean.parseBoolean(processInstanceDTO.getProcessVariables().getOrDefault("backToFirst", "false").toString());
|
||||||
if (backToFirst.equals(Boolean.TRUE)) {
|
if (Boolean.TRUE.equals(backToFirst)) {
|
||||||
index.put("backToFirst", "true");
|
index.put("backToFirst", "true");
|
||||||
} else {
|
|
||||||
index.put("backToFirst", "false");
|
|
||||||
}
|
}
|
||||||
} catch (Exception exception) {
|
} catch (Exception exception) {
|
||||||
|
index.put("backToFirst", "false");
|
||||||
logger.info(exception.toString());
|
logger.info(exception.toString());
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -66,7 +66,7 @@
|
||||||
|
|
||||||
<update id="delApplyCamera">
|
<update id="delApplyCamera">
|
||||||
UPDATE t_ability_application taa
|
UPDATE t_ability_application taa
|
||||||
SET expire_date = now()
|
SET expire_date = '2022-04-01 00:00:00'
|
||||||
WHERE id IN
|
WHERE id IN
|
||||||
<foreach collection="ids" item="item" separator="," open="(" close=")">
|
<foreach collection="ids" item="item" separator="," open="(" close=")">
|
||||||
#{item}
|
#{item}
|
||||||
|
|
Loading…
Reference in New Issue