This commit is contained in:
xd 2024-05-29 10:14:05 +08:00
parent a30fa7a018
commit 7affa3a5e5
10 changed files with 174 additions and 34 deletions

View File

@ -1,5 +1,5 @@
#for tests only ! #for tests only !
#Mon May 27 16:27:32 CST 2024 #Wed May 29 10:07:47 CST 2024
jco.destination.pool_capacity=10 jco.destination.pool_capacity=10
jco.client.lang=ZH jco.client.lang=ZH
jco.client.ashost=172.19.0.120 jco.client.ashost=172.19.0.120

View File

@ -15,10 +15,7 @@ import com.ruoyi.common.utils.DateUtils;
import com.ruoyi.common.utils.StringUtils; import com.ruoyi.common.utils.StringUtils;
import com.ruoyi.common.utils.uuid.UUID; import com.ruoyi.common.utils.uuid.UUID;
import com.ruoyi.customer.domain.RfcResult; import com.ruoyi.customer.domain.RfcResult;
import com.ruoyi.customer.domain.qcc.ECIIndustryVerify; import com.ruoyi.customer.domain.qcc.*;
import com.ruoyi.customer.domain.qcc.FuzzySearch;
import com.ruoyi.customer.domain.qcc.QccECIIndustryVerifyJsonResult;
import com.ruoyi.customer.domain.qcc.QccFuzzySearchJsonResult;
import com.ruoyi.quot.domain.Quot; import com.ruoyi.quot.domain.Quot;
import com.ruoyi.system.domain.SysNotice; import com.ruoyi.system.domain.SysNotice;
import com.ruoyi.system.service.ISysConfigService; import com.ruoyi.system.service.ISysConfigService;
@ -73,11 +70,15 @@ public class CustomerController extends BaseController
private String Qcc_SecretKey; private String Qcc_SecretKey;
// 接口请求地址 // 接口请求地址
@Value("${qichacha.serviceName}") @Value("${qichacha.serviceName}")
private String Qcc_serviceName; private String Qcc_serviceName; // 企查查 客户数据接口
// 接口请求地址 // 接口请求地址
@Value("${qichacha.serviceNameGetInfo}") @Value("${qichacha.serviceNameGetInfo}")
private String Qcc_serviceName_GetInfo; private String Qcc_serviceName_GetInfo; // 企查查 客户行业代码数据接口
// 接口请求地址
@Value("${qichacha.serviceNameVerifyInfo}")
private String Qcc_serviceName_VerifyInfo; // 企查查 客户注册资本RegistCapi人员规模PersonScope参保人数InsuredCount
@Autowired @Autowired
private ICustomerService customerService; private ICustomerService customerService;
@ -222,27 +223,63 @@ public class CustomerController extends BaseController
public AjaxResult commitSAPCustomer(@RequestBody Customer customer) public AjaxResult commitSAPCustomer(@RequestBody Customer customer)
{ {
if("1".equals(customer.getCusApprovalStatus())){// 数据组 提交业务员创建的客户数据提交SAP if(StringUtils.isNotEmpty(customer.getCusId())){// 数据组 提交业务员创建的客户数据提交SAP
customer.setUpdateBy(getUsername()); customer.setUpdateBy(getUsername());
customer.setCusApprovalStatus("2");//客户提交 状态设置为 已审核 customer.setCusApprovalStatus("2");//客户提交 状态设置为 已审核
}else if(StringUtils.isEmpty(customer.getCusApprovalStatus())){// 数据组创建的客户数据提交SAP }else{// 数据组创建的客户数据提交SAP
customer.setCusId(UUID.fastUUID().toString()); customer.setCusId(UUID.fastUUID().toString());
customer.setCusCode(IdUtils.createNo("KH_",2)); customer.setCusCode(IdUtils.createNo("KH_",2));
customer.setCreateBy(getUsername()); customer.setCreateBy(getUsername());
customer.setCusApprovalStatus("2");//客户提交 状态设置为 已审核 customer.setCusApprovalStatus("2");//客户提交 状态设置为 已审核
customerService.insertCustomer(customer);
} }
// 获取企查查 客户注册资本RegistCapi人员规模PersonScope参保人数InsuredCount
QccVerifyJsonResult verifyInfo = getQccVerifyInfo(customer.getCusVatNo());
if("200".equals(verifyInfo)){
if("1".equals(verifyInfo.getResult().getVerifyResult())){//存在数据
customer.setCusRegistCapiQcc(verifyInfo.getResult().getData().getRegistCapi());
customer.setCusPersonScopeQcc(verifyInfo.getResult().getData().getPersonScope());
customer.setCusInsuredCountQcc(verifyInfo.getResult().getData().getInsuredCount());
}
}
RfcResult result = SapRfcUtils.sendSAP(customer); RfcResult result = SapRfcUtils.sendSAP(customer);
String type = result.getType(); String type = result.getType();
if("S".equals(type)){ if("S".equals(type)){
customer.setCusSapCode(result.getPartner()); customer.setCusSapCode(result.getPartner());
if(StringUtils.isNotEmpty(customer.getCusId())) {// 数据组 提交业务员创建的客户数据提交SAP
customerService.updateCustomer(customer); customerService.updateCustomer(customer);
}else{
customerService.insertCustomer(customer);
}
}else{ }else{
return error(result.getMessage()); return error(result.getMessage());
} }
return success(result.getMessage()); return success(result.getMessage());
} }
// 获取企查查 客户注册资本RegistCapi人员规模PersonScope参保人数InsuredCount
public QccVerifyJsonResult getQccVerifyInfo(String cusVatNo)
{
QccVerifyJsonResult result = new QccVerifyJsonResult();
String reqInterNme = Qcc_serviceName_VerifyInfo;
try {
if(!StringUtils.isEmpty(cusVatNo)){
HttpHead reqHeader = new HttpHead();
String[] autherHeader = QiChaChaUtil.RandomAuthentHeader(Qcc_Key, Qcc_SecretKey);
reqHeader.setHeader("Token", autherHeader[0]);
reqHeader.setHeader("Timespan", autherHeader[1]);
String reqUri = reqInterNme.concat("?key=").concat(Qcc_Key).concat("&").concat("searchKey=").concat(cusVatNo);
String tokenJson = HttpHelper.httpGet(reqUri, reqHeader.getAllHeaders());
System.out.println(String.format("==========================>this is response:{%s}", tokenJson));
result = JSON.parseObject(tokenJson, QccVerifyJsonResult.class);
}
} catch (Exception e1) {
e1.printStackTrace();
}
return result;
}
/** /**
* 发送信息-数据组审核 * 发送信息-数据组审核
* @param customer * @param customer

View File

@ -287,7 +287,7 @@ public class excelUtil {
wsheet.addCell(label); wsheet.addCell(label);
InputStream fileInputStream = new ClassPathResource("/jnlogo.png").getInputStream(); InputStream fileInputStream = new ClassPathResource("/jnlogo.png").getInputStream();
File file = new File("logon/"+IdUtils.createNo("jnlogo",3)+".png"); // 指定输出文件路径 File file = new File("logon/"+IdUtils.createNo("jnlogo_",3)+".png"); // 指定输出文件路径
//转换 //转换
FileUtils.copyInputStreamToFile(fileInputStream, file); FileUtils.copyInputStreamToFile(fileInputStream, file);
@ -296,7 +296,7 @@ public class excelUtil {
wsheet.addImage(image); wsheet.addImage(image);
InputStream fileInputStream2 = new ClassPathResource("/wc.png").getInputStream(); InputStream fileInputStream2 = new ClassPathResource("/wc.png").getInputStream();
File file2 = new File("logon/"+IdUtils.createNo("wc",3)+".png"); // 指定输出文件路径 File file2 = new File("logon/"+IdUtils.createNo("wc_",3)+".png"); // 指定输出文件路径
//转换 //转换
FileUtils.copyInputStreamToFile(fileInputStream2, file2); FileUtils.copyInputStreamToFile(fileInputStream2, file2);
@ -595,7 +595,7 @@ public class excelUtil {
wsheet.addCell(label); wsheet.addCell(label);
InputStream fileInputStream = new ClassPathResource("/jnlogo.png").getInputStream(); InputStream fileInputStream = new ClassPathResource("/jnlogo.png").getInputStream();
File file = new File("logon/"+IdUtils.createNo("jnlogo",3)+".png"); // 指定输出文件路径 File file = new File("logon/"+IdUtils.createNo("jnlogo_",3)+".png"); // 指定输出文件路径
//转换 //转换
FileUtils.copyInputStreamToFile(fileInputStream, file); FileUtils.copyInputStreamToFile(fileInputStream, file);
@ -604,7 +604,7 @@ public class excelUtil {
wsheet.addImage(image); wsheet.addImage(image);
InputStream fileInputStream2 = new ClassPathResource("/wc.png").getInputStream(); InputStream fileInputStream2 = new ClassPathResource("/wc.png").getInputStream();
File file2 = new File("logon/"+IdUtils.createNo("wc",3)+".png"); // 指定输出文件路径 File file2 = new File("logon/"+IdUtils.createNo("wc_",3)+".png"); // 指定输出文件路径
//转换 //转换
FileUtils.copyInputStreamToFile(fileInputStream2, file2); FileUtils.copyInputStreamToFile(fileInputStream2, file2);

View File

@ -14,6 +14,7 @@ qichacha.key: 824936f8e78c4f4788978da38b26d488
qichacha.secretKey: 8B9EB102FD17E0CF2EDEC0FB507DEC1E qichacha.secretKey: 8B9EB102FD17E0CF2EDEC0FB507DEC1E
qichacha.serviceName: https://api.qichacha.com/FuzzySearch/GetList qichacha.serviceName: https://api.qichacha.com/FuzzySearch/GetList
qichacha.serviceNameGetInfo: https://api.qichacha.com/ECIIndustryVerify/GetInfo qichacha.serviceNameGetInfo: https://api.qichacha.com/ECIIndustryVerify/GetInfo
qichacha.serviceNameVerifyInfo: https://api.qichacha.com/EnterpriseInfo/Verify
# SAP-RFC函数 # SAP-RFC函数
sapRfc.ashost: 172.19.0.125 #服务器 sapRfc.ashost: 172.19.0.125 #服务器

View File

@ -54,6 +54,13 @@ public class Customer extends BaseEntity
/** 企查查行业代码 */ /** 企查查行业代码 */
private String cusIndustryCodeQcc; private String cusIndustryCodeQcc;
/** 企查查注册资本 */
private String cusRegistCapiQcc;
/** 企查查人员规模 */
private String cusPersonScopeQcc;
/** 企查查参保人数 */
private String cusInsuredCountQcc;
/** 客户组类别 */ /** 客户组类别 */
@Excel(name = "客户组类别",dictType = "cus_group") @Excel(name = "客户组类别",dictType = "cus_group")
private String cusGroup; private String cusGroup;
@ -198,6 +205,15 @@ public class Customer extends BaseEntity
public String getCusIndustryCodeQcc() { return cusIndustryCodeQcc; } public String getCusIndustryCodeQcc() { return cusIndustryCodeQcc; }
public void setCusIndustryCodeQcc(String cusIndustryCodeQcc) { this.cusIndustryCodeQcc = cusIndustryCodeQcc; } public void setCusIndustryCodeQcc(String cusIndustryCodeQcc) { this.cusIndustryCodeQcc = cusIndustryCodeQcc; }
public String getCusRegistCapiQcc() { return cusRegistCapiQcc; }
public void setCusRegistCapiQcc(String cusRegistCapiQcc) { this.cusRegistCapiQcc = cusRegistCapiQcc; }
public String getCusPersonScopeQcc() { return cusPersonScopeQcc; }
public void setCusPersonScopeQcc(String cusPersonScopeQcc) { this.cusPersonScopeQcc = cusPersonScopeQcc; }
public String getCusInsuredCountQcc() { return cusInsuredCountQcc; }
public void setCusInsuredCountQcc(String cusInsuredCountQcc) { this.cusInsuredCountQcc = cusInsuredCountQcc; }
public void setCusGroup(String cusGroup) public void setCusGroup(String cusGroup)
{ {
this.cusGroup = cusGroup; this.cusGroup = cusGroup;

View File

@ -0,0 +1,22 @@
package com.ruoyi.customer.domain.qcc;
public class QccVerifyJsonResult {
private String Status;
private Verify Result;
public String getStatus() {
return Status;
}
public void setStatus(String status) {
Status = status;
}
public Verify getResult() {
return Result;
}
public void setResult(Verify result) {
Result = result;
}
}

View File

@ -0,0 +1,18 @@
package com.ruoyi.customer.domain.qcc;
public class Verify {
private String VerifyResult;
private VerifyResultData Data;
public String getVerifyResult() {
return VerifyResult;
}
public void setVerifyResult(String verifyResult) {
VerifyResult = verifyResult;
}
public VerifyResultData getData() { return Data; }
public void setData(VerifyResultData data) { Data = data; }
}

View File

@ -0,0 +1,31 @@
package com.ruoyi.customer.domain.qcc;
public class VerifyResultData {
private String RegistCapi;
private String PersonScope;
private String InsuredCount;
public String getRegistCapi() {
return RegistCapi;
}
public void setRegistCapi(String registCapi) {
RegistCapi = registCapi;
}
public String getPersonScope() {
return PersonScope;
}
public void setPersonScope(String personScope) {
PersonScope = personScope;
}
public String getInsuredCount() {
return InsuredCount;
}
public void setInsuredCount(String insuredCount) {
InsuredCount = insuredCount;
}
}

View File

@ -25,7 +25,7 @@
@keyup.enter.native="handleQuery" @keyup.enter.native="handleQuery"
/> />
</el-form-item> </el-form-item>
<el-form-item label="状态" prop="cusState"> <!--<el-form-item label="状态" prop="cusState">
<el-select v-model="queryParams.cusState" placeholder="请选择客户禁用状态" clearable> <el-select v-model="queryParams.cusState" placeholder="请选择客户禁用状态" clearable>
<el-option <el-option
v-for="dict in dict.type.common_state" v-for="dict in dict.type.common_state"
@ -34,7 +34,7 @@
:value="dict.value" :value="dict.value"
/> />
</el-select> </el-select>
</el-form-item> </el-form-item>-->
<el-form-item label="审批状态" prop="cusApprovalStatus"> <el-form-item label="审批状态" prop="cusApprovalStatus">
<el-select v-model="queryParams.cusApprovalStatus" placeholder="请选择客户审批状态" clearable> <el-select v-model="queryParams.cusApprovalStatus" placeholder="请选择客户审批状态" clearable>
<el-option <el-option
@ -118,14 +118,14 @@
</el-tooltip> </el-tooltip>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column fixed label="业务员" align="center" prop="cusSalesman"/> <el-table-column fixed label="客户编码" align="center" prop="cusCode" width="230px"></el-table-column>
<el-table-column fixed label="客户名称" align="center" prop="cusName" width="300px"> <el-table-column fixed label="客户名称" align="center" prop="cusName" width="300px">
<template slot-scope="scope"> <template slot-scope="scope">
<el-link :underline="false" type="primary" @click="handleUpdate(scope.row)">{{scope.row.cusName}}</el-link> <el-link :underline="false" type="primary" @click="handleUpdate(scope.row)">{{scope.row.cusName}}</el-link>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="客户编码" align="center" prop="cusCode" width="300px"></el-table-column> <el-table-column label="业务员" align="center" prop="cusSalesman"/>
<el-table-column label="SAP客户编码" align="center" prop="cusSapCode" width="150px"/> <el-table-column label="SAP客户编码" align="center" prop="cusSapCode" width="120px"/>
<el-table-column label="客户类型" align="center" prop="cusType"> <el-table-column label="客户类型" align="center" prop="cusType">
<template slot-scope="scope"> <template slot-scope="scope">
<dict-tag :options="dict.type.cus_type" :value="scope.row.cusType"/> <dict-tag :options="dict.type.cus_type" :value="scope.row.cusType"/>
@ -481,7 +481,7 @@
<el-row :gutter="8"> <el-row :gutter="8">
<el-col :span="8"> <el-col :span="8">
<el-form-item label="账户分配组" prop="cusAccountAllocationGroup"> <el-form-item label="账户分配组" prop="cusAccountAllocationGroup">
<el-select v-model="form.cusAccountAllocationGroup" placeholder="请选择统驭科目" style="width: 100%;" :disabled="isDisSjz"> <el-select v-model="form.cusAccountAllocationGroup" placeholder="请选择账户分配组" style="width: 100%;" :disabled="isDisSjz">
<el-option <el-option
v-for="item in accountAllocationGroupDicts" v-for="item in accountAllocationGroupDicts"
:key="item.value" :key="item.value"
@ -660,6 +660,14 @@ const validateCusReconciliationAccount = (rule, value, callback) => {
callback(); callback();
} }
}; };
// -
const cusAccountAllocationGroup = (rule, value, callback) => {
if (!value) {
callback(new Error("账户分配组不能为空"));
} else {
callback();
}
};
export default { export default {
name: "Customer", name: "Customer",
@ -759,7 +767,7 @@ export default {
{ required: true, trigger: "change", validator: validateCusReconciliationAccount } { required: true, trigger: "change", validator: validateCusReconciliationAccount }
], ],
cusAccountAllocationGroup: [ cusAccountAllocationGroup: [
{ required: true, trigger: "change", validator: validateCusReconciliationAccount } { required: true, trigger: "change", validator: cusAccountAllocationGroup }
] ]
}, },
// \ - // \ -
@ -776,7 +784,7 @@ export default {
// - // -
isDisSjz: false, isDisSjz: false,
// //
isDisCustomer: true, isDisCustomer: true,
/*****************************企查查查询模块*************************************/ /*****************************企查查查询模块*************************************/
@ -908,7 +916,7 @@ export default {
this.isDisSalesman = false; this.isDisSalesman = false;
// - // -
this.isDisSjz = false; this.isDisSjz = false;
// //
this.isDisCustomer = true; this.isDisCustomer = true;
}, },
/** 搜索按钮操作 */ /** 搜索按钮操作 */
@ -940,7 +948,7 @@ export default {
}, },
/** 新增按钮操作 */ /** 新增按钮操作 */
async handleAdd() { async handleAdd() {
this.reset(); await this.reset();
this.open = true; this.open = true;
this.title = "添加客户信息"; this.title = "添加客户信息";
@ -952,7 +960,7 @@ export default {
}, },
/** 修改按钮操作 */ /** 修改按钮操作 */
async handleUpdate(row) { async handleUpdate(row) {
this.reset(); await this.reset();
const cusId = row.cusId || this.ids const cusId = row.cusId || this.ids
getCustomer(cusId).then(response => { getCustomer(cusId).then(response => {
this.setInfo(response); this.setInfo(response);
@ -981,8 +989,8 @@ export default {
// //
this.bankButtonShow = this.form.cusApprovalStatus == '0'?true:(checkRole(['ITZX_SJZ'])&&this.form.cusApprovalStatus == '1') ? true : false; this.bankButtonShow = this.form.cusApprovalStatus == '0'?true:(checkRole(['ITZX_SJZ'])&&this.form.cusApprovalStatus == '1') ? true : false;
// //
this.isDisCustomer = (checkRole(['CUSTOMER_RETURN_UPDATE'])&&this.form.cusApprovalStatus == '1') ? false:(checkRole(['ITZX_SJZ'])&&this.form.cusApprovalStatus != '2')?false:true; this.isDisCustomer = (checkRole(['ITZX_SJZ'])&&this.form.cusApprovalStatus != '2'&&this.form.cusApprovalStatus != '3')?false:true;
this.bankList = response.data.bankList; this.bankList = response.data.bankList;
if(this.bankList.length==0){ if(this.bankList.length==0){
@ -1044,11 +1052,18 @@ export default {
}, },
/** 驳回 */ /** 驳回 */
returnForm() { returnForm() {
if(!this.form.cusReturnRemark){
this.$modal.msgError("请填写驳回备注");
return;
}
this.$modal.confirm('是否确认驳回该客户?').then(function() {}).then(() => {
returnCustomer(this.form).then(response => { returnCustomer(this.form).then(response => {
this.$modal.msgSuccess("驳回成功"); this.$modal.msgSuccess("驳回成功");
this.open = false; this.open = false;
this.getList(); this.getList();
}); });
}).catch(() => {});
}, },
/** 提交SAP按钮 */ /** 提交SAP按钮 */
commitSAPForm() { commitSAPForm() {

View File

@ -119,7 +119,7 @@
</el-col> </el-col>
</el-row> </el-row>
<el-table v-loading="selectedResultLoading" width="100%;" :row-class-name="selectedResultIndex" :data="selectedResultData" height="300px"> <el-table v-loading="selectedResultLoading" width="100%;" :row-class-name="selectedResultIndex" :data="selectedResultData">
<el-table-column fixed="left" label="" align="center" prop="index" width="50"/> <el-table-column fixed="left" label="" align="center" prop="index" width="50"/>
<el-table-column label="版本uid" align="center" prop="uid_0" v-if="false"/> <el-table-column label="版本uid" align="center" prop="uid_0" v-if="false"/>
<el-table-column fixed="left" label="产品型号" align="center" prop="name_0" width="180"/> <el-table-column fixed="left" label="产品型号" align="center" prop="name_0" width="180"/>