mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-07 17:45:42 +00:00
- Added functionality to cancel contracts, allowing users to provide a reason for cancellation. - Updated contract statuses to include SUSPENDED and changed CLOSED to COMPLETED. - Enhanced the UI to reflect the new cancellation option and updated messaging for contract statuses. - Refactored contract booking actions to accommodate changes in booking logic for ONE_TIME and GENERAL contracts. - Removed clearance document management from the contract detail page, as it is now handled per booking. - Introduced a SQL script to reset bookings and train schedules for development purposes.
26 lines
956 B
TypeScript
26 lines
956 B
TypeScript
import { MigrationInterface, QueryRunner } from 'typeorm';
|
|
|
|
/**
|
|
* Backoffice contract suspension (reversible freeze at any post-signature step)
|
|
* and customer-initiated contract cancellation.
|
|
*
|
|
* Only one new column is needed: the status to restore when the suspension is
|
|
* lifted. The reason and the actor already have a home — contract_review_notes
|
|
* rows with note_type SUSPENSION / SUSPENSION_LIFTED / CANCELLATION.
|
|
*/
|
|
export class AddContractSuspension3000000000000 implements MigrationInterface {
|
|
name = 'AddContractSuspension3000000000000';
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(
|
|
`ALTER TABLE freight.contracts ADD COLUMN IF NOT EXISTS status_before_suspension varchar(40);`,
|
|
);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(
|
|
`ALTER TABLE freight.contracts DROP COLUMN IF EXISTS status_before_suspension;`,
|
|
);
|
|
}
|
|
}
|