Skip to content

Commit

Permalink
feat(connector): [Adyen] Use connector_request_reference_id as refere…
Browse files Browse the repository at this point in the history
…nce to Payments (#3547)
  • Loading branch information
swangi-kumari authored Feb 5, 2024
1 parent a0fcef3 commit c2eecce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/router/src/connector/adyen/transformers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2541,7 +2541,7 @@ impl<'a>
amount,
merchant_account: auth_type.merchant_account,
payment_method,
reference: item.router_data.payment_id.to_string(),
reference: item.router_data.connector_request_reference_id.to_string(),
return_url,
browser_info,
shopper_interaction,
Expand Down Expand Up @@ -2588,7 +2588,7 @@ impl<'a>
amount,
merchant_account: auth_type.merchant_account,
payment_method,
reference: item.router_data.payment_id.to_string(),
reference: item.router_data.connector_request_reference_id.to_string(),
return_url,
browser_info: None,
shopper_interaction,
Expand Down Expand Up @@ -2635,7 +2635,7 @@ impl<'a>
amount,
merchant_account: auth_type.merchant_account,
payment_method,
reference: item.router_data.payment_id.to_string(),
reference: item.router_data.connector_request_reference_id.to_string(),
return_url,
browser_info: None,
shopper_interaction,
Expand Down Expand Up @@ -2894,7 +2894,7 @@ impl<'a>
amount,
merchant_account: auth_type.merchant_account,
payment_method,
reference: item.router_data.payment_id.to_string(),
reference: item.router_data.connector_request_reference_id.to_string(),
return_url,
shopper_interaction,
recurring_processing_model: None,
Expand Down

0 comments on commit c2eecce

Please sign in to comment.