digicust_types 1.8.304 → 1.8.306
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,4 @@
|
|
1
|
+
import { CompanyModel } from "../../company";
|
1
2
|
import { Meta } from "../../meta";
|
2
3
|
import { MeanOfTransportation, PackageType } from "../../transportation";
|
3
4
|
import { DigicustDocumentModel } from "./digicust-document.model";
|
@@ -8,4 +9,5 @@ export interface ExportList extends DigicustDocumentModel {
|
|
8
9
|
numberOfShipments?: Meta<number>;
|
9
10
|
meansOfTransportation?: MeanOfTransportation[];
|
10
11
|
typeOfPackage?: PackageType;
|
12
|
+
consignee?: CompanyModel;
|
11
13
|
}
|
@@ -114,7 +114,7 @@ export interface ExecutionStrategy {
|
|
114
114
|
customsTariffNumberNormalizationSettings?: CustomsTariffNumberNormalizationSettings;
|
115
115
|
guaranteeValueStrategy?: "headerFromInvoices" | "headerFromInvoiceHeader" | "lineItems" | "fromGlobalHead";
|
116
116
|
guaranteeValueCalculation?: "includeVAT19%" | "excludeVAT";
|
117
|
-
guaranteeValueCalculationStrategy?: "default" | "assume25%";
|
117
|
+
guaranteeValueCalculationStrategy?: "default" | "assume25%" | "assume26%";
|
118
118
|
waybillCodePreference?: "singleCode" | "seperateCodes";
|
119
119
|
calculateLineItemWeight?: "byQuantity" | "byTotalValue";
|
120
120
|
calculateWeight?: {
|