mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-29 23:28:11 +00:00
schedule logic
This commit is contained in:
@@ -146,6 +146,22 @@ export enum WagonReadiness {
|
||||
|
||||
export type ScheduleTradeDirection = "IMPORT" | "EXPORT" | "DOMESTIC";
|
||||
|
||||
export enum TrainCheckpointKind {
|
||||
Departed = "DEPARTED",
|
||||
Passed = "PASSED",
|
||||
Arrived = "ARRIVED",
|
||||
}
|
||||
|
||||
export interface ITrainCheckpointEvent extends BaseEntity {
|
||||
trainScheduleId: string;
|
||||
yardId: string;
|
||||
sequenceNo: number;
|
||||
kind: TrainCheckpointKind;
|
||||
occurredAt: string;
|
||||
note?: string | null;
|
||||
recordedByUserId?: string | null;
|
||||
}
|
||||
|
||||
export enum BulkPricingUnit {
|
||||
PerWagon = "PER_WAGON",
|
||||
PerTon = "PER_TON",
|
||||
|
||||
Reference in New Issue
Block a user