@bharatbxhipment/xhipment-models-v2 1.0.84 → 1.0.86
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schemas/consol-execution-history/consol-execution-history.model.d.ts.map +1 -1
- package/dist/schemas/consol-execution-history/consol-execution-history.model.js +366 -8
- package/dist/schemas/consol-execution-history/consol-execution-history.model.js.map +1 -1
- package/dist/schemas/consol-executions/consol-execution.model.d.ts.map +1 -1
- package/dist/schemas/consol-executions/consol-execution.model.js +430 -8
- package/dist/schemas/consol-executions/consol-execution.model.js.map +1 -1
- package/dist/schemas/ocean-leg-sla-config/ocean-leg-sla-config.model.d.ts +3 -3
- package/dist/schemas/proposal-history/proposal-history.model.js +2 -2
- package/dist/schemas/proposal-history/proposal-history.model.js.map +1 -1
- package/dist/schemas/shipment-execution-history/shipment-execution-history.model.d.ts.map +1 -1
- package/dist/schemas/shipment-execution-history/shipment-execution-history.model.js +68 -75
- package/dist/schemas/shipment-execution-history/shipment-execution-history.model.js.map +1 -1
- package/dist/schemas/shipment-executions/shared-leg-schemas.d.ts +2925 -0
- package/dist/schemas/shipment-executions/shared-leg-schemas.d.ts.map +1 -0
- package/dist/schemas/shipment-executions/shared-leg-schemas.js +882 -0
- package/dist/schemas/shipment-executions/shared-leg-schemas.js.map +1 -0
- package/dist/schemas/shipment-executions/shipment-execution.model.d.ts.map +1 -1
- package/dist/schemas/shipment-executions/shipment-execution.model.js +67 -70
- package/dist/schemas/shipment-executions/shipment-execution.model.js.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"consol-execution-history.model.d.ts","sourceRoot":"","sources":["../../../src/schemas/consol-execution-history/consol-execution-history.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,6BAA6B,EAAE,MAAM,sCAAsC,CAAC;
|
|
1
|
+
{"version":3,"file":"consol-execution-history.model.d.ts","sourceRoot":"","sources":["../../../src/schemas/consol-execution-history/consol-execution-history.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,6BAA6B,EAAE,MAAM,sCAAsC,CAAC;AAErF,eAAO,MAAM,gCAAgC;;;;;;;;EAO3C,CAAC"}
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.consolExecutionHistoryBaseSchema = void 0;
|
|
4
4
|
const mongoose_1 = require("mongoose");
|
|
5
|
-
const flexLegSchema = new mongoose_1.Schema({}, { _id: false, strict: false });
|
|
6
5
|
exports.consolExecutionHistoryBaseSchema = new mongoose_1.Schema({
|
|
7
6
|
consolExecutionId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'ConsolExecution', required: true },
|
|
8
7
|
modifiedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User' },
|
|
@@ -11,17 +10,376 @@ exports.consolExecutionHistoryBaseSchema = new mongoose_1.Schema({
|
|
|
11
10
|
timestamps: true,
|
|
12
11
|
discriminatorKey: 'kind',
|
|
13
12
|
});
|
|
13
|
+
const vizionCheckDef = {
|
|
14
|
+
updatedAt: { type: Date },
|
|
15
|
+
updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User' },
|
|
16
|
+
isUpdatedByVizion: { type: Boolean },
|
|
17
|
+
lastUpdatedbyVizion: { type: Date },
|
|
18
|
+
isUpdateByVizionBlocked: { type: Boolean },
|
|
19
|
+
};
|
|
20
|
+
const deliveryOrderGeneratorDef = {
|
|
21
|
+
vendorId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Vendor' },
|
|
22
|
+
destinationAddress: { type: String },
|
|
23
|
+
destinationWarehouse: { type: String },
|
|
24
|
+
destinationWarehouseId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Warehouse' },
|
|
25
|
+
oceanCarrier: { type: String },
|
|
26
|
+
linerName: { type: String },
|
|
27
|
+
vesselName: { type: String },
|
|
28
|
+
voyage: { type: String },
|
|
29
|
+
containerPickupAddress: { addressLineOne: { type: String }, pinCode: { type: String } },
|
|
30
|
+
containerCode: { type: String },
|
|
31
|
+
mblNumber: { type: String },
|
|
32
|
+
containerType: { type: String },
|
|
33
|
+
totalWeightOfContainer: { value: { type: Number }, unit: { type: String, default: 'kg' } },
|
|
34
|
+
numberOfPackages: { type: Number },
|
|
35
|
+
cargoDetails: { type: String },
|
|
36
|
+
descriptionOfGoods: { type: String },
|
|
37
|
+
userDefinedLabel: { type: String },
|
|
38
|
+
userDefinedvalue: { type: String },
|
|
39
|
+
};
|
|
40
|
+
// ─── Air Consol Execution History ───
|
|
14
41
|
exports.consolExecutionHistoryBaseSchema.discriminator('port_to_port_air_consol-execution-history', new mongoose_1.Schema({
|
|
15
|
-
portToPortHandling:
|
|
16
|
-
|
|
42
|
+
portToPortHandling: {
|
|
43
|
+
vendorId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Vendor' },
|
|
44
|
+
airLine: { type: String },
|
|
45
|
+
originAirport: { type: String },
|
|
46
|
+
destinationAirport: { type: String },
|
|
47
|
+
originConsolidationPoint: { type: String },
|
|
48
|
+
cargoReachedCarrierWarehouse: { type: Boolean },
|
|
49
|
+
airLineTakeOffETA: { type: Date },
|
|
50
|
+
airLineTakeOffATA: { type: Date },
|
|
51
|
+
airLineLandingETA: { type: Date },
|
|
52
|
+
airLineLandingATA: { type: Date },
|
|
53
|
+
mawbNumber: { type: String },
|
|
54
|
+
mawbGenerated: { type: Boolean },
|
|
55
|
+
mawbFilePath: { type: String },
|
|
56
|
+
isConsolLocked: { type: Boolean, default: false },
|
|
57
|
+
draftHawbGenerated: { type: Boolean, default: false },
|
|
58
|
+
draftHawbSentToVendor: { type: Boolean, default: false },
|
|
59
|
+
finalHawbGenerated: { type: Boolean, default: false },
|
|
60
|
+
finalHawbAirlineSentToVendor: { type: Boolean, default: false },
|
|
61
|
+
finalHawbData: { type: mongoose_1.Schema.Types.Mixed },
|
|
62
|
+
mawbUrl: { type: String },
|
|
63
|
+
mawbUploadedDate: { type: Date },
|
|
64
|
+
mawbUploadedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User' },
|
|
65
|
+
bookingManifestUrl: { type: String },
|
|
66
|
+
bookingManifestUrlUpdatedDate: { type: Date },
|
|
67
|
+
vendorEmails: { type: [String] },
|
|
68
|
+
},
|
|
69
|
+
destinationWareHouseHandling: {
|
|
70
|
+
vendorId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Vendor' },
|
|
71
|
+
lastFreeDayOfAirline: { date: { type: Date }, timeZone: { type: String } },
|
|
72
|
+
cargoReachedWareHouseDate: { type: Date },
|
|
73
|
+
destinationWareHouse: { type: String },
|
|
74
|
+
customsReleased: { type: Boolean },
|
|
75
|
+
customsReleasedUpdatedDate: { type: Date },
|
|
76
|
+
freightReleased: { type: Boolean },
|
|
77
|
+
freightReleasedUpdatedDate: { type: Date },
|
|
78
|
+
pickupDate: { type: Date },
|
|
79
|
+
pickupAddress: { addressLineOne: { type: String }, pincode: { type: String } },
|
|
80
|
+
truckingVendor: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Vendor' },
|
|
81
|
+
mawbUrl: { type: String },
|
|
82
|
+
iscReceiptUrl: { type: String },
|
|
83
|
+
iscReceiptUrlUpdatedDate: { type: Date },
|
|
84
|
+
mawbUrlUpdatedDate: { type: Date },
|
|
85
|
+
bookingManifestUrl: { type: String },
|
|
86
|
+
bookingManifestUrlUpdatedDate: { type: Date },
|
|
87
|
+
pttUrl: { type: String },
|
|
88
|
+
pttUrlUpdatedDate: { type: Date },
|
|
89
|
+
sendInstructionsToTrucker: { type: Boolean },
|
|
90
|
+
sendInstructionsToTruckerDate: { type: Date },
|
|
91
|
+
sendInstructionsToTruckerZohoId: { type: String },
|
|
92
|
+
generateDO: { type: Boolean },
|
|
93
|
+
doUrl: { type: String },
|
|
94
|
+
doGerneratedDate: { type: Date },
|
|
95
|
+
doGeneratedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User' },
|
|
96
|
+
sendInstructionsToWarehouse: { type: Boolean },
|
|
97
|
+
sendInstructionsToWarehouseDate: { type: Date },
|
|
98
|
+
sendInstructionsToWarehouseZohoId: { type: String },
|
|
99
|
+
vendorEmails: { type: [String] },
|
|
100
|
+
oneF: { type: mongoose_1.Schema.Types.Mixed },
|
|
101
|
+
oneFUpdatedDate: { type: Date },
|
|
102
|
+
oneFUpdatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User' },
|
|
103
|
+
cargoFreightReleaseLetterUrl: { type: String },
|
|
104
|
+
cargoFreightReleaseLetterUpdatedDate: { type: Date },
|
|
105
|
+
cargoFreightReleaseLetterGeneratedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User' },
|
|
106
|
+
},
|
|
17
107
|
}));
|
|
108
|
+
// ─── Trucking Consol Execution History ───
|
|
18
109
|
exports.consolExecutionHistoryBaseSchema.discriminator('trucking_consol-execution-history', new mongoose_1.Schema({
|
|
19
|
-
lastMileDelivery:
|
|
110
|
+
lastMileDelivery: {
|
|
111
|
+
vendorId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Vendor' },
|
|
112
|
+
pickupLocation: { pickupType: { type: String }, address: { type: String } },
|
|
113
|
+
destinationCountry: { type: String },
|
|
114
|
+
deliveryLocation: { dropType: { type: String }, address: { type: String }, pincode: { type: String } },
|
|
115
|
+
appointmentDate: { date: { type: Date }, timeZone: { type: String } },
|
|
116
|
+
appointmentId: { type: String },
|
|
117
|
+
actualPickupDate: { type: Date },
|
|
118
|
+
bookingId: { type: String },
|
|
119
|
+
podDocUrl: { type: String },
|
|
120
|
+
cargoReachedFinalDestinationDate: { type: Date },
|
|
121
|
+
cargoFinalDestinationUpdatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User' },
|
|
122
|
+
cargoFinalDestinationUpdatedDate: { type: Date },
|
|
123
|
+
sendOutboundInstruction: { type: Boolean },
|
|
124
|
+
sendOutboundInstructionDate: { type: Date },
|
|
125
|
+
sendOutboundInstructionZohoId: { type: String },
|
|
126
|
+
podSendToShipper: { type: Boolean },
|
|
127
|
+
},
|
|
20
128
|
}));
|
|
129
|
+
// ─── Ocean LCL Consol Execution History ───
|
|
21
130
|
exports.consolExecutionHistoryBaseSchema.discriminator('port_to_port_lcl_consol-execution-history', new mongoose_1.Schema({
|
|
22
|
-
containerStuffing:
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
131
|
+
containerStuffing: {
|
|
132
|
+
originCFSId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Warehouse' },
|
|
133
|
+
vendorId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Vendor' },
|
|
134
|
+
containerLevelDetails: [{
|
|
135
|
+
isContainerRolledOver: { type: Boolean, default: false },
|
|
136
|
+
containerPickedUpDate: { type: Date },
|
|
137
|
+
containerPickedUpDateCheck: { ...vizionCheckDef },
|
|
138
|
+
containerCode: { type: String },
|
|
139
|
+
containerMetaDataId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'ContainerMetaData' },
|
|
140
|
+
containerIdentifier: { type: String },
|
|
141
|
+
sealNumber: { type: String },
|
|
142
|
+
mblNumber: { type: String },
|
|
143
|
+
loadingPlan: { type: String },
|
|
144
|
+
loadingPlanImages: [{ url: { type: String }, uploadedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User' }, uploadedAt: { type: Date, default: Date.now } }],
|
|
145
|
+
numberOfBoxes: { type: Number },
|
|
146
|
+
numberOfPallets: { type: Number },
|
|
147
|
+
amsFilingDate: { type: Date },
|
|
148
|
+
isfFilingDate: { type: Date },
|
|
149
|
+
shipmentDetails: [{
|
|
150
|
+
quoteId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Quotes' },
|
|
151
|
+
bookingId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Bookings' },
|
|
152
|
+
bookingIdentity: { type: String },
|
|
153
|
+
quoteIdentity: { type: String },
|
|
154
|
+
isCargoPalletised: { type: Boolean, default: false },
|
|
155
|
+
totalVolume: { type: Number },
|
|
156
|
+
stuffingCompleted: { type: Boolean, default: false },
|
|
157
|
+
palletDimensions: [{ dimensions: { length: { type: Number }, breadth: { type: Number }, height: { type: Number }, unit: { type: String, enum: ['cm', 'in', 'unit'] } }, boxOrPallet: { type: String }, numberOfPallets: { type: Number }, numberOfBoxes: { type: Number } }],
|
|
158
|
+
chargeableCBM: { type: Number },
|
|
159
|
+
chargeableWeight: { type: Number },
|
|
160
|
+
numberOfPallets: { type: Number },
|
|
161
|
+
numberOfBoxes: { type: Number },
|
|
162
|
+
}],
|
|
163
|
+
mblUrl: { type: String },
|
|
164
|
+
mblUploadedAt: { type: Date },
|
|
165
|
+
mblUploadedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User' },
|
|
166
|
+
vgmComleted: { type: Boolean },
|
|
167
|
+
vgmCompletionUpdationDate: { type: Date },
|
|
168
|
+
vgmCompletionDate: { type: Date },
|
|
169
|
+
vgmCopy: { type: String },
|
|
170
|
+
grossWeight: { type: Number },
|
|
171
|
+
shippingInstructionsFiledDate: { type: Date },
|
|
172
|
+
form13GeneratedDate: { type: Date },
|
|
173
|
+
form13ApprovedDate: { type: Date },
|
|
174
|
+
containerGatedInDate: { type: Date },
|
|
175
|
+
containerGatedInDateCheck: { ...vizionCheckDef },
|
|
176
|
+
isSailingMissed: { type: Boolean },
|
|
177
|
+
sailingMissedReason: { type: String },
|
|
178
|
+
isfAmsMatch: { type: Boolean },
|
|
179
|
+
isMvocNvocMatchReceived: { type: Boolean },
|
|
180
|
+
}],
|
|
181
|
+
stuffInstructionSentToVendor: { type: Boolean },
|
|
182
|
+
stuffInstructionSentToVendorDate: { type: Date },
|
|
183
|
+
stuffInstructionSentToVendorZohoId: { type: String },
|
|
184
|
+
vendorEmails: { type: [String] },
|
|
185
|
+
},
|
|
186
|
+
sailout: {
|
|
187
|
+
vendorId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Vendor' },
|
|
188
|
+
containerLevelDetails: [{
|
|
189
|
+
isContainerRolledOver: { type: Boolean, default: false },
|
|
190
|
+
containerMetaDataId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'ContainerMetaData' },
|
|
191
|
+
containerCode: { type: String },
|
|
192
|
+
mblUrl: { type: String },
|
|
193
|
+
mblUploadedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Employee' },
|
|
194
|
+
mblUploadedAt: { type: Date },
|
|
195
|
+
containerIdentifier: { type: String },
|
|
196
|
+
totalWeightOfContainer: { value: { type: Number }, unit: { type: String, default: 'kg' } },
|
|
197
|
+
containerLoadedOntoVessel: { type: Boolean },
|
|
198
|
+
containerLoadedOntoVesselCheck: { ...vizionCheckDef },
|
|
199
|
+
containerLoadedOntoVesselUpdatedDate: { type: Date },
|
|
200
|
+
actualSailOutDate: { type: Date },
|
|
201
|
+
actualSailOutDateCheck: { ...vizionCheckDef },
|
|
202
|
+
etaAtPod: { type: Date },
|
|
203
|
+
etaAtPodCheck: { ...vizionCheckDef },
|
|
204
|
+
lastUpdateByVizion: { type: Date },
|
|
205
|
+
isRollover: { type: Boolean },
|
|
206
|
+
rollOverReason: { type: String },
|
|
207
|
+
linerSeawayBillReleased: { type: Boolean },
|
|
208
|
+
}],
|
|
209
|
+
},
|
|
210
|
+
deliverContainerToDeconsolidationWarehouse: {
|
|
211
|
+
vendorId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Vendor' },
|
|
212
|
+
destinationWarehouse: { type: String },
|
|
213
|
+
destinationWarehouseId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Warehouse' },
|
|
214
|
+
daysOfFreeStorage: { type: Number, min: 0 },
|
|
215
|
+
storageCalculationType: { type: String, enum: ['business_days', 'calendar_days'], default: 'calendar_days' },
|
|
216
|
+
containerLevelDetails: [{
|
|
217
|
+
isContainerRolledOver: { type: Boolean, default: false },
|
|
218
|
+
containerCode: { type: String },
|
|
219
|
+
mblNumber: { type: String },
|
|
220
|
+
terminalValidationCompleted: { type: Boolean, default: false },
|
|
221
|
+
terminalValidationCompletedDate: { type: Date },
|
|
222
|
+
terminalValidationCompletedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User' },
|
|
223
|
+
containerMetaDataId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'ContainerMetaData' },
|
|
224
|
+
containerIdentifier: { type: String },
|
|
225
|
+
dateOfArrival: { type: Date },
|
|
226
|
+
dateOfArrivalCheck: { ...vizionCheckDef },
|
|
227
|
+
lastUpdateByVizion: { type: Date },
|
|
228
|
+
isAddedToWarehouse: { type: Boolean },
|
|
229
|
+
sendInstructionsToWarehouse: { type: Boolean },
|
|
230
|
+
sendInstructionsToWarehouseDate: { type: Date },
|
|
231
|
+
sendInstructionsToWarehouseZohoId: { type: String },
|
|
232
|
+
appointmentDate: { type: Date },
|
|
233
|
+
customsReleased: { type: Boolean },
|
|
234
|
+
customsReleasedCheck: { ...vizionCheckDef },
|
|
235
|
+
customsReleasedUpdatedDate: { type: Date },
|
|
236
|
+
freightReleased: { type: Boolean },
|
|
237
|
+
freightReleasedCheck: { ...vizionCheckDef },
|
|
238
|
+
freightReleasedUpdatedDate: { type: Date },
|
|
239
|
+
destinationTerminal: { type: String },
|
|
240
|
+
containerDischargeDate: { type: Date },
|
|
241
|
+
containerDischargeDateCheck: { ...vizionCheckDef },
|
|
242
|
+
pickupLFD: { type: Date },
|
|
243
|
+
pickupLFDCheck: { ...vizionCheckDef },
|
|
244
|
+
actualPullDate: { type: Date },
|
|
245
|
+
actualPullDateCheck: { ...vizionCheckDef },
|
|
246
|
+
demurrageDays: { type: Number },
|
|
247
|
+
deliveredToWarehouseDate: { type: Date },
|
|
248
|
+
returnLFD: { type: Date },
|
|
249
|
+
returnLFDCheck: { ...vizionCheckDef },
|
|
250
|
+
containerReturnDate: { type: Date },
|
|
251
|
+
containerReturnDateCheck: { ...vizionCheckDef },
|
|
252
|
+
detentionDays: { type: Number },
|
|
253
|
+
noOfBoxesToBeTransloaded: { type: Number },
|
|
254
|
+
cfsPickupLFD: { type: Date },
|
|
255
|
+
freightReleasedFromCFS: { type: Date },
|
|
256
|
+
storageLFD: { type: Date },
|
|
257
|
+
storageLFDCheck: { updatedAt: { type: Date }, updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User' } },
|
|
258
|
+
cargoReleaseNotesUrl: { type: String },
|
|
259
|
+
cargoReleaseNotesUpdatedDate: { type: Date },
|
|
260
|
+
arrivalNoticeUrl: { type: String },
|
|
261
|
+
arrivalNoticeUpdatedDate: { type: Date },
|
|
262
|
+
generateBol: { type: Boolean },
|
|
263
|
+
bolUrl: { type: String },
|
|
264
|
+
bolGeneratedDate: { type: Date },
|
|
265
|
+
bolGeneratedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User' },
|
|
266
|
+
containerPickupAddress: { addressLineOne: { type: String }, pinCode: { type: String } },
|
|
267
|
+
containerPickupAddressCheck: { ...vizionCheckDef },
|
|
268
|
+
shipmentDetails: [{
|
|
269
|
+
quoteId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Quotes' },
|
|
270
|
+
bookingId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Bookings' },
|
|
271
|
+
bookingIdentity: { type: String },
|
|
272
|
+
quoteIdentity: { type: String },
|
|
273
|
+
isCargoPalletised: { type: Boolean, default: false },
|
|
274
|
+
totalVolume: { type: Number },
|
|
275
|
+
chargeableCBM: { type: Number },
|
|
276
|
+
numberOfPallets: { type: Number },
|
|
277
|
+
numberOfBoxes: { type: Number },
|
|
278
|
+
destinations: [{
|
|
279
|
+
identifier: { type: String },
|
|
280
|
+
dropType: { type: String },
|
|
281
|
+
fcCode: { type: String },
|
|
282
|
+
flippedAddress: { addressLineOne: { type: String }, pinCode: { type: String } },
|
|
283
|
+
country: { type: String },
|
|
284
|
+
address: [{ addressLineOne: { type: String }, pinCode: { type: String } }],
|
|
285
|
+
shippingItems: [{ noOfBoxorPallet: { type: Number }, boxOrPallet: { type: String }, dimensions: { length: { type: Number }, breadth: { type: Number }, height: { type: Number }, unit: { type: String, enum: ['cm', 'in', 'unit'] } } }],
|
|
286
|
+
totalNumberOfBoxes: { type: Number },
|
|
287
|
+
totalNumberOfPallets: { type: Number },
|
|
288
|
+
packingListUrl: { type: String },
|
|
289
|
+
}],
|
|
290
|
+
}],
|
|
291
|
+
isPTTRequired: { type: Boolean, default: false },
|
|
292
|
+
deliveryOrderGenerator: { ...deliveryOrderGeneratorDef },
|
|
293
|
+
generateFinalDo: { type: Boolean, default: false },
|
|
294
|
+
finalDoGenratedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User' },
|
|
295
|
+
finalDoGenratedDate: { type: Date },
|
|
296
|
+
finalDoUrl: { type: String },
|
|
297
|
+
}],
|
|
298
|
+
},
|
|
299
|
+
deliverContainerToDestination: {
|
|
300
|
+
vendorId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Vendor' },
|
|
301
|
+
customerInvoiceNumber: { type: String },
|
|
302
|
+
containerLevelDetails: [{
|
|
303
|
+
preferredPullDate: { type: Date },
|
|
304
|
+
preferredAppointmentDate: { type: Date },
|
|
305
|
+
preferredAppointmentDateTimezone: { type: String },
|
|
306
|
+
preferredReturnDate: { type: Date },
|
|
307
|
+
sentInstructionToVendor: { type: Boolean },
|
|
308
|
+
sentInstructionToVendorDate: { type: Date },
|
|
309
|
+
sentInstructionToVendorBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Employee' },
|
|
310
|
+
sentInstructionToVendorTicketId: { type: String },
|
|
311
|
+
containerBookingId: { type: String },
|
|
312
|
+
appointmentId: { type: String },
|
|
313
|
+
isContainerRolledOver: { type: Boolean, default: false },
|
|
314
|
+
containerCode: { type: String },
|
|
315
|
+
terminalValidationCompleted: { type: Boolean, default: false },
|
|
316
|
+
terminalValidationCompletedDate: { type: Date },
|
|
317
|
+
terminalValidationCompletedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User' },
|
|
318
|
+
chargesReceivedAndValidated: { type: Boolean },
|
|
319
|
+
chargesReceivedAndValidatedDate: { type: Date },
|
|
320
|
+
chargesReceivedAndValidatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User' },
|
|
321
|
+
mblNumber: { type: String },
|
|
322
|
+
containerMetaDataId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'ContainerMetaData' },
|
|
323
|
+
containerIdentifier: { type: String },
|
|
324
|
+
appointmentDate: { type: Date },
|
|
325
|
+
sendDocumentsToVendor: { type: Boolean },
|
|
326
|
+
sendDocumentsToVendorDate: { type: Date },
|
|
327
|
+
dateOfArrival: { type: Date },
|
|
328
|
+
dateOfArrivalCheck: { ...vizionCheckDef },
|
|
329
|
+
lastUpdateByVizion: { type: Date },
|
|
330
|
+
sendAppointmentConfirmationToCustomer: { type: Boolean },
|
|
331
|
+
sendAppointmentConfirmationToCustomerDate: { type: Date },
|
|
332
|
+
sendAppointmentConfirmationToCustomerCount: { type: Number, default: 0 },
|
|
333
|
+
isAppointmentDateChanged: { type: Boolean, default: false },
|
|
334
|
+
customsReleased: { type: Boolean },
|
|
335
|
+
customsReleasedCheck: { ...vizionCheckDef },
|
|
336
|
+
customsReleasedUpdatedDate: { type: Date },
|
|
337
|
+
appointmentRequestedDate: { type: Date },
|
|
338
|
+
appointmentRequestedUrl: { type: String },
|
|
339
|
+
freightReleased: { type: Boolean },
|
|
340
|
+
freightReleasedCheck: { ...vizionCheckDef },
|
|
341
|
+
freightReleasedUpdatedDate: { type: Date },
|
|
342
|
+
destinationTerminal: { type: String },
|
|
343
|
+
containerDischargeDate: { type: Date },
|
|
344
|
+
containerDischargeDateCheck: { ...vizionCheckDef },
|
|
345
|
+
pickupLFD: { type: Date },
|
|
346
|
+
pickupLFDCheck: { ...vizionCheckDef },
|
|
347
|
+
actualPullDate: { type: Date },
|
|
348
|
+
actualPullDateCheck: { ...vizionCheckDef },
|
|
349
|
+
demurrageDays: { type: Number },
|
|
350
|
+
returnLFD: { type: Date },
|
|
351
|
+
returnLFDCheck: { ...vizionCheckDef },
|
|
352
|
+
containerReturnDate: { type: Date },
|
|
353
|
+
containerReturnDateCheck: { ...vizionCheckDef },
|
|
354
|
+
detentionDays: { type: Number },
|
|
355
|
+
podUploadField: { type: String },
|
|
356
|
+
podSent: { type: Boolean },
|
|
357
|
+
podSentUpdatedDate: { type: Date },
|
|
358
|
+
blRealeased: { type: Boolean },
|
|
359
|
+
containerPickupAddress: { addressLineOne: { type: String }, pinCode: { type: String } },
|
|
360
|
+
containerPickupAddressCheck: { ...vizionCheckDef },
|
|
361
|
+
blRealeasedUpdatedDate: { type: Date },
|
|
362
|
+
deliveredToConsigneeDate: { type: Date },
|
|
363
|
+
cargoReleaseNotesUrl: { type: String },
|
|
364
|
+
cargoReleaseNotesUpdatedDate: { type: Date },
|
|
365
|
+
arrivalNoticeUrl: { type: String },
|
|
366
|
+
arrivalNoticeUpdatedDate: { type: Date },
|
|
367
|
+
podRequestEmailSent: { type: Boolean },
|
|
368
|
+
podRequestEmailSentDate: { type: Date },
|
|
369
|
+
latestPodRequestEmailSentDate: { type: Date },
|
|
370
|
+
podRequestEmailSentCount: { type: Number, default: 0 },
|
|
371
|
+
podRequestZohoTicketId: { type: String },
|
|
372
|
+
podRequestAiDecision: { type: String },
|
|
373
|
+
isPodFollowUpRequired: { type: Boolean },
|
|
374
|
+
podDocUrl: { type: String },
|
|
375
|
+
podDocUpdatedDate: { type: Date },
|
|
376
|
+
cargoSegregationPlanUrl: { type: String },
|
|
377
|
+
deliveryOrderGenerator: { ...deliveryOrderGeneratorDef },
|
|
378
|
+
generateFinalDo: { type: Boolean, default: false },
|
|
379
|
+
finalDoGenratedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User' },
|
|
380
|
+
finalDoGenratedDate: { type: Date },
|
|
381
|
+
finalDoUrl: { type: String },
|
|
382
|
+
}],
|
|
383
|
+
},
|
|
26
384
|
}));
|
|
27
385
|
//# sourceMappingURL=consol-execution-history.model.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"consol-execution-history.model.js","sourceRoot":"","sources":["../../../src/schemas/consol-execution-history/consol-execution-history.model.ts"],"names":[],"mappings":";;;AAAA,uCAAkC;AAGlC,MAAM,aAAa,GAAG,IAAI,iBAAM,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,CAAC;AAEvD,QAAA,gCAAgC,GAAG,IAAI,iBAAM,CAAgC;IACxF,iBAAiB,EAAE,EAAE,IAAI,EAAE,iBAAM,CAAC,KAAK,CAAC,QAAQ,EAAE,GAAG,EAAE,iBAAiB,EAAE,QAAQ,EAAE,IAAI,EAAE;IAC1F,UAAU,EAAE,EAAE,IAAI,EAAE,iBAAM,CAAC,KAAK,CAAC,QAAQ,EAAE,GAAG,EAAE,MAAM,EAAE;IACxD,QAAQ,EAAE,EAAE,IAAI,EAAE,iBAAM,CAAC,KAAK,CAAC,QAAQ,EAAE,GAAG,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE;CAC1E,EAAE;IACD,UAAU,EAAE,IAAI;IAChB,gBAAgB,EAAE,MAAM;CACzB,CAAC,CAAC;AAEH,wCAAgC,CAAC,aAAa,CAAC,2CAA2C,EAAE,IAAI,iBAAM,CAAC;IACrG,kBAAkB,EAAE,aAAa;IACjC,4BAA4B,EAAE,aAAa;CAC5C,CAAC,CAAC,CAAC;AAEJ,wCAAgC,CAAC,aAAa,CAAC,mCAAmC,EAAE,IAAI,iBAAM,CAAC;IAC7F,gBAAgB,EAAE,aAAa;CAChC,CAAC,CAAC,CAAC;AAEJ,wCAAgC,CAAC,aAAa,CAAC,2CAA2C,EAAE,IAAI,iBAAM,CAAC;IACrG,iBAAiB,EAAE,aAAa;IAChC,OAAO,EAAE,aAAa;IACtB,0CAA0C,EAAE,aAAa;IACzD,6BAA6B,EAAE,aAAa;CAC7C,CAAC,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"consol-execution-history.model.js","sourceRoot":"","sources":["../../../src/schemas/consol-execution-history/consol-execution-history.model.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"consol-execution.model.d.ts","sourceRoot":"","sources":["../../../src/schemas/consol-executions/consol-execution.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAC;
|
|
1
|
+
{"version":3,"file":"consol-execution.model.d.ts","sourceRoot":"","sources":["../../../src/schemas/consol-executions/consol-execution.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAC;AAEtE,eAAO,MAAM,yBAAyB;;;;;;;;EAKpC,CAAC"}
|