Ignore:
Timestamp:
02/26/25 10:05:32 (5 weeks ago)
Author:
Naum Shapkarovski <naumshapkarovski@…>
Branches:
main
Children:
299af01
Parents:
5d6f37a
Message:

feat: implement employees

File:
1 edited

Legend:

Unmodified
Added
Removed
  • prisma/schema.prisma

    r5d6f37a r057453c  
    88}
    99
    10 model Customer {
     10model Client {
    1111  id              String        @id @default(uuid())
    1212  companyId       String?       // Optional company identifier
     
    2121  status          CustomerStatus @default(active)
    2222
    23   bankAccounts    BankAccount[] // One-to-many relation
    24   invoicesSent    Invoice[] @relation("InvoiceFrom")
    2523  invoicesReceived Invoice[] @relation("InvoiceTo")
    26 }
    27 
    28 model BankAccount {
    29   id             String   @id @default(uuid())
    30   customerId     String
    31   customer       Customer @relation(fields: [customerId], references: [id], onDelete: Cascade)
    32   accountNumber  String?
    33   bicSwift       String?
    34   iban           String?
    35   routingNumber  String?
    36   currency       Currency
    3724}
    3825
     
    4027  id          String  @id @default(uuid())
    4128  name        String
    42   sprintPrice Float
    43   hourPrice   Float
    44   monthPrice  Float
     29  sprint      Float
     30  hour        Float
     31  month       Float
     32  tenantId    String
     33  tenant      Tenant   @relation(fields: [tenantId], references: [id], onDelete: Cascade)
    4534
    46   invoiceItems InvoiceItem[]
     35  lineItems LineItem[]
    4736}
    4837
     
    6453
    6554  invoiceFromId String
    66   invoiceFrom   Customer       @relation("InvoiceFrom", fields: [invoiceFromId], references: [id], onDelete: Cascade)
     55  invoiceFrom   Tenant        @relation(fields: [invoiceFromId], references: [id], onDelete: Cascade)
    6756
    6857  invoiceToId   String
    69   invoiceTo     Customer       @relation("InvoiceTo", fields: [invoiceToId], references: [id], onDelete: Cascade)
     58  invoiceTo     Client       @relation("InvoiceTo", fields: [invoiceToId], references: [id], onDelete: Cascade)
    7059
    71   items         InvoiceItem[]
     60  items         LineItem[]
    7261}
    7362
    74 model InvoiceItem {
     63model LineItem {
    7564  id          String   @id @default(uuid())
    7665  title       String
     
    8574}
    8675
     76model Tenant {
     77  id                String    @id @default(cuid())
     78  name              String
     79  email             String    @unique
     80  address           Json      // Holds {street: string, city?: string, country: string, state?: string, zip: string}
     81  bankAccounts      Json?     // Holds {eur?: {accountNumber?, bicSwift?, iban?, routingNumber?}, usd?: {...}}
     82  logoUrl           String?
     83  phoneNumber       String?
     84  vatNumber         String?
     85  companyNumber     String?
     86  representative    String
     87  lastInvoiceNumber String       @default("0")
     88  createdAt         DateTime  @default(now())
     89  updatedAt         DateTime  @updatedAt
     90  invoicesSent      Invoice[]
     91  services          Service[]
     92  employees         Employee[]
     93}
     94
     95model Employee {
     96  id          String         @id @default(uuid())
     97  name        String
     98  email       String         @unique
     99  status      EmployeeStatus @default(active)
     100  iban        String?
     101  cv          String?
     102  photo       String?
     103  project     String?
     104  tenantId    String
     105  tenant      Tenant         @relation(fields: [tenantId], references: [id], onDelete: Cascade)
     106}
     107
    87108// Enums
    88109enum CustomerStatus {
     
    93114
    94115enum InvoiceStatus {
    95   DRAFT
    96   PROCESSING
    97   PENDING
    98   OVERDUE
    99   PAID
     116  draft
     117  processing
     118  pending
     119  overdue
     120  paid
    100121}
    101122
     
    106127
    107128enum QuantityType {
    108   UNIT
    109   HOUR
    110   SPRINT
    111   MONTH
     129  Unit
     130  Hour
     131  Sprint
     132  Month
    112133}
    113134
    114135enum Month {
    115   JANUARY
    116   FEBRUARY
    117   MARCH
    118   APRIL
    119   MAY
    120   JUNE
    121   JULY
    122   AUGUST
    123   SEPTEMBER
    124   OCTOBER
    125   NOVEMBER
    126   DECEMBER
     136  January
     137  February
     138  March
     139  April
     140  May
     141  June
     142  July
     143  August
     144  September
     145  October
     146  November
     147  December
    127148}
     149
     150enum EmployeeStatus {
     151  active
     152  inactive
     153}
Note: See TracChangeset for help on using the changeset viewer.