Commit 541e92a2 by guojx

销售结构接口

parent 5ced7b56
......@@ -147,6 +147,12 @@ public class DataController {
}
JSONObject jsonParam = new JSONObject();
jsonParam.put("enterpriseId", qo.getEnterpriseId());
if (StringUtils.isNotBlank(qo.getStartDate())) {
jsonParam.put("startDate", qo.getStartDate());
}
if (StringUtils.isNotBlank(qo.getEndDate())) {
jsonParam.put("endDate", qo.getEndDate());
}
getAuthStore(qo.getStoreId(), qo.getClerkId(), qo.getWxEnterpriseId(), jsonParam);
jsonParam.put("groupType", 1);
Map<String, Object> res = DataApiUtils.http(jsonParam.toJSONString(), apolloKey);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment