ad470d2166
- Implemented CreateStockKeepingUnitDto for creating stock keeping units. - Added StockKeepingUnitsService for handling business logic related to stock keeping units. - Created StockKeepingUnitsController to manage HTTP requests for stock keeping units. - Developed UpdateStockKeepingUnitDto for updating existing stock keeping units. - Introduced StockKeepingUnitsServiceFindAllResponseDto for response structure. - Established stock keeping units module for encapsulation of related components. feat: enhance sales invoice fiscal management with new endpoints - Created SalesInvoicesFilterDto for filtering sales invoices. - Implemented PosSalesInvoiceFiscalController for managing fiscal operations on sales invoices. - Developed PosSalesInvoiceFiscalService to handle fiscal logic and interactions. - Added methods for sending, retrying, and checking the status of fiscal invoices. - Integrated error handling and response mapping for fiscal operations.
18 lines
478 B
Plaintext
18 lines
478 B
Plaintext
model StockKeepingUnits {
|
|
id String @id @default(ulid())
|
|
code String @unique
|
|
name String
|
|
VAT Decimal @db.Decimal(5, 2)
|
|
type SKUGuildType @default(GOLD)
|
|
is_public Boolean @default(true)
|
|
is_domestic Boolean @default(false)
|
|
|
|
created_at DateTime @default(now()) @db.Timestamp(0)
|
|
updated_at DateTime @updatedAt() @db.Timestamp(0)
|
|
|
|
goods Good[]
|
|
|
|
@@index([code])
|
|
@@map("stock_keeping_units")
|
|
}
|