Commit e91c7fbe zshaohui

1.未满箱子优化

1 个父辈 23aac61f
...@@ -599,7 +599,7 @@ public class MaterialBoxController { ...@@ -599,7 +599,7 @@ public class MaterialBoxController {
} }
Criteria c = Criteria.where("barcode").exists(true) Criteria c = Criteria.where("barcode").exists(true)
.and("enabled").is(true) //可用 .and("enabled").is(true) //可用
.and("barcode.fillUp").is(false); //未装满 .and("barcode.fillUp").ne(true); //未装满
if (StringUtils.isNotBlank(partNumber)) { if (StringUtils.isNotBlank(partNumber)) {
c.and("barcode.subCodeList.partNumber").is(partNumber); c.and("barcode.subCodeList.partNumber").is(partNumber);
} }
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!