|
|
@@ -414,6 +414,11 @@ public class PtlAgreementProductCostsNewServiceImpl extends ServiceImpl<PtlAgree
|
|
|
List<PtlAgreementProductCostsAttrLink> costsAttrLinks = agreementProductCosts.getCostsAttrLinks();
|
|
|
List<PtlAgreementProductCostsAttrLink> costsAttrLink = new ArrayList<>();
|
|
|
costsAttrLinks.forEach(x -> {
|
|
|
+ //转换数组
|
|
|
+ if(x.getMinArray() != null && x.getMinArray().length > 0){
|
|
|
+ x.setMin(String.join(",",x.getMinArray()));
|
|
|
+ }
|
|
|
+
|
|
|
//处理中文逗号
|
|
|
if(x.getMin() != null && x.getMin().contains(","))
|
|
|
{
|