package com.java110.front.smo.purchaseApplyDetail.impl;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.java110.core.component.AbstractComponentSMO;
|
import com.java110.core.context.IPageData;
|
import com.java110.entity.component.ComponentValidateResult;
|
import com.java110.front.smo.purchaseApplyDetail.IListPurchaseApplyDetailsSMO;
|
import com.java110.utils.constant.ServiceConstant;
|
import com.java110.utils.exception.SMOException;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.http.HttpMethod;
|
import org.springframework.http.ResponseEntity;
|
import org.springframework.stereotype.Service;
|
import org.springframework.web.client.RestTemplate;
|
|
/**
|
* 查询purchaseApply服务类
|
*/
|
@Service("listPurchaseApplyDetailsSMOImpl")
|
public class ListPurchaseApplyDetailsSMOImpl extends AbstractComponentSMO implements IListPurchaseApplyDetailsSMO {
|
|
@Autowired
|
private RestTemplate restTemplate;
|
|
@Override
|
public ResponseEntity<String> listPurchaseApplyDetails(IPageData pd) throws SMOException {
|
return businessProcess(pd);
|
}
|
|
@Override
|
protected void validate(IPageData pd, JSONObject paramIn) {
|
super.validatePageInfo(pd);
|
}
|
|
@Override
|
protected ResponseEntity<String> doBusinessProcess(IPageData pd, JSONObject paramIn) {
|
ComponentValidateResult result = super.validateStoreStaffCommunityRelationship(pd, restTemplate);
|
paramIn.put("storeId",result.getStoreId());
|
paramIn.put("storeTypeCd",result.getStoreTypeCd());
|
paramIn.put("communityId",result.getCommunityId());
|
paramIn.put("userId",result.getUserId());
|
String apiUrl = ServiceConstant.SERVICE_API_URL + "/api/purchaseApplyDetail.listPurchaseApplyDetails" + mapToUrlParam(paramIn);
|
ResponseEntity<String> responseEntity = this.callCenterService(restTemplate, pd, "",
|
apiUrl,
|
HttpMethod.GET);
|
|
return responseEntity;
|
}
|
|
public RestTemplate getRestTemplate() {
|
return restTemplate;
|
}
|
|
public void setRestTemplate(RestTemplate restTemplate) {
|
this.restTemplate = restTemplate;
|
}
|
}
|