Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | export namespace Module {
export const Public = 'public';
export const Private = 'private';
/**
* Request module
*/
export const Request = {
Shipment: '1',
IsoTankProvider: '2',
Depot: '3',
Transport: '4',
Surveyor: '5',
Vessel: '6',
};
/**
* Physical transport module
*/
export const PhysicalTransport = {
JourneyMgmt: '7',
SearchMgmt: '35',
ReportMgmt: '37',
ReportMasterMgmt: '40',
};
/**
* Intermodal module
*/
export const Intermodal = {
EntryMgmt: '8',
WeighbridgeMgmt: '9',
TransferEirMgmt: '10',
TransferBolMgmt: '11',
ContainerReheatingMgmt: '12',
ContainerCleaningMgmt: '13',
LoadingMgmt: '14',
LiftMgmt: '31',
AlertValidation: '32',
OnLoadingMgmt: '33',
VesselMgmt: '39',
CargoMgmt: '41',
DGDMgmt: '42',
};
/**
* Compliance module
*/
export const Compliance = {
FlowMgmt: '15',
TemplateMgmt: '16',
DocumentMgmt: '25',
FlowValidation: '26',
VerifyMgmt: '36',
FleetMgmt: '34',
};
/**
* Admin module
*/
export const Admin = {
CompanyMgmt: '17',
UserMgmt: '18',
TradeLaneMgmt: '30',
PartyMgmt: '38',
CategoryMgmt: '43',
};
/**
* LogChain module
*/
export const LogChain = {
CompanyMgmt: '19',
UserMgmt: '20',
RoleMgmt: '21',
TradeLaneMgmt: '22',
FlowMgmt: '23',
TransportMgmt: '24',
RegulatoryFiling: '28',
LicenceMgmt: '44',
};
/**
* Regulatory module
*/
export const Regulatory = {
RegulatoryFiling: '27',
RegulatoryDashboard: '29',
};
/**
* Alert module
*/
export const Alert = {
Validation: '32',
};
/**
* module list
*/
export const ModuleList = {
Request: '1',
PhysicalTransport: '2',
Intermodal: '3',
Compliance: '4',
Admin: '5',
LogChain: '6',
Regulatory: '7',
Alert: '8',
};
}
|