digicust_types 1.8.349 → 1.8.350
Sign up to get free protection for your applications and to get access to all the features.
@@ -398,6 +398,10 @@ export interface ExecutionStrategy {
|
|
398
398
|
* If update mode is active, the descriptions will be replaced on each update (except if the new description is empty)
|
399
399
|
*/
|
400
400
|
persistItemDescriptions?: boolean;
|
401
|
+
/**
|
402
|
+
* This is always persisted for tariff number based master data, but needs to be explicitly enabled for material based master data
|
403
|
+
*/
|
404
|
+
persistCustomsTariffNumbersForMaterialBasedMasterData?: boolean;
|
401
405
|
/**
|
402
406
|
* Controls how history data is configured and managed
|
403
407
|
*/
|
@@ -406,11 +410,6 @@ export interface ExecutionStrategy {
|
|
406
410
|
* Maximum number of entries to keep in each history. Default: 10
|
407
411
|
*/
|
408
412
|
maxHistoryEntries?: number;
|
409
|
-
/**
|
410
|
-
* If true, identical consecutive entries will be merged to save space
|
411
|
-
* Default: false
|
412
|
-
*/
|
413
|
-
mergeIdenticalEntries?: boolean;
|
414
413
|
/**
|
415
414
|
* If true, recipients will be tracked in the history with NO limit(!). Needs to be true for useRecipientOrImporter to work for matching
|
416
415
|
*/
|
@@ -428,15 +427,15 @@ export interface ExecutionStrategy {
|
|
428
427
|
*/
|
429
428
|
prices?: boolean;
|
430
429
|
};
|
430
|
+
};
|
431
|
+
/**
|
432
|
+
* Controls document code integration from different sources.
|
433
|
+
*/
|
434
|
+
documentCodeIntegration?: {
|
431
435
|
/**
|
432
|
-
*
|
436
|
+
* Allowed sources for document code derivation
|
433
437
|
*/
|
434
|
-
|
435
|
-
/**
|
436
|
-
* Allowed sources for document code derivation
|
437
|
-
*/
|
438
|
-
allowedSources?: DocumentCodeSource[];
|
439
|
-
};
|
438
|
+
allowedSources?: DocumentCodeSource[];
|
440
439
|
};
|
441
440
|
/**
|
442
441
|
* Controls how additional material properties are handled
|
@@ -459,30 +458,15 @@ export interface ExecutionStrategy {
|
|
459
458
|
*/
|
460
459
|
updateUnitOfMeasurement?: boolean;
|
461
460
|
/**
|
462
|
-
*
|
461
|
+
* If true, net weights from items will update material net weight
|
462
|
+
* Default: true
|
463
463
|
*/
|
464
|
-
|
465
|
-
/**
|
466
|
-
* If true, net weights from items will update material net weight
|
467
|
-
* Default: true
|
468
|
-
*/
|
469
|
-
updateNetWeight?: boolean;
|
470
|
-
/**
|
471
|
-
* If true, gross weights from items will update material gross weight
|
472
|
-
* Default: true
|
473
|
-
*/
|
474
|
-
updateGrossWeight?: boolean;
|
475
|
-
};
|
476
|
-
};
|
477
|
-
/**
|
478
|
-
* Quality requirements for material master data
|
479
|
-
*/
|
480
|
-
materialQualityRequirements?: {
|
464
|
+
updateNetWeight?: boolean;
|
481
465
|
/**
|
482
|
-
*
|
483
|
-
*
|
466
|
+
* If true, gross weights from items will update material gross weight
|
467
|
+
* Default: true
|
484
468
|
*/
|
485
|
-
|
469
|
+
updateGrossWeight?: boolean;
|
486
470
|
};
|
487
471
|
};
|
488
472
|
};
|