Commit 54da2f759c719da39591276533fdd5a10aad176e
1 parent
b9b14eb9fd
Exists in
master
and in
6 other branches
产筛
Showing 1 changed file with 4 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/SieveWorker.java
View file @
54da2f7
| ... | ... | @@ -93,13 +93,15 @@ |
| 93 | 93 | if (CollectionUtils.isNotEmpty(orderModels)) |
| 94 | 94 | { |
| 95 | 95 | ReferralApplyOrderModel model = orderModels.get(0); |
| 96 | - //申请单状态 0 已接收 1 已转出 2 建议转诊 | |
| 96 | + // CREATED("待接收","1"), | |
| 97 | + //O("已接收","2"), | |
| 98 | + /// O1("建议转诊","3"); | |
| 97 | 99 | Integer status = model.getStatus(); |
| 98 | 100 | if (status == 1) |
| 99 | 101 | { |
| 100 | 102 | referralStatus = 1; |
| 101 | 103 | } |
| 102 | - else if (status == 0) | |
| 104 | + else if (status == 2) | |
| 103 | 105 | { |
| 104 | 106 | referralStatus = 2; |
| 105 | 107 | } |