From 6baefe9f503ecaa72727a1cbd3e1f13c3a1fd016 Mon Sep 17 00:00:00 2001 From: Edwin Eames Date: Thu, 18 Sep 2025 13:02:28 -0400 Subject: [PATCH] Good progress --- src/pages/card/addcard.vue | 30 +- .../profile/profile/TransactionsTable.vue | 1 - .../update_tickets/finalize_ticket.vue | 296 +++++++++++++----- src/pages/delivery/view.vue | 232 ++++++++------ src/pages/pay/oil/authorize_preauthcharge.vue | 11 +- src/pages/pay/oil/pay_oil.vue | 13 +- 6 files changed, 397 insertions(+), 186 deletions(-) diff --git a/src/pages/card/addcard.vue b/src/pages/card/addcard.vue index 8c34552..871dd1e 100755 --- a/src/pages/card/addcard.vue +++ b/src/pages/card/addcard.vue @@ -14,7 +14,35 @@
- +
Customer
+
+
{{ customer.customer_first_name }} {{ customer.customer_last_name }}
+
{{ customer.customer_address }}
+
{{ customer.customer_apt }}
+
+ {{ customer.customer_town }}, + Massachusetts + Rhode Island + New Hampshire + Maine + Vermont + Maine + New York + Unknown state + {{ customer.customer_zip }} +
+
+ {{ customer.customer_phone_number }} + (Residential + apartment + condo + commercial + business + construction + container + Unknown type) +
+
diff --git a/src/pages/customer/profile/profile/TransactionsTable.vue b/src/pages/customer/profile/profile/TransactionsTable.vue index 3b72d99..edaa049 100644 --- a/src/pages/customer/profile/profile/TransactionsTable.vue +++ b/src/pages/customer/profile/profile/TransactionsTable.vue @@ -109,7 +109,6 @@ interface Transaction { charge_amount: number | null; transaction_type: number; status: number; - customer_name: string; created_at: string; auth_net_transaction_id: string | null; rejection_reason: string | null; diff --git a/src/pages/delivery/update_tickets/finalize_ticket.vue b/src/pages/delivery/update_tickets/finalize_ticket.vue index 78449b6..55d115d 100755 --- a/src/pages/delivery/update_tickets/finalize_ticket.vue +++ b/src/pages/delivery/update_tickets/finalize_ticket.vue @@ -1,4 +1,3 @@ -