feat: document more endpoints

This commit is contained in:
Ahmed Bouhuolia
2025-06-16 23:40:12 +02:00
parent e057b4e2f0
commit f624cf7ae6
8 changed files with 629 additions and 5 deletions

View File

@@ -10,11 +10,20 @@ import {
} from '@nestjs/common';
import { ExpensesApplication } from './ExpensesApplication.service';
import { IExpensesFilter } from './Expenses.types';
import { ApiOperation, ApiTags } from '@nestjs/swagger';
import {
ApiExtraModels,
ApiOperation,
ApiResponse,
ApiTags,
getSchemaPath,
} from '@nestjs/swagger';
import { CreateExpenseDto, EditExpenseDto } from './dtos/Expense.dto';
import { PaginatedResponseDto } from '@/common/dtos/PaginatedResults.dto';
import { ExpenseResponseDto } from './dtos/ExpenseResponse.dto';
@Controller('expenses')
@ApiTags('Expenses')
@ApiExtraModels(PaginatedResponseDto, ExpenseResponseDto)
export class ExpensesController {
constructor(private readonly expensesApplication: ExpensesApplication) {}
@@ -65,8 +74,25 @@ export class ExpensesController {
/**
* Get the expense transaction details.
*/
@Get('')
@ApiOperation({ summary: 'Get the expense transaction details.' })
@Get()
@ApiOperation({ summary: 'Get the expense transactions.' })
@ApiResponse({
status: 200,
description: 'The item list has been successfully retrieved.',
schema: {
allOf: [
{ $ref: getSchemaPath(PaginatedResponseDto) },
{
properties: {
data: {
type: 'array',
items: { $ref: getSchemaPath(ExpenseResponseDto) },
},
},
},
],
},
})
public getExpenses(@Query() filterDTO: IExpensesFilter) {
return this.expensesApplication.getExpenses(filterDTO);
}
@@ -77,6 +103,13 @@ export class ExpensesController {
*/
@Get(':id')
@ApiOperation({ summary: 'Get the expense transaction details.' })
@ApiResponse({
status: 200,
description: 'The expense transaction have been successfully retrieved.',
schema: {
$ref: getSchemaPath(ExpenseResponseDto),
},
})
public getExpense(@Param('id') expenseId: number) {
return this.expensesApplication.getExpense(expenseId);
}

View File

@@ -0,0 +1,208 @@
import { ApiProperty } from '@nestjs/swagger';
import { Type } from 'class-transformer';
import {
IsArray,
IsBoolean,
IsDate,
IsNumber,
IsOptional,
IsString,
ValidateNested,
} from 'class-validator';
export class ExpenseCategoryResponseDto {
@ApiProperty({
example: 1,
description: 'The unique identifier of the expense category',
})
id: number;
@ApiProperty({
example: 100,
description: 'The amount of the expense category',
})
amount: number;
@ApiProperty({
example: 50,
description: 'The allocated cost amount of the expense category',
})
allocatedCostAmount: number;
@ApiProperty({
example: 1,
description: 'The expense account ID associated with this category',
})
expenseAccountId: number;
@ApiProperty({
example: 1,
description: 'The project ID associated with this category',
required: false,
})
projectId?: number;
@ApiProperty({
example: 'Office supplies for Q1',
description: 'The description of the expense category',
})
description: string;
@ApiProperty({
example: 50,
description: 'The unallocated cost amount of the expense category',
})
unallocatedCostAmount: number;
}
export class ExpenseResponseDto {
@ApiProperty({
example: 1,
description: 'The unique identifier of the expense',
})
id: number;
@ApiProperty({
example: 1000,
description: 'The total amount of the expense',
})
totalAmount: number;
@ApiProperty({
example: 'USD',
description: 'The currency code of the expense',
})
currencyCode: string;
@ApiProperty({
example: 1.2,
description: 'The exchange rate used for the expense',
})
exchangeRate: number;
@ApiProperty({
example: 'Office supplies and equipment',
description: 'The description of the expense',
required: false,
})
description?: string;
@ApiProperty({
example: 1,
description: 'The ID of the payment account used for this expense',
})
paymentAccountId: number;
@ApiProperty({
example: 'EXP-2024-001',
description: 'The reference number of the expense',
})
referenceNo: string;
@ApiProperty({
example: '2024-03-20T10:00:00Z',
description: 'The date when the expense was published',
required: false,
})
publishedAt?: Date;
@ApiProperty({
example: 1,
description: 'The ID of the user who created the expense',
})
userId: number;
@ApiProperty({
example: '2024-03-20T10:00:00Z',
description: 'The payment date of the expense',
})
paymentDate: Date;
@ApiProperty({
example: 1,
description: 'The ID of the payee',
})
payeeId: number;
@ApiProperty({
example: 800,
description: 'The landed cost amount of the expense',
})
landedCostAmount: number;
@ApiProperty({
example: 200,
description: 'The allocated cost amount of the expense',
})
allocatedCostAmount: number;
@ApiProperty({
example: 0,
description: 'The invoiced amount of the expense',
})
invoicedAmount: number;
@ApiProperty({
example: 1,
description: 'The ID of the branch associated with the expense',
})
branchId: number;
@ApiProperty({
example: '2024-03-20T10:00:00Z',
description: 'The creation date of the expense',
})
createdAt: Date;
@ApiProperty({
example: true,
description: 'Whether the expense is published',
})
isPublished: boolean;
@ApiProperty({
example: 200,
description: 'The unallocated cost amount of the expense',
})
unallocatedCostAmount: number;
@ApiProperty({
example: 1200,
description:
'The local amount of the expense (total amount * exchange rate)',
})
localAmount: number;
@ApiProperty({
example: 960,
description: 'The local landed cost amount of the expense',
})
localLandedCostAmount: number;
@ApiProperty({
example: 240,
description: 'The local allocated cost amount of the expense',
})
localAllocatedCostAmount: number;
@ApiProperty({
example: 240,
description: 'The local unallocated cost amount of the expense',
})
localUnallocatedCostAmount: number;
@ApiProperty({
example: 1000,
description: 'The billable amount of the expense',
})
billableAmount: number;
@ApiProperty({
type: [ExpenseCategoryResponseDto],
description: 'The categories associated with this expense',
})
@IsArray()
@ValidateNested({ each: true })
@Type(() => ExpenseCategoryResponseDto)
categories: ExpenseCategoryResponseDto[];
}