浏览代码

维多利亚

home 2 年之前
父节点
当前提交
694015fae2

+ 3 - 1
hx-service/victoriatourist/src/main/java/com/fjhx/service/supplier/impl/SupplierPriceServiceImpl.java

@@ -79,7 +79,9 @@ public class SupplierPriceServiceImpl extends ServiceImpl<SupplierPriceMapper, S
     public List<SupplierPrice> getList(Map<String, Object> condition) {
         return lambdaQuery().
                 eq(SupplierPrice::getSupplierId, condition.get("supplierId"))
-                .in(Func.isNotEmpty(condition.get("goodsIds")), SupplierPrice::getMaterialId, JSONObject.parseArray(JSONObject.toJSONString(condition.get("goodsIds")), Long.class))
+                .in(Func.isNotEmpty(condition.get("goodsIds")),
+                        SupplierPrice::getMaterialId,
+                        JSONObject.parseArray(JSONObject.toJSONString(condition.get("goodsIds")), Long.class))
                 .list();
     }
 }