Merge branch 'dev'

This commit is contained in:
Marshal
2026-08-13 14:14:31 +00:00
219 changed files with 13585 additions and 5559 deletions

View File

@@ -1,4 +1,4 @@
import { Global, Module } from '@nestjs/common';
import { forwardRef, Global, Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { ApprovalRulesController } from './controllers/approval-rules.controller';
@@ -104,8 +104,9 @@ import { BookingRateSnapshot } from '../bookings/entities/booking-rate-snapshot.
// against them (a cap above the rating is a typo, not a policy).
WagonTypesModule,
// Rates may be scoped to one shipping line; creating such a rate validates
// the line exists and is active.
ShippingLineCompaniesModule,
// the line exists and is active. forwardRef: shipping-lines now imports
// BookingsModule (booking completion), which imports this module back.
forwardRef(() => ShippingLineCompaniesModule),
],
controllers: [
CargoTypesController,