mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-07-16 09:15:50 +00:00
Enhance payment processing and user interaction features
- Updated createPayment function to log payment data more clearly. - Introduced verifyPayment function for validating payments via an external API. - Enhanced DevicesToPay component to include user information and payment verification functionality. - Added formatDate utility for consistent date formatting across the application. - Updated Prisma schema to include account number for users. - Refactored layout and device cart components for improved user experience and responsiveness.
This commit is contained in:
2
prisma/migrations/20241209164451_add/migration.sql
Normal file
2
prisma/migrations/20241209164451_add/migration.sql
Normal file
@ -0,0 +1,2 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "user" ADD COLUMN "accNo" TEXT;
|
@ -20,6 +20,7 @@ model User {
|
||||
emailVerified Boolean @default(false)
|
||||
firstPaymentDone Boolean @default(false)
|
||||
verified Boolean @default(false)
|
||||
accNo String?
|
||||
// island String?
|
||||
address String?
|
||||
id_card String? @unique
|
||||
|
Reference in New Issue
Block a user