|
|
@@ -179,6 +179,17 @@ public class InsCrawlerOrderServiceImpl implements InsCrawlerOrderService {
|
|
|
crawlerQuoteRequest.setPricecoefficient(t.getPriceCoefficient() == null ? "1" : t.getPriceCoefficient());
|
|
|
}
|
|
|
|
|
|
+ // 太平添加applyNo参数
|
|
|
+ if (ptlAgreementAttribution.getInsCompanyId().equals("TPIC1000000")){
|
|
|
+ JSONArray fields = ptlAgreementAttribution.getFields();
|
|
|
+ for(int k=0;k<fields.size();k++){
|
|
|
+ JSONObject jsonObject = fields.getJSONObject(k);
|
|
|
+ if("applyNo".equals(jsonObject.getString("field"))){
|
|
|
+ crawlerQuoteRequest.setApplyNo(jsonObject.getString("value"));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
// 中煤添加netpointcode 代码
|
|
|
if (ptlAgreementAttribution.getInsCompanyId().equals("ZMBX1000000")){
|
|
|
JSONArray fields = ptlAgreementAttribution.getFields();
|