Add field management module with database schema and validation

- Introduced `FieldModule` to manage cycles and plans, including read and write controllers.
- Created database migrations for `company_settings`, `cycles`, `cycle_weekdays`, `cycle_destinations`, `plans`, `plan_destinations`, `plan_invoices`, and `plan_packing_slips` tables, including constraints and unique indexes.
- Developed service and repository layers for handling cycle and plan data operations.
- Added unit tests for the cycles and plans services, repositories, and controllers to ensure functionality and correctness.
- Updated application module to include the new `FieldModule` for better organization.
This commit is contained in:
shancheas
2026-08-25 18:20:19 +07:00
parent 34d4f2c120
commit c9f9b31abf
53 changed files with 5990 additions and 5 deletions
@@ -83,6 +83,16 @@ export class EmployeesService {
return this.toListItem(employee);
}
async findByCode(
code: string,
): Promise<ReturnType<EmployeesService['toListItem']>> {
const employee = await this.employeesRepository.findByCode(code);
if (!employee) {
throw new NotFoundException('Employee not found');
}
return this.toListItem(employee);
}
async create(input: {
code: string;
name: string;