refactor(bpm): 优化备用金报销状态判断逻辑
-将状态判断条件从不等于 FLAG_FALSE 改为等于 IN_PROGRESS- 这样可以更准确地处理正在处理中的备用金报销情况
This commit is contained in:
parent
6a393fa974
commit
0897be8f7b
@ -62,7 +62,7 @@ public class BpmOAImprestController {
|
||||
}
|
||||
|
||||
BpmOAImprestRespVO respVO = BpmOAImprestConvert.INSTANCE.convert(imprest);
|
||||
if (!respVO.getStatus().equals(BpmOAImprestDO.FLAG_FALSE)) {
|
||||
if (respVO.getStatus().equals(BpmOAImprestDO.IN_PROGRESS)) {
|
||||
respVO.setNote("您有一笔备用金报销正在处理中!");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user