digicust_types 1.8.68 → 1.8.70
Sign up to get free protection for your applications and to get access to all the features.
@@ -83,10 +83,16 @@ export interface ExecutionStrategy {
|
|
83
83
|
defaultInvoiceType?: "tax_invoice" | "proforma";
|
84
84
|
/** Between 0 and 1 */
|
85
85
|
foreignFreightCostRate?: number;
|
86
|
+
freightCostCalculation?: {
|
87
|
+
active?: boolean;
|
88
|
+
strategy?: "default" | "austriaWeightDependent";
|
89
|
+
priority: "fallback" | "override";
|
90
|
+
};
|
86
91
|
ignoreLineItemsFromInvoice?: boolean;
|
87
92
|
useQuantityAsPackageCount?: boolean;
|
88
93
|
enforcePackageType?: PackageType;
|
89
94
|
preferWeightFromHead?: boolean;
|
95
|
+
lineItemGrossWeightStrategy?: "default" | "forceToFirstLineItem";
|
90
96
|
};
|
91
97
|
dataValidation?: {
|
92
98
|
active?: boolean;
|