cbs8 插件
This commit is contained in:
parent
dd47f23b8b
commit
642986b94a
|
@ -97,7 +97,7 @@ public class PayApplyPluginInitializer extends PluginBaseEntity {
|
|||
@Override
|
||||
public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
|
||||
//支付申请
|
||||
//cbsPluginService.applyPay(requestJson);
|
||||
// cbsPluginService.applyPay(requestJson);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -66,9 +66,9 @@ public class CbsPluginServiceImpl implements ICbsPluginService {
|
|||
public void applyPay(JSONObject requestJson) throws Exception{
|
||||
//查询待支付的列表
|
||||
PaymentEntity paymentEntity = new PaymentEntity();
|
||||
paymentEntity.setDataSourceCode("");
|
||||
//List<PaymentEntity> paymentList = paymentService.queryUnpaid(paymentEntity);
|
||||
List<PaymentEntity> paymentList = new ArrayList<>();
|
||||
paymentEntity.setDataSourceCode(oa_data_source_code);
|
||||
List<PaymentEntity> paymentList = paymentService.queryUnpaid(paymentEntity);
|
||||
/* List<PaymentEntity> paymentList = new ArrayList<>();
|
||||
paymentEntity.setReferenceNum("CL202406140001");
|
||||
paymentEntity.setPayAccount("655905707410000");
|
||||
paymentEntity.setPayBankName("");
|
||||
|
@ -82,7 +82,7 @@ public class CbsPluginServiceImpl implements ICbsPluginService {
|
|||
paymentEntity.setBusType("202");
|
||||
paymentEntity.setCurrency("10");
|
||||
paymentEntity.setPurpose("测试用途");
|
||||
paymentList.add(paymentEntity);
|
||||
paymentList.add(paymentEntity);*/
|
||||
if (CollectionUtils.isNotEmpty(paymentList)){
|
||||
for (PaymentEntity pay : paymentList) {
|
||||
//调用支付申请接口
|
||||
|
|
Loading…
Reference in New Issue