cbe51b9343
- Added BankAccountsController, BankAccountsService, and related DTOs for managing bank accounts. - Implemented BankBranchesController, BankBranchesService, and related DTOs for managing bank branches. - Created BanksController and BanksService for retrieving bank information. - Integrated Prisma for database operations across all modules. - Added response mapping for consistent API responses.
34 lines
312 B
Plaintext
34 lines
312 B
Plaintext
enum OrderStatus {
|
|
PENDING
|
|
REJECT
|
|
DONE
|
|
}
|
|
|
|
enum MovementType {
|
|
IN
|
|
OUT
|
|
ADJUST
|
|
}
|
|
|
|
enum MovementReferenceType {
|
|
PURCHASE
|
|
SALES
|
|
ADJUSTMENT
|
|
INVENTORY_TRANSFER
|
|
}
|
|
|
|
enum payment_method_type {
|
|
CASH
|
|
CARD
|
|
BANK
|
|
CHECK
|
|
OTHER
|
|
}
|
|
|
|
enum ledgerSourceType {
|
|
PURCHASE
|
|
PAYMENT
|
|
ADJUSTMENT
|
|
REFUND
|
|
}
|