|
|
|
@ -11,6 +11,7 @@ import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
|
import com.glxp.api.constant.BusinessType;
|
|
|
|
|
import com.glxp.api.constant.ConstantStatus;
|
|
|
|
|
import com.glxp.api.controller.BaseController;
|
|
|
|
|
import com.glxp.api.entity.auth.AuthAdmin;
|
|
|
|
|
import com.glxp.api.entity.basic.UdiEntity;
|
|
|
|
|
import com.glxp.api.entity.purchase.SupCertEntity;
|
|
|
|
@ -51,7 +52,7 @@ import java.util.List;
|
|
|
|
|
import java.util.ListIterator;
|
|
|
|
|
|
|
|
|
|
@RestController
|
|
|
|
|
public class SupManufacturerController {
|
|
|
|
|
public class SupManufacturerController extends BaseController {
|
|
|
|
|
@Resource
|
|
|
|
|
private SupManufacturerService supManufacturerService;
|
|
|
|
|
@Resource
|
|
|
|
@ -87,7 +88,7 @@ public class SupManufacturerController {
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@GetMapping("/sup/manufacturer/getCompanyBySup")
|
|
|
|
|
public BaseResponse getCompanyBySup(FilterSupManufacturerRequest filterSupManufacturerRequest) {
|
|
|
|
|
filterSupManufacturerRequest.setCustomerId(getCustomerId());
|
|
|
|
|
filterSupManufacturerRequest.setCustomerId(getClientCustomerId());
|
|
|
|
|
List<SupManufacturerEntity> companyEntities = supManufacturerService.getCompany(filterSupManufacturerRequest);
|
|
|
|
|
PageInfo<SupManufacturerEntity> pageInfo = new PageInfo<>(companyEntities);
|
|
|
|
|
PageSimpleResponse<SupManufacturerEntity> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
@ -102,18 +103,18 @@ public class SupManufacturerController {
|
|
|
|
|
@Log(title = "资质证书", businessType = BusinessType.INSERT)
|
|
|
|
|
public BaseResponse directToCptAddCompany(@RequestBody SupManufacturerEntity supManufacturerEntity) {
|
|
|
|
|
|
|
|
|
|
String customerId = getCustomerId();
|
|
|
|
|
String customerId = getClientCustomerId();
|
|
|
|
|
supManufacturerEntity.setCustomerId(customerId);
|
|
|
|
|
//判断用户名和社会信用代码不能重复
|
|
|
|
|
FilterSupManufacturerRequest filterSupManufacturerRequest = new FilterSupManufacturerRequest();
|
|
|
|
|
filterSupManufacturerRequest.setCompanyName(supManufacturerEntity.getCompanyName());
|
|
|
|
|
filterSupManufacturerRequest.setCustomerId(getCustomerId());
|
|
|
|
|
filterSupManufacturerRequest.setCustomerId(getClientCustomerId());
|
|
|
|
|
List<SupManufacturerEntity> companyEntities = supManufacturerService.getCompanyByNameAndCode(filterSupManufacturerRequest);
|
|
|
|
|
if (companyEntities.size() > 0) {
|
|
|
|
|
return ResultVOUtils.error(999, "企业名称不能重复!");
|
|
|
|
|
}
|
|
|
|
|
filterSupManufacturerRequest = new FilterSupManufacturerRequest();
|
|
|
|
|
filterSupManufacturerRequest.setCustomerId(getCustomerId());
|
|
|
|
|
filterSupManufacturerRequest.setCustomerId(getClientCustomerId());
|
|
|
|
|
filterSupManufacturerRequest.setCreditCode(supManufacturerEntity.getCreditCode());
|
|
|
|
|
companyEntities = supManufacturerService.getCompanyByNameAndCode(filterSupManufacturerRequest);
|
|
|
|
|
if (companyEntities.size() > 0) {
|
|
|
|
@ -209,13 +210,13 @@ public class SupManufacturerController {
|
|
|
|
|
//判断用户名和社会信用代码不能重复
|
|
|
|
|
FilterSupManufacturerRequest filterSupManufacturerRequest = new FilterSupManufacturerRequest();
|
|
|
|
|
filterSupManufacturerRequest.setCompanyName(supManufacturerEntity.getCompanyName());
|
|
|
|
|
filterSupManufacturerRequest.setCustomerId(getCustomerId());
|
|
|
|
|
filterSupManufacturerRequest.setCustomerId(getClientCustomerId());
|
|
|
|
|
List<SupManufacturerEntity> companyEntities = supManufacturerService.getCompanyByNameAndCode(filterSupManufacturerRequest);
|
|
|
|
|
if (companyEntities.size() > 0) {
|
|
|
|
|
return ResultVOUtils.error(999, "企业名称不能重复!");
|
|
|
|
|
}
|
|
|
|
|
filterSupManufacturerRequest = new FilterSupManufacturerRequest();
|
|
|
|
|
filterSupManufacturerRequest.setCustomerId(getCustomerId());
|
|
|
|
|
filterSupManufacturerRequest.setCustomerId(getClientCustomerId());
|
|
|
|
|
filterSupManufacturerRequest.setCreditCode(supManufacturerEntity.getCreditCode());
|
|
|
|
|
companyEntities = supManufacturerService.getCompanyByNameAndCode(filterSupManufacturerRequest);
|
|
|
|
|
if (companyEntities.size() > 0) {
|
|
|
|
@ -425,25 +426,4 @@ public class SupManufacturerController {
|
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getCustomerId() {
|
|
|
|
|
ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
|
|
|
|
|
if (attributes == null) {
|
|
|
|
|
throw new JsonException(ResultEnum.NOT_NETWORK);
|
|
|
|
|
}
|
|
|
|
|
HttpServletRequest request = attributes.getRequest();
|
|
|
|
|
String companyId = request.getHeader("companyId");
|
|
|
|
|
return companyId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getCompanyId() {
|
|
|
|
|
ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
|
|
|
|
|
if (attributes == null) {
|
|
|
|
|
throw new JsonException(ResultEnum.NOT_NETWORK);
|
|
|
|
|
}
|
|
|
|
|
HttpServletRequest request = attributes.getRequest();
|
|
|
|
|
String companyId = request.getHeader("companyId");
|
|
|
|
|
return companyId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|