Commit 3a9811a39c8c464536c2221ba7d475d2820f9262
1 parent
639a78ec
update...
Showing
2 changed files
with
4 additions
and
3 deletions
src/main/java/com/bsth/entity/ac/CarInOutEntity.java
src/main/java/com/bsth/service/schedule/impl/InOutScheduleServiceImpl.java
| ... | ... | @@ -66,8 +66,9 @@ public class InOutScheduleServiceImpl implements InOutScheduleService { |
| 66 | 66 | if(0 == cio.getCarType()) |
| 67 | 67 | busInOut(cio); |
| 68 | 68 | |
| 69 | - //准备入库 | |
| 70 | - SignalPstThread.psts.add(cio); | |
| 69 | + //准备入库 -只存实进和实出 | |
| 70 | + if(cio.getType() == 2 || cio.getType() == 4) | |
| 71 | + SignalPstThread.psts.add(cio); | |
| 71 | 72 | } |
| 72 | 73 | |
| 73 | 74 | @Override | ... | ... |