mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-29 17:38:12 +00:00
feat: add more statuses to the booking deailt page and added handling of request approval
This commit is contained in:
@@ -34,10 +34,24 @@ export enum FreightType {
|
||||
|
||||
export enum BookingStatus {
|
||||
Draft = "DRAFT",
|
||||
Confirmed = "CONFIRMED",
|
||||
Submitted = "SUBMITTED",
|
||||
ChangesRequested = "CHANGES_REQUESTED",
|
||||
PendingApproval = "PENDING_APPROVAL",
|
||||
ApprovedPendingSignature = "APPROVED_PENDING_SIGNATURE",
|
||||
Approved = "APPROVED",
|
||||
ContractReady = "CONTRACT_READY",
|
||||
SignedCustomer = "SIGNED_CUSTOMER",
|
||||
FullyExecuted = "FULLY_EXECUTED",
|
||||
PnrGenerated = "PNR_GENERATED",
|
||||
PaymentVerificationInProgress = "PAYMENT_VERIFICATION_IN_PROGRESS",
|
||||
Paid = "PAID",
|
||||
InTransit = "IN_TRANSIT",
|
||||
Completed = "COMPLETED",
|
||||
Delivered = "DELIVERED",
|
||||
Rejected = "REJECTED",
|
||||
Cancelled = "CANCELLED",
|
||||
PendingConsolidation = "PENDING_CONSOLIDATION",
|
||||
Consolidated = "CONSOLIDATED",
|
||||
}
|
||||
|
||||
export enum ConsignmentStatus {
|
||||
@@ -227,6 +241,9 @@ export interface IBooking extends BaseEntity {
|
||||
resource: string;
|
||||
signedUrl?: string | null;
|
||||
}>;
|
||||
|
||||
latestChangeRequestNote?: string | null;
|
||||
contractSummary?: string | null;
|
||||
}
|
||||
|
||||
export interface IInvoice extends BaseEntity {
|
||||
|
||||
Reference in New Issue
Block a user