Browse Source

#32695 remove accountType and receiver Document Type

GuavaPay
Dinesh 2 weeks ago
parent
commit
30fba90469
  1. 6
      TPServices/GuavaPayRemit/Services/GuavaPayAPI.cs

6
TPServices/GuavaPayRemit/Services/GuavaPayAPI.cs

@ -135,7 +135,7 @@ namespace TPApiServices.GuavaPayRemit.Services
request.RequestFormat = DataFormat.Json;
var txnResponseData = client.Execute<SendTransactionResponse>(request);
var sendTxnResponse = txnResponseData.Data;
// _log.Info($"GUAVAPAYAPI|SENDTRANSACTION|REQUEST URL: {client.BaseUrl}{request.Resource}");
_log.Info($"GUAVAPAYAPI|SENDTRANSACTION|REQUEST URL: {client.BaseUrl}{request.Resource}");
_log.Info($"GUAVAPAYAPI|SENDTRANSACTION|RESPONSE : {txnResponseData.Content}");
if (sendTxnResponse != null)
@ -211,7 +211,7 @@ namespace TPApiServices.GuavaPayRemit.Services
Phone = model.Receiver.RMobile,
documentInfo = new DocumentInfo
{
DocumentType = model.Receiver.RIdType,
//DocumentType = model.Receiver.RIdType,
DocumentNumber = model.Receiver.RIdNo
},
accountInfo = new AccountInfo
@ -220,7 +220,7 @@ namespace TPApiServices.GuavaPayRemit.Services
BankName = model.Agent.PBankName, //"MeezanBank"
BankBranchCode = model.Agent.PAgentName,
BankCode = model.Agent.PBranchId,
AccountType = model.Agent.PBankType
//AccountType = model.Agent.PBankType
}
},
Country = model.Receiver.RNativeCountry,

Loading…
Cancel
Save