digicust_types 1.8.348 → 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
|
*/
|
@@ -407,10 +411,9 @@ export interface ExecutionStrategy {
|
|
407
411
|
*/
|
408
412
|
maxHistoryEntries?: number;
|
409
413
|
/**
|
410
|
-
* If true,
|
411
|
-
* Default: false
|
414
|
+
* If true, recipients will be tracked in the history with NO limit(!). Needs to be true for useRecipientOrImporter to work for matching
|
412
415
|
*/
|
413
|
-
|
416
|
+
trackRecipients?: boolean;
|
414
417
|
/**
|
415
418
|
* Controls which historical data should be tracked
|
416
419
|
*/
|
@@ -423,32 +426,16 @@ export interface ExecutionStrategy {
|
|
423
426
|
* Track price changes over time with associated quantity info
|
424
427
|
*/
|
425
428
|
prices?: boolean;
|
426
|
-
/**
|
427
|
-
* Controls recipient tracking behavior
|
428
|
-
*/
|
429
|
-
recipients?: {
|
430
|
-
/**
|
431
|
-
* If true, new recipients will be added to the list
|
432
|
-
* If false, recipient list will not be updated
|
433
|
-
* Default: true
|
434
|
-
*/
|
435
|
-
trackNewRecipients?: boolean;
|
436
|
-
/**
|
437
|
-
* Maximum number of recipients to track
|
438
|
-
* Default: no limit
|
439
|
-
*/
|
440
|
-
maxRecipients?: number;
|
441
|
-
};
|
442
429
|
};
|
430
|
+
};
|
431
|
+
/**
|
432
|
+
* Controls document code integration from different sources.
|
433
|
+
*/
|
434
|
+
documentCodeIntegration?: {
|
443
435
|
/**
|
444
|
-
*
|
436
|
+
* Allowed sources for document code derivation
|
445
437
|
*/
|
446
|
-
|
447
|
-
/**
|
448
|
-
* Allowed sources for document code derivation
|
449
|
-
*/
|
450
|
-
allowedSources?: DocumentCodeSource[];
|
451
|
-
};
|
438
|
+
allowedSources?: DocumentCodeSource[];
|
452
439
|
};
|
453
440
|
/**
|
454
441
|
* Controls how additional material properties are handled
|
@@ -471,30 +458,15 @@ export interface ExecutionStrategy {
|
|
471
458
|
*/
|
472
459
|
updateUnitOfMeasurement?: boolean;
|
473
460
|
/**
|
474
|
-
*
|
461
|
+
* If true, net weights from items will update material net weight
|
462
|
+
* Default: true
|
475
463
|
*/
|
476
|
-
|
477
|
-
/**
|
478
|
-
* If true, net weights from items will update material net weight
|
479
|
-
* Default: true
|
480
|
-
*/
|
481
|
-
updateNetWeight?: boolean;
|
482
|
-
/**
|
483
|
-
* If true, gross weights from items will update material gross weight
|
484
|
-
* Default: true
|
485
|
-
*/
|
486
|
-
updateGrossWeight?: boolean;
|
487
|
-
};
|
488
|
-
};
|
489
|
-
/**
|
490
|
-
* Quality requirements for material master data
|
491
|
-
*/
|
492
|
-
materialQualityRequirements?: {
|
464
|
+
updateNetWeight?: boolean;
|
493
465
|
/**
|
494
|
-
*
|
495
|
-
*
|
466
|
+
* If true, gross weights from items will update material gross weight
|
467
|
+
* Default: true
|
496
468
|
*/
|
497
|
-
|
469
|
+
updateGrossWeight?: boolean;
|
498
470
|
};
|
499
471
|
};
|
500
472
|
};
|