digicust_types 1.8.38 → 1.8.40
Sign up to get free protection for your applications and to get access to all the features.
@@ -79,6 +79,7 @@ export interface ExecutionStrategy {
|
|
79
79
|
calculateLineItemWeight?: "byQuantity" | "byTotalValue";
|
80
80
|
/** Between 0 and 1 */
|
81
81
|
foreignFreightCostRate?: number;
|
82
|
+
ignoreLineItemsFromInvoice?: boolean;
|
82
83
|
useQuantityAsPackageCount?: boolean;
|
83
84
|
enforcePackageType?: PackageType;
|
84
85
|
preferWeightFromHead?: boolean;
|
@@ -20,4 +20,5 @@ export interface CustomsTariffNumberNormalizationSettings {
|
|
20
20
|
/** With german tariff numbers, this usually means EZT=description and zolltarifnummern.de=altDescription */
|
21
21
|
itemDescriptionSource?: "description" | "altDescription";
|
22
22
|
hideOriginalItemDescription?: boolean;
|
23
|
+
preferMasterDataDescription?: boolean;
|
23
24
|
}
|