digicust_types 1.8.343 → 1.8.344
Sign up to get free protection for your applications and to get access to all the features.
@@ -300,6 +300,45 @@ export interface ExecutionStrategy {
|
|
300
300
|
* @deprecated
|
301
301
|
*/
|
302
302
|
disableAutomaticMaterialCreation?: boolean;
|
303
|
+
defaultLicensePlate?: "german" | false;
|
304
|
+
/**
|
305
|
+
* When set to true, line item descriptions will be omitted from the final goods description (if possible, if no other description is available it will be used).
|
306
|
+
*/
|
307
|
+
omitLineItemDescription?: boolean;
|
308
|
+
emailSenderAsRepresentativeEmail?: boolean;
|
309
|
+
};
|
310
|
+
dataValidation?: {
|
311
|
+
active?: boolean;
|
312
|
+
fraudDetection?: boolean;
|
313
|
+
};
|
314
|
+
hsClassification?: {
|
315
|
+
active?: boolean;
|
316
|
+
research?: boolean;
|
317
|
+
};
|
318
|
+
/** @deprecated */
|
319
|
+
dakosySubmission?: {
|
320
|
+
active?: boolean;
|
321
|
+
};
|
322
|
+
dataIntegration?: {
|
323
|
+
active?: boolean;
|
324
|
+
requireUserInput?: "false" | "true" | "masterDataOrUserInput";
|
325
|
+
createNewCustomsCaseForEveryXItems?: {
|
326
|
+
active?: boolean;
|
327
|
+
threshold?: number;
|
328
|
+
aggregated?: boolean;
|
329
|
+
};
|
330
|
+
createNewCustomsCaseForInvoice?: {
|
331
|
+
active?: boolean;
|
332
|
+
};
|
333
|
+
createNewCustomsCasesAsMentionedInEmail?: {
|
334
|
+
active?: boolean;
|
335
|
+
};
|
336
|
+
createNewCustomsCasesPerRecipient?: {
|
337
|
+
active?: boolean;
|
338
|
+
};
|
339
|
+
createNewCustomsCasesPerWaybillContainer?: {
|
340
|
+
active?: boolean;
|
341
|
+
};
|
303
342
|
/**
|
304
343
|
* Controls master data integration automation settings
|
305
344
|
*/
|
@@ -355,54 +394,17 @@ export interface ExecutionStrategy {
|
|
355
394
|
*/
|
356
395
|
materialIntegrationOptions?: {
|
357
396
|
/**
|
358
|
-
* If any negative codings were automatically added to the shipment item, they will be
|
397
|
+
* If any negative codings were automatically added to the shipment item, they will be created or added to the master data.
|
398
|
+
* If update mode is active, the arrays of negative codings will be merged.
|
359
399
|
*/
|
360
400
|
persistNegativeCodings?: boolean;
|
361
401
|
/**
|
362
402
|
* If any descriptions were found in the shipment item, they will be persisted in the master data
|
403
|
+
* If update mode is active, the descriptions will be replaced on each update (except if the new description is empty)
|
363
404
|
*/
|
364
405
|
persistItemDescriptions?: boolean;
|
365
406
|
};
|
366
407
|
};
|
367
|
-
defaultLicensePlate?: "german" | false;
|
368
|
-
/**
|
369
|
-
* When set to true, line item descriptions will be omitted from the final goods description (if possible, if no other description is available it will be used).
|
370
|
-
*/
|
371
|
-
omitLineItemDescription?: boolean;
|
372
|
-
emailSenderAsRepresentativeEmail?: boolean;
|
373
|
-
};
|
374
|
-
dataValidation?: {
|
375
|
-
active?: boolean;
|
376
|
-
fraudDetection?: boolean;
|
377
|
-
};
|
378
|
-
hsClassification?: {
|
379
|
-
active?: boolean;
|
380
|
-
research?: boolean;
|
381
|
-
};
|
382
|
-
/** @deprecated */
|
383
|
-
dakosySubmission?: {
|
384
|
-
active?: boolean;
|
385
|
-
};
|
386
|
-
dataIntegration?: {
|
387
|
-
active?: boolean;
|
388
|
-
requireUserInput?: "false" | "true" | "masterDataOrUserInput";
|
389
|
-
createNewCustomsCaseForEveryXItems?: {
|
390
|
-
active?: boolean;
|
391
|
-
threshold?: number;
|
392
|
-
aggregated?: boolean;
|
393
|
-
};
|
394
|
-
createNewCustomsCaseForInvoice?: {
|
395
|
-
active?: boolean;
|
396
|
-
};
|
397
|
-
createNewCustomsCasesAsMentionedInEmail?: {
|
398
|
-
active?: boolean;
|
399
|
-
};
|
400
|
-
createNewCustomsCasesPerRecipient?: {
|
401
|
-
active?: boolean;
|
402
|
-
};
|
403
|
-
createNewCustomsCasesPerWaybillContainer?: {
|
404
|
-
active?: boolean;
|
405
|
-
};
|
406
408
|
};
|
407
409
|
matchingEngine?: {
|
408
410
|
materialMatching?: {
|