fix(core): Add column mandate_data for storing the details of a mandate in PaymentAttempt (#3606)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Amisha Prabhat
2024-02-09 14:05:54 +05:30
committed by GitHub
parent 3cef73b9d8
commit 74f3721ccd
14 changed files with 104 additions and 157 deletions

View File

@ -13,7 +13,6 @@ use time::PrimitiveDateTime;
#[serde(rename_all = "snake_case")] #[serde(rename_all = "snake_case")]
pub struct MandateDetails { pub struct MandateDetails {
pub update_mandate_id: Option<String>, pub update_mandate_id: Option<String>,
pub mandate_type: Option<MandateDataType>,
} }
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)] #[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
@ -23,13 +22,6 @@ pub enum MandateDataType {
MultiUse(Option<MandateAmountData>), MultiUse(Option<MandateAmountData>),
} }
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "snake_case")]
#[serde(untagged)]
pub enum MandateTypeDetails {
MandateType(MandateDataType),
MandateDetails(MandateDetails),
}
#[derive(Clone, Debug, serde::Serialize, serde::Deserialize, PartialEq, Eq)] #[derive(Clone, Debug, serde::Serialize, serde::Deserialize, PartialEq, Eq)]
pub struct MandateAmountData { pub struct MandateAmountData {
pub amount: i64, pub amount: i64,

View File

@ -4,7 +4,11 @@ use serde::{Deserialize, Serialize};
use time::PrimitiveDateTime; use time::PrimitiveDateTime;
use super::PaymentIntent; use super::PaymentIntent;
use crate::{errors, mandates::MandateTypeDetails, ForeignIDRef}; use crate::{
errors,
mandates::{MandateDataType, MandateDetails},
ForeignIDRef,
};
#[async_trait::async_trait] #[async_trait::async_trait]
pub trait PaymentAttemptInterface { pub trait PaymentAttemptInterface {
@ -143,7 +147,7 @@ pub struct PaymentAttempt {
pub straight_through_algorithm: Option<serde_json::Value>, pub straight_through_algorithm: Option<serde_json::Value>,
pub preprocessing_step_id: Option<String>, pub preprocessing_step_id: Option<String>,
// providing a location to store mandate details intermediately for transaction // providing a location to store mandate details intermediately for transaction
pub mandate_details: Option<MandateTypeDetails>, pub mandate_details: Option<MandateDataType>,
pub error_reason: Option<String>, pub error_reason: Option<String>,
pub multiple_capture_count: Option<i16>, pub multiple_capture_count: Option<i16>,
// reference to the payment at connector side // reference to the payment at connector side
@ -155,6 +159,7 @@ pub struct PaymentAttempt {
pub merchant_connector_id: Option<String>, pub merchant_connector_id: Option<String>,
pub unified_code: Option<String>, pub unified_code: Option<String>,
pub unified_message: Option<String>, pub unified_message: Option<String>,
pub mandate_data: Option<MandateDetails>,
} }
impl PaymentAttempt { impl PaymentAttempt {
@ -221,7 +226,7 @@ pub struct PaymentAttemptNew {
pub business_sub_label: Option<String>, pub business_sub_label: Option<String>,
pub straight_through_algorithm: Option<serde_json::Value>, pub straight_through_algorithm: Option<serde_json::Value>,
pub preprocessing_step_id: Option<String>, pub preprocessing_step_id: Option<String>,
pub mandate_details: Option<MandateTypeDetails>, pub mandate_details: Option<MandateDataType>,
pub error_reason: Option<String>, pub error_reason: Option<String>,
pub connector_response_reference_id: Option<String>, pub connector_response_reference_id: Option<String>,
pub multiple_capture_count: Option<i16>, pub multiple_capture_count: Option<i16>,
@ -232,6 +237,7 @@ pub struct PaymentAttemptNew {
pub merchant_connector_id: Option<String>, pub merchant_connector_id: Option<String>,
pub unified_code: Option<String>, pub unified_code: Option<String>,
pub unified_message: Option<String>, pub unified_message: Option<String>,
pub mandate_data: Option<MandateDetails>,
} }
impl PaymentAttemptNew { impl PaymentAttemptNew {

View File

@ -174,9 +174,30 @@ use diesel::{
#[serde(rename_all = "snake_case")] #[serde(rename_all = "snake_case")]
pub struct MandateDetails { pub struct MandateDetails {
pub update_mandate_id: Option<String>, pub update_mandate_id: Option<String>,
pub mandate_type: Option<MandateDataType>, }
impl<DB: Backend> FromSql<Jsonb, DB> for MandateDetails
where
serde_json::Value: FromSql<Jsonb, DB>,
{
fn from_sql(bytes: DB::RawValue<'_>) -> diesel::deserialize::Result<Self> {
let value = <serde_json::Value as FromSql<Jsonb, DB>>::from_sql(bytes)?;
Ok(serde_json::from_value(value)?)
}
} }
impl ToSql<Jsonb, diesel::pg::Pg> for MandateDetails
where
serde_json::Value: ToSql<Jsonb, diesel::pg::Pg>,
{
fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, diesel::pg::Pg>) -> diesel::serialize::Result {
let value = serde_json::to_value(self)?;
// the function `reborrow` only works in case of `Pg` backend. But, in case of other backends
// please refer to the diesel migration blog:
// https://github.com/Diesel-rs/Diesel/blob/master/guide_drafts/migration_guide.md#changed-tosql-implementations
<serde_json::Value as ToSql<Jsonb, diesel::pg::Pg>>::to_sql(&value, &mut out.reborrow())
}
}
#[derive( #[derive(
serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, FromSqlRow, AsExpression, serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, FromSqlRow, AsExpression,
)] )]
@ -211,40 +232,6 @@ where
} }
} }
#[derive(
serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, FromSqlRow, AsExpression,
)]
#[diesel(sql_type = Jsonb)]
#[serde(untagged)]
#[serde(rename_all = "snake_case")]
pub enum MandateTypeDetails {
MandateType(MandateDataType),
MandateDetails(MandateDetails),
}
impl<DB: Backend> FromSql<Jsonb, DB> for MandateTypeDetails
where
serde_json::Value: FromSql<Jsonb, DB>,
{
fn from_sql(bytes: DB::RawValue<'_>) -> diesel::deserialize::Result<Self> {
let value = <serde_json::Value as FromSql<Jsonb, DB>>::from_sql(bytes)?;
Ok(serde_json::from_value(value)?)
}
}
impl ToSql<Jsonb, diesel::pg::Pg> for MandateTypeDetails
where
serde_json::Value: ToSql<Jsonb, diesel::pg::Pg>,
{
fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, diesel::pg::Pg>) -> diesel::serialize::Result {
let value = serde_json::to_value(self)?;
// the function `reborrow` only works in case of `Pg` backend. But, in case of other backends
// please refer to the diesel migration blog:
// https://github.com/Diesel-rs/Diesel/blob/master/guide_drafts/migration_guide.md#changed-tosql-implementations
<serde_json::Value as ToSql<Jsonb, diesel::pg::Pg>>::to_sql(&value, &mut out.reborrow())
}
}
#[derive(Clone, Debug, serde::Serialize, serde::Deserialize, PartialEq, Eq)] #[derive(Clone, Debug, serde::Serialize, serde::Deserialize, PartialEq, Eq)]
pub struct MandateAmountData { pub struct MandateAmountData {
pub amount: i64, pub amount: i64,

View File

@ -51,7 +51,7 @@ pub struct PaymentAttempt {
pub straight_through_algorithm: Option<serde_json::Value>, pub straight_through_algorithm: Option<serde_json::Value>,
pub preprocessing_step_id: Option<String>, pub preprocessing_step_id: Option<String>,
// providing a location to store mandate details intermediately for transaction // providing a location to store mandate details intermediately for transaction
pub mandate_details: Option<storage_enums::MandateTypeDetails>, pub mandate_details: Option<storage_enums::MandateDataType>,
pub error_reason: Option<String>, pub error_reason: Option<String>,
pub multiple_capture_count: Option<i16>, pub multiple_capture_count: Option<i16>,
// reference to the payment at connector side // reference to the payment at connector side
@ -64,6 +64,7 @@ pub struct PaymentAttempt {
pub unified_code: Option<String>, pub unified_code: Option<String>,
pub unified_message: Option<String>, pub unified_message: Option<String>,
pub net_amount: Option<i64>, pub net_amount: Option<i64>,
pub mandate_data: Option<storage_enums::MandateDetails>,
} }
impl PaymentAttempt { impl PaymentAttempt {
@ -126,7 +127,7 @@ pub struct PaymentAttemptNew {
pub business_sub_label: Option<String>, pub business_sub_label: Option<String>,
pub straight_through_algorithm: Option<serde_json::Value>, pub straight_through_algorithm: Option<serde_json::Value>,
pub preprocessing_step_id: Option<String>, pub preprocessing_step_id: Option<String>,
pub mandate_details: Option<storage_enums::MandateTypeDetails>, pub mandate_details: Option<storage_enums::MandateDataType>,
pub error_reason: Option<String>, pub error_reason: Option<String>,
pub connector_response_reference_id: Option<String>, pub connector_response_reference_id: Option<String>,
pub multiple_capture_count: Option<i16>, pub multiple_capture_count: Option<i16>,
@ -138,6 +139,7 @@ pub struct PaymentAttemptNew {
pub unified_code: Option<String>, pub unified_code: Option<String>,
pub unified_message: Option<String>, pub unified_message: Option<String>,
pub net_amount: Option<i64>, pub net_amount: Option<i64>,
pub mandate_data: Option<storage_enums::MandateDetails>,
} }
impl PaymentAttemptNew { impl PaymentAttemptNew {

View File

@ -688,6 +688,7 @@ diesel::table! {
#[max_length = 1024] #[max_length = 1024]
unified_message -> Nullable<Varchar>, unified_message -> Nullable<Varchar>,
net_amount -> Nullable<Int8>, net_amount -> Nullable<Int8>,
mandate_data -> Nullable<Jsonb>,
} }
} }

View File

@ -5,7 +5,11 @@ use common_enums::{
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use time::PrimitiveDateTime; use time::PrimitiveDateTime;
use crate::{enums::MandateTypeDetails, schema::payment_attempt, PaymentAttemptNew}; use crate::{
enums::{MandateDataType, MandateDetails},
schema::payment_attempt,
PaymentAttemptNew,
};
#[derive( #[derive(
Clone, Debug, Default, diesel::Insertable, router_derive::DebugAsDisplay, Serialize, Deserialize, Clone, Debug, Default, diesel::Insertable, router_derive::DebugAsDisplay, Serialize, Deserialize,
@ -50,7 +54,7 @@ pub struct PaymentAttemptBatchNew {
pub business_sub_label: Option<String>, pub business_sub_label: Option<String>,
pub straight_through_algorithm: Option<serde_json::Value>, pub straight_through_algorithm: Option<serde_json::Value>,
pub preprocessing_step_id: Option<String>, pub preprocessing_step_id: Option<String>,
pub mandate_details: Option<MandateTypeDetails>, pub mandate_details: Option<MandateDataType>,
pub error_reason: Option<String>, pub error_reason: Option<String>,
pub connector_response_reference_id: Option<String>, pub connector_response_reference_id: Option<String>,
pub connector_transaction_id: Option<String>, pub connector_transaction_id: Option<String>,
@ -63,6 +67,7 @@ pub struct PaymentAttemptBatchNew {
pub unified_code: Option<String>, pub unified_code: Option<String>,
pub unified_message: Option<String>, pub unified_message: Option<String>,
pub net_amount: Option<i64>, pub net_amount: Option<i64>,
pub mandate_data: Option<MandateDetails>,
} }
#[allow(dead_code)] #[allow(dead_code)]
@ -116,6 +121,7 @@ impl PaymentAttemptBatchNew {
unified_code: self.unified_code, unified_code: self.unified_code,
unified_message: self.unified_message, unified_message: self.unified_message,
net_amount: self.net_amount, net_amount: self.net_amount,
mandate_data: self.mandate_data,
} }
} }
} }

