digicust_types 1.8.42 → 1.8.44
Sign up to get free protection for your applications and to get access to all the features.
@@ -26,6 +26,7 @@ export interface ExecutionStrategy {
|
|
26
26
|
};
|
27
27
|
whitelistedImportEmails?: string[];
|
28
28
|
mergeMultipleUploads?: boolean;
|
29
|
+
handleXLSXFileUploads?: "AsLineItemTable" | false;
|
29
30
|
defaultClassification?: DigicustDocumentType;
|
30
31
|
defaultProcedureMode?: ProcedureMode;
|
31
32
|
dataExtraction?: {
|
@@ -60,7 +61,7 @@ export interface ExecutionStrategy {
|
|
60
61
|
dataNormalization?: {
|
61
62
|
active?: boolean;
|
62
63
|
/** Determines how to deal with additional costs like shipping costs, packing, ... */
|
63
|
-
additionalCostsStrategy?: "addToFirstItem" | "splitToAllItems";
|
64
|
+
additionalCostsStrategy?: "addToFirstItem" | "splitToAllItems" | "splitToAllItemsByNetWeight" | "splitToAllItemsByTotalValue";
|
64
65
|
allowDateInOrderNumber?: boolean;
|
65
66
|
eliminateArticleNumberFromDescription?: boolean;
|
66
67
|
/** Determines whether or not data from incoming emails are extracted and normalized.
|