Commit 90a67c23431e7607d704c86344691c43abf2ec56
1 parent
532cf712
Boolean值修改
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/huaheng/pc/inventory/inventoryDetail/service/InventoryDetailServiceImpl.java
... | ... | @@ -130,7 +130,7 @@ public class InventoryDetailServiceImpl extends ServiceImpl<InventoryDetailMappe |
130 | 130 | |
131 | 131 | @Override |
132 | 132 | public List<InventoryDetail> selectBysql(String sql, ShipmentDetail shipmentDetail, String sqll, ShipmentPreference shipmentPreference) { |
133 | - if(shipmentPreference.getAllowQcCheckResult() == false) { | |
133 | + if(shipmentPreference.getAllowQcCheckResult() == true) { | |
134 | 134 | sql = sql +"'" + shipmentDetail.getId() + "' \n"+ sqll; |
135 | 135 | }else { |
136 | 136 | sql = sql +"'" + shipmentDetail.getId() + "' \n"+ |
... | ... |