mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
未排单去除大板纹理数据
This commit is contained in:
-4
@@ -727,8 +727,6 @@ public class PlanServiceImpl implements PlanService {
|
|||||||
|
|
||||||
List<String> color = records.stream().map(OrderGoodsResp::getColor).distinct().toList();
|
List<String> color = records.stream().map(OrderGoodsResp::getColor).distinct().toList();
|
||||||
|
|
||||||
List<Boolean> texture = records.stream().map(OrderGoodsResp::getTexture).distinct().toList();
|
|
||||||
|
|
||||||
List<BigDecimal> thickness = records.stream().map(OrderGoodsResp::getThickness).distinct().toList();
|
List<BigDecimal> thickness = records.stream().map(OrderGoodsResp::getThickness).distinct().toList();
|
||||||
|
|
||||||
List<String> brand = records.stream().map(OrderGoodsResp::getBrand).distinct().toList();
|
List<String> brand = records.stream().map(OrderGoodsResp::getBrand).distinct().toList();
|
||||||
@@ -738,7 +736,6 @@ public class PlanServiceImpl implements PlanService {
|
|||||||
.inIfPresent("og.goods_name",goodsName)
|
.inIfPresent("og.goods_name",goodsName)
|
||||||
.inIfPresent("og.material",material)
|
.inIfPresent("og.material",material)
|
||||||
.inIfPresent("og.color",color)
|
.inIfPresent("og.color",color)
|
||||||
.inIfPresent("og.texture",texture)
|
|
||||||
.inIfPresent("og.thickness",thickness)
|
.inIfPresent("og.thickness",thickness)
|
||||||
.inIfPresent("og.brand",brand);
|
.inIfPresent("og.brand",brand);
|
||||||
|
|
||||||
@@ -1638,7 +1635,6 @@ public class PlanServiceImpl implements PlanService {
|
|||||||
Objects.toString(item.getMaterial(), ""),
|
Objects.toString(item.getMaterial(), ""),
|
||||||
Objects.toString(item.getColor(), ""),
|
Objects.toString(item.getColor(), ""),
|
||||||
Objects.toString(item.getThickness(), ""),
|
Objects.toString(item.getThickness(), ""),
|
||||||
Objects.toString(item.getTexture(), ""),
|
|
||||||
Objects.toString(item.getBrand(), "")
|
Objects.toString(item.getBrand(), "")
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
-3
@@ -164,7 +164,6 @@
|
|||||||
og.color as color,
|
og.color as color,
|
||||||
og.goods_name as goodsName,
|
og.goods_name as goodsName,
|
||||||
og.material as material,
|
og.material as material,
|
||||||
og.texture as texture,
|
|
||||||
og.thickness as thickness,
|
og.thickness as thickness,
|
||||||
og.brand as brand
|
og.brand as brand
|
||||||
|
|
||||||
@@ -189,7 +188,6 @@
|
|||||||
og.color as color,
|
og.color as color,
|
||||||
og.goods_name as goodsName,
|
og.goods_name as goodsName,
|
||||||
og.material as material,
|
og.material as material,
|
||||||
og.texture as texture,
|
|
||||||
og.thickness as thickness,
|
og.thickness as thickness,
|
||||||
og.brand as brand
|
og.brand as brand
|
||||||
|
|
||||||
@@ -214,7 +212,6 @@
|
|||||||
og.color as color,
|
og.color as color,
|
||||||
og.goods_name as goodsName,
|
og.goods_name as goodsName,
|
||||||
og.material as material,
|
og.material as material,
|
||||||
og.texture as texture,
|
|
||||||
og.thickness as thickness,
|
og.thickness as thickness,
|
||||||
og.brand as brand,
|
og.brand as brand,
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user