mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-28 11:21:18 +00:00
- Added pricing service integration to ContractsService for pre-persistence contract pricing. - Updated LegCapacityPanel to display cargo weight instead of gross weight for better clarity on booked cargo. - Enhanced train scheduling service to include cargo weight in booking details. - Modified ClearanceDocumentsPage to include FULLY_EXECUTED status in booking status options. - Refactored FileUploadSettingsPage to categorize file upload settings into tabs for better organization. - Removed legacy onboarding fields and settings from file upload settings seeder. - Improved type definitions for train scheduling to include cargo weight without wagon tare.
92 lines
3.4 KiB
TypeScript
92 lines
3.4 KiB
TypeScript
import { Booking } from './entities/booking.entity';
|
||
|
||
/**
|
||
* Resolves which seeded clearance FileUploadSetting applies to a booking, from
|
||
* its trade direction, freight type and whether its service includes customs.
|
||
* Mirrors the codes seeded in file-upload-settings.seeder.ts.
|
||
*/
|
||
|
||
type Op = 'import' | 'export';
|
||
type Freight = 'container' | 'bulk';
|
||
|
||
/**
|
||
* The single (admin-configured) document set intercity shipments upload.
|
||
* DOMESTIC has no customs, so one shared set serves every intercity booking —
|
||
* ONE_TIME and GENERAL alike, collected per booking and reviewed by Operations.
|
||
*/
|
||
export const INTERCITY_DOCUMENTS_SETTING_CODE = 'intercity_documents';
|
||
|
||
/** Trade direction → clearance operation. DOMESTIC has no customs clearance. */
|
||
function operationFor(tradeDirection: string): Op | null {
|
||
if (tradeDirection === 'IMPORT') return 'import';
|
||
if (tradeDirection === 'EXPORT') return 'export';
|
||
return null; // DOMESTIC / intercity — no customs operation
|
||
}
|
||
|
||
function freightFor(freightType: string): Freight {
|
||
return freightType === 'BULK' ? 'bulk' : 'container';
|
||
}
|
||
|
||
/** The customer-input clearance setting code, or null when no gate applies. */
|
||
export function clearanceSettingCode(
|
||
tradeDirection: string,
|
||
freightType: string,
|
||
includesCustoms: boolean,
|
||
): string | null {
|
||
// Intercity: no customs, but the admin-configured intercity document set is
|
||
// still collected and ops-reviewed before the shipment may board a train.
|
||
if (tradeDirection === 'DOMESTIC') return INTERCITY_DOCUMENTS_SETTING_CODE;
|
||
const op = operationFor(tradeDirection);
|
||
if (!op) return null;
|
||
const freight = freightFor(freightType);
|
||
// 4 import + 4 export cases (bulk/container × with/without customs) — each
|
||
// booking resolves to its own clearance_{op}_{freight}_{with|without}_customs
|
||
// set, independent of any contract-level clearance codes.
|
||
if (!includesCustoms) {
|
||
return `clearance_${op}_${freight}_without_customs`;
|
||
}
|
||
return `clearance_${op}_${freight}_with_customs`;
|
||
}
|
||
|
||
/** The GL-output (customs output) setting code, keyed on op + freight. */
|
||
export function clearanceOutputSettingCode(
|
||
tradeDirection: string,
|
||
freightType: string,
|
||
includesCustoms: boolean,
|
||
): string | null {
|
||
if (!includesCustoms) return null;
|
||
const op = operationFor(tradeDirection);
|
||
if (!op) return null;
|
||
const freight = freightFor(freightType);
|
||
return `clearance_output_${op}_${freight}`;
|
||
}
|
||
|
||
/** Convenience: resolve both codes for a loaded booking (with its serviceType). */
|
||
export function clearanceCodesForBooking(booking: Booking): {
|
||
inputCode: string | null;
|
||
outputCode: string | null;
|
||
includesCustoms: boolean;
|
||
} {
|
||
// Customs applies when EITHER the service type bundles it OR the booking was
|
||
// created with customsClearingEnabled (copied from the contract). Contract
|
||
// bookings carry customsClearingEnabled even when the serviceType relation
|
||
// isn't loaded / has includesCustoms=false — without this the per-booking
|
||
// clearance grid would resolve empty.
|
||
const includesCustoms =
|
||
Boolean(booking.serviceType?.includesCustoms) ||
|
||
Boolean(booking.customsClearingEnabled);
|
||
return {
|
||
inputCode: clearanceSettingCode(
|
||
booking.tradeDirection,
|
||
booking.freightType,
|
||
includesCustoms,
|
||
),
|
||
outputCode: clearanceOutputSettingCode(
|
||
booking.tradeDirection,
|
||
booking.freightType,
|
||
includesCustoms,
|
||
),
|
||
includesCustoms,
|
||
};
|
||
}
|