mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
Merge branch 'dev' of github.com:Tria-plc/edr-platform into freight_feature/usermanagement
This commit is contained in:
@@ -113,6 +113,7 @@ export enum PaymentService {
|
||||
export enum PaymentReferenceType {
|
||||
BOOKING = "BOOKING",
|
||||
SHIPMENT = "SHIPMENT",
|
||||
EXCESS_BAGGAGE = "EXCESS_BAGGAGE",
|
||||
SUPPLEMENTARY_CHARGE = "SUPPLEMENTARY_CHARGE",
|
||||
}
|
||||
|
||||
|
||||
@@ -233,6 +233,20 @@ export enum LoadingStatus {
|
||||
Unloaded = "UNLOADED",
|
||||
}
|
||||
|
||||
/**
|
||||
* Pre-approval last-mile confirmation lifecycle, fired when a train departs
|
||||
* Djibouti: the customer confirms which containers go via EDR last-mile, then
|
||||
* the Truck & Machinery chief approves (truck available) or rejects (reason).
|
||||
* Approval creates/reuses the execution `LastMile` record — this status set is
|
||||
* intentionally separate from `LAST_MILE_STATUSES`.
|
||||
*/
|
||||
export enum LastMileRequestStatus {
|
||||
AwaitingConfirmation = "AWAITING_CONFIRMATION",
|
||||
Submitted = "SUBMITTED",
|
||||
Approved = "APPROVED",
|
||||
Rejected = "REJECTED",
|
||||
}
|
||||
|
||||
export enum WagonStatus {
|
||||
Available = "AVAILABLE",
|
||||
Assigned = "ASSIGNED",
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
import { createRequire } from 'module';
|
||||
|
||||
const require = createRequire(import.meta.url);
|
||||
|
||||
// Optional PostCSS configuration for applications that need it
|
||||
export const postcssConfig = {
|
||||
plugins: {
|
||||
|
||||
Reference in New Issue
Block a user