Authored by 胡古飞

fix 全球购品牌id

... ... @@ -108,7 +108,7 @@ public class ProductIndexBaseService {
} catch (Exception e) {
}
productMap.put("tbl_country_id", tbl_country_id);
productMap.put("tbl_brand_id", brand_id <0 || "N".equalsIgnoreCase(is_global)?0:brand_id * -1);//全球购品牌id改为正数
productMap.put("tbl_brand_id", brand_id >0 || "N".equalsIgnoreCase(is_global)?0:brand_id * -1);//全球购品牌id改为正数
productMap.put("tbl_country_name", map.get(ProductIndexEsField.tblCountryName));
String tbl_plane = (tbl_country_id != null && tbl_country_id != 86) ? "Y" : "N";
productMap.put("tbl_plane", tbl_plane);
... ...