digicust_types 1.8.153 → 1.8.155
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,6 @@
|
|
1
1
|
import { CustomsTariffNumberNormalizationSettings, DigicustDocumentType, Event, Money, PackageType, ProcedureMode, Rule, StakeholderModel } from "..";
|
2
2
|
import { Submission } from "./sftp-config.model";
|
3
|
+
import { UploadWidget } from "./uploadWidget";
|
3
4
|
/**
|
4
5
|
* Execution strategies are customer-configurable plans on how to process a specific case.
|
5
6
|
*/
|
@@ -25,6 +26,7 @@ export interface ExecutionStrategy {
|
|
25
26
|
"sftp-outbound"?: string;
|
26
27
|
};
|
27
28
|
whitelistedImportEmails?: string[];
|
29
|
+
uploadWidgets?: UploadWidget[];
|
28
30
|
mergeMultipleUploads?: boolean;
|
29
31
|
handleXLSXFileUploads?: boolean;
|
30
32
|
forceReference?: false | "invoiceNumber";
|
@@ -85,6 +87,7 @@ export interface ExecutionStrategy {
|
|
85
87
|
guaranteeValueCalculation?: "includeVAT19%" | "excludeVAT";
|
86
88
|
waybillCodePreference?: "singleCode" | "seperateCodes";
|
87
89
|
calculateLineItemWeight?: "byQuantity" | "byTotalValue";
|
90
|
+
statisticalValueRounding?: "noRounding" | "roundOff" | "roundUp" | "roundToNearest";
|
88
91
|
defaultInvoiceType?: "tax_invoice" | "proforma";
|
89
92
|
/** Between 0 and 1 */
|
90
93
|
foreignFreightCostRate?: number;
|