Skip to content

Commit

Permalink
fix(mandate): allow card details to be provided in case of network tr…
Browse files Browse the repository at this point in the history
…ansaction id (#1138)
  • Loading branch information
NishantJoshi00 authored May 13, 2023
1 parent 7eed8e7 commit cc121d0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
5 changes: 4 additions & 1 deletion crates/router/src/connector/authorizedotnet/transformers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@ fn get_pm_and_subsequent_auth_detail(
expiration_date: ccard.get_expiry_date_as_yyyymm("-"),
card_code: Some(ccard.card_cvc.clone()),
}),
None,
Some(ProcessingOptions {
is_subsequent_auth: true,
}),
None,
))
}
Expand Down Expand Up @@ -151,6 +153,7 @@ struct TransactionRequest {
currency_code: String,
payment: PaymentDetails,
processing_options: Option<ProcessingOptions>,
#[serde(skip_serializing_if = "Option::is_none")]
subsequent_auth_information: Option<SubsequentAuthInformation>,
authorization_indicator_type: Option<AuthorizationIndicator>,
}
Expand Down
14 changes: 11 additions & 3 deletions crates/router/src/core/payments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -765,10 +765,18 @@ where
{
let connector = payment_data.payment_attempt.connector.to_owned();

let is_mandate = payment_data
.mandate_id
.as_ref()
.and_then(|inner| inner.mandate_reference_id.as_ref())
.map(|mandate_reference| match mandate_reference {
api_models::payments::MandateReferenceId::ConnectorMandateId(_) => true,
api_models::payments::MandateReferenceId::NetworkMandateId(_) => false,
})
.unwrap_or(false);

let payment_data_and_tokenization_action = match connector {
Some(_) if payment_data.mandate_id.is_some() => {
(payment_data, TokenizationAction::SkipConnectorTokenization)
}
Some(_) if is_mandate => (payment_data, TokenizationAction::SkipConnectorTokenization),
Some(connector) if is_operation_confirm(&operation) => {
let payment_method = &payment_data
.payment_attempt
Expand Down

0 comments on commit cc121d0

Please sign in to comment.