This commit is contained in:
2024-08-03 10:56:11 +08:00
parent 79518224d3
commit 0457c4a3ee

View File

@@ -459,6 +459,7 @@ public class InBoxManageServiceImpl implements InBoxManageService {
// 查询这一排相同木箱规格的仓位
List<JSONObject> attrRowList = attrRowAllList.stream()
.filter(row -> row.getString("row_num").equals(jsonRow.getString("row_num")))
.filter(row -> ObjectUtil.isNotEmpty(row.getString("is_packing")))
.filter(row -> row.getDoubleValue("box_length") == jsonParam.getDoubleValue("box_length")
&& row.getDoubleValue("box_width") == jsonParam.getDoubleValue("box_width")
&& row.getDoubleValue("box_high") == jsonParam.getDoubleValue("box_high")