mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
- Added ShippingLineBookingCompletionController and associated service to handle the completion of shipping line bookings. - Introduced a new module for booking completion to maintain module separation and avoid cyclic dependencies. - Updated the train scheduling global rules to set default desk hours to 24 hours. - Modified existing services and entities to accommodate the new booking completion logic. - Enhanced the front-end components to support the new booking completion flow, including updates to the booking detail and bookings pages. - Implemented validation and error handling for booking completion, ensuring that only approved bookings can be completed. - Added migration to set default desk hours in the database.
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import { MigrationInterface, QueryRunner } from "typeorm";
|
|
|
|
/**
|
|
* Default the daily booking desk to 24 hours: window_close_hour equal to
|
|
* window_open_hour means the desk never pauses overnight. Aligns the column
|
|
* default and the existing global-rules row; per-schedule overrides keep
|
|
* whatever staff set on them.
|
|
*/
|
|
export class DefaultDeskHours24h3520000000000 implements MigrationInterface {
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`
|
|
ALTER TABLE freight.train_scheduling_global_rules
|
|
ALTER COLUMN window_close_hour SET DEFAULT 8
|
|
`);
|
|
await queryRunner.query(`
|
|
UPDATE freight.train_scheduling_global_rules
|
|
SET window_close_hour = window_open_hour
|
|
`);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`
|
|
ALTER TABLE freight.train_scheduling_global_rules
|
|
ALTER COLUMN window_close_hour SET DEFAULT 17
|
|
`);
|
|
await queryRunner.query(`
|
|
UPDATE freight.train_scheduling_global_rules
|
|
SET window_close_hour = 17
|
|
`);
|
|
}
|
|
}
|