View File

@ -2000,17 +2000,8 @@ pub async fn list_payment_methods(
merchant_name: merchant_account.merchant_name, merchant_name: merchant_account.merchant_name,
payment_type, payment_type,
payment_methods: payment_method_responses, payment_methods: payment_method_responses,
mandate_payment: payment_attempt mandate_payment: payment_attempt.and_then(|inner| inner.mandate_details).map(
.and_then(|inner| inner.mandate_details) |d| match d {
.and_then(|man_type_details| match man_type_details {
data_models::mandates::MandateTypeDetails::MandateType(mandate_type) => {
Some(mandate_type)
}
data_models::mandates::MandateTypeDetails::MandateDetails(mandate_details) => {
mandate_details.mandate_type
}
})
.map(|d| match d {
data_models::mandates::MandateDataType::SingleUse(i) => { data_models::mandates::MandateDataType::SingleUse(i) => {
api::MandateType::SingleUse(api::MandateAmountData { api::MandateType::SingleUse(api::MandateAmountData {
amount: i.amount, amount: i.amount,
@ -2032,7 +2023,8 @@ pub async fn list_payment_methods(
data_models::mandates::MandateDataType::MultiUse(None) => { data_models::mandates::MandateDataType::MultiUse(None) => {
api::MandateType::MultiUse(None) api::MandateType::MultiUse(None)
} }
}), },
),
show_surcharge_breakup_screen: merchant_surcharge_configs show_surcharge_breakup_screen: merchant_surcharge_configs
.show_surcharge_breakup_screen .show_surcharge_breakup_screen
.unwrap_or_default(), .unwrap_or_default(),
@ -2242,28 +2234,20 @@ pub async fn filter_payment_methods(
})?; })?;
let filter7 = payment_attempt let filter7 = payment_attempt
.and_then(|attempt| attempt.mandate_details.as_ref()) .and_then(|attempt| attempt.mandate_details.as_ref())
.map(|mandate_details| { .map(|_mandate_details| {
let (mandate_type_present, update_mandate_id_present) =
match mandate_details {
data_models::mandates::MandateTypeDetails::MandateType(_) => {
(true, false)
}
data_models::mandates::MandateTypeDetails::MandateDetails(
mand_details,
) => (
mand_details.mandate_type.is_some(),
mand_details.update_mandate_id.is_some(),
),
};
if mandate_type_present {
filter_pm_based_on_supported_payments_for_mandate( filter_pm_based_on_supported_payments_for_mandate(
supported_payment_methods_for_mandate, supported_payment_methods_for_mandate,
&payment_method, &payment_method,
&payment_method_object.payment_method_type, &payment_method_object.payment_method_type,
connector_variant, connector_variant,
) )
} else if update_mandate_id_present { })
.unwrap_or(true);
let filter8 = payment_attempt
.and_then(|attempt| attempt.mandate_data.as_ref())
.map(|mandate_detail| {
if mandate_detail.update_mandate_id.is_some() {
filter_pm_based_on_update_mandate_support_for_connector( filter_pm_based_on_update_mandate_support_for_connector(
supported_payment_methods_for_update_mandate, supported_payment_methods_for_update_mandate,
&payment_method, &payment_method,
@ -2284,7 +2268,15 @@ pub async fn filter_payment_methods(
payment_method, payment_method,
); );
if filter && filter2 && filter3 && filter4 && filter5 && filter6 && filter7 { if filter
&& filter2
&& filter3
&& filter4
&& filter5
&& filter6
&& filter7
&& filter8
{
resp.push(response_pm_type); resp.push(response_pm_type);
} }
} }

View File

@ -3201,6 +3201,7 @@ impl AttemptType {
unified_code: None, unified_code: None,
unified_message: None, unified_message: None,
net_amount: old_payment_attempt.amount, net_amount: old_payment_attempt.amount,
mandate_data: old_payment_attempt.mandate_data,
} }
} }

View File

@ -441,28 +441,11 @@ impl<F: Send + Clone, Ctx: PaymentMethodRetrieve>
// The operation merges mandate data from both request and payment_attempt // The operation merges mandate data from both request and payment_attempt
setup_mandate = setup_mandate.map(|mut sm| { setup_mandate = setup_mandate.map(|mut sm| {
sm.mandate_type = payment_attempt sm.mandate_type = payment_attempt.mandate_details.clone().or(sm.mandate_type);
.mandate_details
.clone()
.and_then(|mandate| match mandate {
data_models::mandates::MandateTypeDetails::MandateType(mandate_type) => {
Some(mandate_type)
}
data_models::mandates::MandateTypeDetails::MandateDetails(mandate_details) => {
mandate_details.mandate_type
}
})
.or(sm.mandate_type);
sm.update_mandate_id = payment_attempt sm.update_mandate_id = payment_attempt
.mandate_details .mandate_data
.clone() .clone()
.and_then(|mandate| match mandate { .and_then(|mandate| mandate.update_mandate_id)
data_models::mandates::MandateTypeDetails::MandateType(_) => None,
data_models::mandates::MandateTypeDetails::MandateDetails(update_id) => {
Some(update_id.update_mandate_id)
}
})
.flatten()
.or(sm.update_mandate_id); .or(sm.update_mandate_id);
sm sm
}); });

View File

@ -4,7 +4,7 @@ use api_models::enums::FrmSuggestion;
use async_trait::async_trait; use async_trait::async_trait;
use common_utils::ext_traits::{AsyncExt, Encode, ValueExt}; use common_utils::ext_traits::{AsyncExt, Encode, ValueExt};
use data_models::{ use data_models::{
mandates::{MandateData, MandateDetails, MandateTypeDetails}, mandates::{MandateData, MandateDetails},
payments::payment_attempt::PaymentAttempt, payments::payment_attempt::PaymentAttempt,
}; };
use diesel_models::ephemeral_key; use diesel_models::ephemeral_key;
@ -733,27 +733,17 @@ impl PaymentCreate {
Err(errors::ApiErrorResponse::InvalidRequestData {message:"Only one field out of 'mandate_type' and 'update_mandate_id' was expected, found both".to_string()})? Err(errors::ApiErrorResponse::InvalidRequestData {message:"Only one field out of 'mandate_type' and 'update_mandate_id' was expected, found both".to_string()})?
} }
let mandate_details = if request.mandate_data.is_none() { let mandate_data = if let Some(update_id) = request
None
} else if let Some(update_id) = request
.mandate_data .mandate_data
.as_ref() .as_ref()
.and_then(|inner| inner.update_mandate_id.clone()) .and_then(|inner| inner.update_mandate_id.clone())
{ {
let mandate_data = MandateDetails { let mandate_details = MandateDetails {
update_mandate_id: Some(update_id), update_mandate_id: Some(update_id),
mandate_type: None,
}; };
Some(MandateTypeDetails::MandateDetails(mandate_data)) Some(mandate_details)
} else { } else {
let mandate_data = MandateDetails { None
update_mandate_id: None,
mandate_type: request
.mandate_data
.as_ref()
.and_then(|inner| inner.mandate_type.clone().map(Into::into)),
};
Some(MandateTypeDetails::MandateDetails(mandate_data))
}; };
Ok(( Ok((
@ -782,7 +772,11 @@ impl PaymentCreate {
business_sub_label: request.business_sub_label.clone(), business_sub_label: request.business_sub_label.clone(),
surcharge_amount, surcharge_amount,
tax_amount, tax_amount,
mandate_details, mandate_details: request
.mandate_data
.as_ref()
.and_then(|inner| inner.mandate_type.clone().map(Into::into)),
mandate_data,
..storage::PaymentAttemptNew::default() ..storage::PaymentAttemptNew::default()
}, },
additional_pm_data, additional_pm_data,

View File

@ -147,6 +147,7 @@ impl PaymentAttemptInterface for MockDb {
merchant_connector_id: payment_attempt.merchant_connector_id, merchant_connector_id: payment_attempt.merchant_connector_id,
unified_code: payment_attempt.unified_code, unified_code: payment_attempt.unified_code,
unified_message: payment_attempt.unified_message, unified_message: payment_attempt.unified_message,
mandate_data: payment_attempt.mandate_data,
}; };
payment_attempts.push(payment_attempt.clone()); payment_attempts.push(payment_attempt.clone());
Ok(payment_attempt) Ok(payment_attempt)

View File

@ -2,7 +2,7 @@ use api_models::enums::{AuthenticationType, Connector, PaymentMethod, PaymentMet
use common_utils::{errors::CustomResult, fallback_reverse_lookup_not_found}; use common_utils::{errors::CustomResult, fallback_reverse_lookup_not_found};
use data_models::{ use data_models::{
errors, errors,
mandates::{MandateAmountData, MandateDataType, MandateDetails, MandateTypeDetails}, mandates::{MandateAmountData, MandateDataType, MandateDetails},
payments::{ payments::{
payment_attempt::{ payment_attempt::{
PaymentAttempt, PaymentAttemptInterface, PaymentAttemptNew, PaymentAttemptUpdate, PaymentAttempt, PaymentAttemptInterface, PaymentAttemptNew, PaymentAttemptUpdate,
@ -14,8 +14,7 @@ use data_models::{
use diesel_models::{ use diesel_models::{
enums::{ enums::{
MandateAmountData as DieselMandateAmountData, MandateDataType as DieselMandateType, MandateAmountData as DieselMandateAmountData, MandateDataType as DieselMandateType,
MandateDetails as DieselMandateDetails, MandateTypeDetails as DieselMandateTypeOrDetails, MandateDetails as DieselMandateDetails, MerchantStorageScheme,
MerchantStorageScheme,
}, },
kv, kv,
payment_attempt::{ payment_attempt::{
@ -391,6 +390,7 @@ impl<T: DatabaseStore> PaymentAttemptInterface for KVRouterStore<T> {
merchant_connector_id: payment_attempt.merchant_connector_id.clone(), merchant_connector_id: payment_attempt.merchant_connector_id.clone(),
unified_code: payment_attempt.unified_code.clone(), unified_code: payment_attempt.unified_code.clone(),
unified_message: payment_attempt.unified_message.clone(), unified_message: payment_attempt.unified_message.clone(),
mandate_data: payment_attempt.mandate_data.clone(),
}; };
let field = format!("pa_{}", created_attempt.attempt_id); let field = format!("pa_{}", created_attempt.attempt_id);
@ -1016,42 +1016,11 @@ impl DataModelExt for MandateDetails {
fn to_storage_model(self) -> Self::StorageModel { fn to_storage_model(self) -> Self::StorageModel {
DieselMandateDetails { DieselMandateDetails {
update_mandate_id: self.update_mandate_id, update_mandate_id: self.update_mandate_id,
mandate_type: self
.mandate_type
.map(|mand_type| mand_type.to_storage_model()),
} }
} }
fn from_storage_model(storage_model: Self::StorageModel) -> Self { fn from_storage_model(storage_model: Self::StorageModel) -> Self {
Self { Self {
update_mandate_id: storage_model.update_mandate_id, update_mandate_id: storage_model.update_mandate_id,
mandate_type: storage_model
.mandate_type
.map(MandateDataType::from_storage_model),
}
}
}
impl DataModelExt for MandateTypeDetails {
type StorageModel = DieselMandateTypeOrDetails;
fn to_storage_model(self) -> Self::StorageModel {
match self {
Self::MandateType(mandate_type) => {
DieselMandateTypeOrDetails::MandateType(mandate_type.to_storage_model())
}
Self::MandateDetails(mandate_details) => {
DieselMandateTypeOrDetails::MandateDetails(mandate_details.to_storage_model())
}
}
}
fn from_storage_model(storage_model: Self::StorageModel) -> Self {
match storage_model {
DieselMandateTypeOrDetails::MandateType(data) => {
Self::MandateType(MandateDataType::from_storage_model(data))
}
DieselMandateTypeOrDetails::MandateDetails(data) => {
Self::MandateDetails(MandateDetails::from_storage_model(data))
}
} }
} }
} }
@ -1124,7 +1093,7 @@ impl DataModelExt for PaymentAttempt {
business_sub_label: self.business_sub_label, business_sub_label: self.business_sub_label,
straight_through_algorithm: self.straight_through_algorithm, straight_through_algorithm: self.straight_through_algorithm,
preprocessing_step_id: self.preprocessing_step_id, preprocessing_step_id: self.preprocessing_step_id,
mandate_details: self.mandate_details.map(|md| md.to_storage_model()), mandate_details: self.mandate_details.map(|d| d.to_storage_model()),
error_reason: self.error_reason, error_reason: self.error_reason,
multiple_capture_count: self.multiple_capture_count, multiple_capture_count: self.multiple_capture_count,
connector_response_reference_id: self.connector_response_reference_id, connector_response_reference_id: self.connector_response_reference_id,
@ -1135,6 +1104,7 @@ impl DataModelExt for PaymentAttempt {
merchant_connector_id: self.merchant_connector_id, merchant_connector_id: self.merchant_connector_id,
unified_code: self.unified_code, unified_code: self.unified_code,
unified_message: self.unified_message, unified_message: self.unified_message,
mandate_data: self.mandate_data.map(|d| d.to_storage_model()),
} }
} }
@ -1179,7 +1149,7 @@ impl DataModelExt for PaymentAttempt {
preprocessing_step_id: storage_model.preprocessing_step_id, preprocessing_step_id: storage_model.preprocessing_step_id,
mandate_details: storage_model mandate_details: storage_model
.mandate_details .mandate_details
.map(MandateTypeDetails::from_storage_model), .map(MandateDataType::from_storage_model),
error_reason: storage_model.error_reason, error_reason: storage_model.error_reason,
multiple_capture_count: storage_model.multiple_capture_count, multiple_capture_count: storage_model.multiple_capture_count,
connector_response_reference_id: storage_model.connector_response_reference_id, connector_response_reference_id: storage_model.connector_response_reference_id,
@ -1190,6 +1160,9 @@ impl DataModelExt for PaymentAttempt {
merchant_connector_id: storage_model.merchant_connector_id, merchant_connector_id: storage_model.merchant_connector_id,
unified_code: storage_model.unified_code, unified_code: storage_model.unified_code,
unified_message: storage_model.unified_message, unified_message: storage_model.unified_message,
mandate_data: storage_model
.mandate_data
.map(MandateDetails::from_storage_model),
} }
} }
} }
@ -1245,6 +1218,7 @@ impl DataModelExt for PaymentAttemptNew {
merchant_connector_id: self.merchant_connector_id, merchant_connector_id: self.merchant_connector_id,
unified_code: self.unified_code, unified_code: self.unified_code,
unified_message: self.unified_message, unified_message: self.unified_message,
mandate_data: self.mandate_data.map(|d| d.to_storage_model()),
} }
} }
@ -1287,7 +1261,7 @@ impl DataModelExt for PaymentAttemptNew {
preprocessing_step_id: storage_model.preprocessing_step_id, preprocessing_step_id: storage_model.preprocessing_step_id,
mandate_details: storage_model mandate_details: storage_model
.mandate_details .mandate_details
.map(MandateTypeDetails::from_storage_model), .map(MandateDataType::from_storage_model),
error_reason: storage_model.error_reason, error_reason: storage_model.error_reason,
connector_response_reference_id: storage_model.connector_response_reference_id, connector_response_reference_id: storage_model.connector_response_reference_id,
multiple_capture_count: storage_model.multiple_capture_count, multiple_capture_count: storage_model.multiple_capture_count,
@ -1298,6 +1272,9 @@ impl DataModelExt for PaymentAttemptNew {
merchant_connector_id: storage_model.merchant_connector_id, merchant_connector_id: storage_model.merchant_connector_id,
unified_code: storage_model.unified_code, unified_code: storage_model.unified_code,
unified_message: storage_model.unified_message, unified_message: storage_model.unified_message,
mandate_data: storage_model
.mandate_data
.map(MandateDetails::from_storage_model),
} }
} }
} }

View File

@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
ALTER TABLE payment_attempt DROP COLUMN IF EXISTS mandate_data;

View File

@ -0,0 +1,3 @@
-- Your SQL goes here
ALTER TABLE payment_attempt
ADD COLUMN IF NOT EXISTS mandate_data JSONB DEFAULT NULL;