From fb7d36fa740afca48e7f7f0f10685275d391b7da Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期五, 20 九月 2019 17:01:52 +0800 Subject: [PATCH] 增加oppo推送 --- fanli/src/main/java/com/yeshi/fanli/util/taobao/TaoKeApiUtil.java | 33 +++++++++++++++++++-------------- 1 files changed, 19 insertions(+), 14 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/util/taobao/TaoKeApiUtil.java b/fanli/src/main/java/com/yeshi/fanli/util/taobao/TaoKeApiUtil.java index 6cb1728..da0f5f8 100644 --- a/fanli/src/main/java/com/yeshi/fanli/util/taobao/TaoKeApiUtil.java +++ b/fanli/src/main/java/com/yeshi/fanli/util/taobao/TaoKeApiUtil.java @@ -127,7 +127,7 @@ map.put("method", "taobao.tbk.item.info.get"); map.put("num_iids", id + ""); String resultStr = TaoKeBaseUtil.baseRequestForThreeTimes(map, true); - // System.out.println(resultStr); + System.out.println(resultStr); JSONObject data = JSONObject.fromObject(resultStr); // 鍟嗗搧涓嬫灦 if (data.optJSONObject("error_response") != null && data.optJSONObject("error_response").optInt("code") == 15 @@ -190,9 +190,15 @@ if (item.optBoolean("free_shipment")) goods.setFreeShipment(1); - if (!StringUtil.isNullOrEmpty(item.optString("material_lib_type"))) - goods.setMaterialLibType(item.optInt("material_lib_type")); - else + if (!StringUtil.isNullOrEmpty(item.optString("material_lib_type"))) { + try { + String materialLibType = item.optString("material_lib_type"); + goods.setMaterialLibType(Integer.parseInt(materialLibType.split(",")[0])); + } catch (Exception e) { + goods.setMaterialLibType(0); + } + + } else goods.setMaterialLibType(0); return goods; @@ -693,7 +699,7 @@ } String resultStr = TaoKeBaseUtil.baseRequestForThreeTimes(map, true); -// System.out.println("resultStr"+ resultStr); + // System.out.println("resultStr"+ resultStr); JSONObject data = JSONObject.fromObject(resultStr); if (data.optJSONObject("tbk_dg_material_optional_response") != null && data.optJSONObject("tbk_dg_material_optional_response").optJSONObject("result_list") != null) { @@ -1242,7 +1248,7 @@ dto.setPage(pageEntity); return dto; } - + /** * 搴楅摵鎼滅储 * @@ -1260,15 +1266,15 @@ map.put("method", "taobao.tbk.shop.get"); map.put("fields", "user_id,shop_title,shop_type,seller_nick,pict_url,shop_url"); map.put("q", filter.getKey()); - map.put("page_size", filter.getPageSize()+ ""); + map.put("page_size", filter.getPageSize() + ""); map.put("page_no", filter.getPage() + ""); - - if(!StringUtil.isNullOrEmpty(filter.getSort())) + + if (!StringUtil.isNullOrEmpty(filter.getSort())) map.put("sort", filter.getSort()); - - if(filter.getTmall() != null) + + if (filter.getTmall() != null) map.put("is_tmall", filter.getTmall() + ""); - + String resultStr = TaoKeBaseUtil.baseRequestForThreeTimes(map, true); JSONObject resultDate = JSONObject.fromObject(resultStr); if (resultDate.optJSONObject("tbk_shop_get_response") != null @@ -1290,7 +1296,6 @@ } return list; } - /** * 鍝佺墝鍒歌幏鍙� @@ -1955,7 +1960,7 @@ // 娣樼ぜ閲戝垱寤� public static TaoLiJinDTO createTaoLiJin(Long auctionId, String name, BigDecimal perface, int totalNum, Date sendStartTime, Date sendEndTime, Date useStartTime, Date useEndTime, TaoKeAppInfo app) - throws TaoLiJinCreateException,TaoKeApiException { + throws TaoLiJinCreateException, TaoKeApiException { Map<String, String> map = new HashMap<>(); map.put("method", "taobao.tbk.dg.vegas.tlj.create"); map.put("adzone_id", app.getPid().split("_")[3]); -- Gitblit v1.8.0