From 4045c0cd07ca5b8aaae1fdf0a71f821bd10ba106 Mon Sep 17 00:00:00 2001 From: "vysakh.menon" Date: Thu, 12 Aug 2021 09:16:41 -0700 Subject: [PATCH 1/2] 8554 fix transaction history for resubmit --- api/namex/resources/events.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/namex/resources/events.py b/api/namex/resources/events.py index 8da4ea5d4..3b9df8522 100644 --- a/api/namex/resources/events.py +++ b/api/namex/resources/events.py @@ -182,7 +182,8 @@ def get(nr): payment_display = { Payment.PaymentActions.CREATE.value: 'Created NR', Payment.PaymentActions.REAPPLY.value: 'Reapplied NR', - Payment.PaymentActions.UPGRADE.value: 'Upgraded Priority' + Payment.PaymentActions.UPGRADE.value: 'Upgraded Priority', + Payment.PaymentActions.RESUBMIT.value: 'Resubmited NR' } for action in Payment.PaymentActions: if action.value in e_dict['action']: From 3a03e3e213915589c1f713f68848cbf394639cdc Mon Sep 17 00:00:00 2001 From: "vysakh.menon" Date: Thu, 12 Aug 2021 09:20:56 -0700 Subject: [PATCH 2/2] no message --- api/namex/resources/events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/namex/resources/events.py b/api/namex/resources/events.py index 3b9df8522..417b85709 100644 --- a/api/namex/resources/events.py +++ b/api/namex/resources/events.py @@ -183,7 +183,7 @@ def get(nr): Payment.PaymentActions.CREATE.value: 'Created NR', Payment.PaymentActions.REAPPLY.value: 'Reapplied NR', Payment.PaymentActions.UPGRADE.value: 'Upgraded Priority', - Payment.PaymentActions.RESUBMIT.value: 'Resubmited NR' + Payment.PaymentActions.RESUBMIT.value: 'Resubmitted NR' } for action in Payment.PaymentActions: if action.value in e_dict['action']: