|
@@ -204,7 +204,7 @@ public class TaCompanyServiceImpl extends ServiceImpl<TaCompanyMapper, TaCompany
|
204
|
204
|
}
|
205
|
205
|
|
206
|
206
|
@Override
|
207
|
|
- public String autoAuthCompanySeal(Integer companyId, Integer orgId) throws Exception {
|
|
207
|
+ public String autoAuthCompanySeal(Integer companyId, Integer orgId, String miniAppId) throws Exception {
|
208
|
208
|
TaCompany taCompany = taCompanyMapper.selectById(companyId);
|
209
|
209
|
String timeStamp = HttpsUtil.getTimeStamp();
|
210
|
210
|
String transactionId = "TRAN" + timeStamp;
|
|
@@ -219,7 +219,7 @@ public class TaCompanyServiceImpl extends ServiceImpl<TaCompanyMapper, TaCompany
|
219
|
219
|
|
220
|
220
|
Integer contractId = taContract.getContractId();
|
221
|
221
|
String customerId = taCompany.getFadadaCode();
|
222
|
|
- String res = taCompanySealUtil.autoAuthCompanySeal(transactionId, CommConstant.AUTH_TYPE, String.valueOf(contractId), customerId, String.valueOf(companyId));
|
|
222
|
+ String res = taCompanySealUtil.autoAuthCompanySeal(transactionId, CommConstant.AUTH_TYPE, String.valueOf(contractId), customerId, String.valueOf(companyId), miniAppId);
|
223
|
223
|
return res;
|
224
|
224
|
}
|
225
|
225
|
|