|
|
@ -152,6 +152,7 @@ public class CodeServiceImpl implements CodeService { |
|
|
|
//将上传信息存入表中
|
|
|
|
CodeCustomerDTO codeCustomerDTO = ConvertUtils.sourceToTarget(formDTO, CodeCustomerDTO.class); |
|
|
|
codeCustomerDTO.setCustomerName(paCustomerDTO.getCustomerName()); |
|
|
|
codeCustomerDTO.setSource(paCustomerDTO.getSource()); |
|
|
|
codeCustomerDTO.setExtJson(extJson); |
|
|
|
codeCustomerDTO.setAppId(authInfo.getAuthorizerAppid()); |
|
|
|
codeCustomerDTO.setStatus(CodeConstant.UNAUDITED); |
|
|
@ -162,7 +163,7 @@ public class CodeServiceImpl implements CodeService { |
|
|
|
|
|
|
|
@Override |
|
|
|
public PageData uploadList(UploadListFormDTO formDTO) { |
|
|
|
List<CodeCustomerDTO> auditingList = codeCustomerService.getAuditingCodeList(); |
|
|
|
List<CodeCustomerDTO> auditingList = codeCustomerService.getAuditingCodeList(formDTO.getSource()); |
|
|
|
if (null != auditingList && auditingList.size() > NumConstant.ZERO) { |
|
|
|
auditingList.forEach(code -> { |
|
|
|
//获取小程序调用令牌
|
|
|
|