@colijnit/sharedcomponents 256.1.4 → 256.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/colijnit-sharedcomponents.umd.js +512 -240
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.d.ts +113 -109
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/colijnit-sharedcomponents.js +114 -110
- package/esm2015/lib/components/custom-pdf/custom-pdf-dialog.component.js +182 -0
- package/esm2015/lib/components/custom-pdf/custom-pdf-dialog.module.js +26 -0
- package/esm2015/lib/components/send-method-dialog/components/additional-file-button/additional-file-button.component.js +52 -0
- package/esm2015/lib/components/send-method-dialog/components/additional-file-button/additional-file-button.module.js +23 -0
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.js +27 -5
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.module.js +6 -2
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +17 -4
- package/esm2015/lib/enum/icon.enum.js +2 -1
- package/esm2015/lib/model/icon-svg.js +2 -1
- package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
- package/fesm2015/colijnit-sharedcomponents.js +349 -50
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/custom-pdf/custom-pdf-dialog.component.d.ts +34 -0
- package/lib/components/custom-pdf/custom-pdf-dialog.module.d.ts +2 -0
- package/lib/components/custom-pdf/style/_layout.scss +22 -0
- package/lib/components/custom-pdf/style/_material-definition.scss +0 -0
- package/lib/components/custom-pdf/style/_theme.scss +5 -0
- package/lib/components/custom-pdf/style/material.scss +4 -0
- package/lib/components/send-method-dialog/components/additional-file-button/additional-file-button.component.d.ts +18 -0
- package/lib/components/send-method-dialog/components/additional-file-button/additional-file-button.module.d.ts +2 -0
- package/lib/components/send-method-dialog/components/additional-file-button/style/_layout.scss +29 -0
- package/lib/components/send-method-dialog/components/additional-file-button/style/_material-definition.scss +8 -0
- package/lib/components/send-method-dialog/components/additional-file-button/style/_theme.scss +4 -0
- package/lib/components/send-method-dialog/components/additional-file-button/style/material.scss +4 -0
- package/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.d.ts +11 -1
- package/lib/components/send-method-dialog/send-method-dialog.component.d.ts +13 -0
- package/lib/enum/icon.enum.d.ts +1 -0
- package/lib/res/dictionary/dictionaries.d.ts +25 -0
- package/package.json +1 -1
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, OnInit } from "@angular/core";
|
|
2
|
+
import { IconCacheService } from '../../service/icon-cache.service';
|
|
3
|
+
import { DomSanitizer } from "@angular/platform-browser";
|
|
4
|
+
import SignaturePad from "signature_pad";
|
|
5
|
+
import { CoDocument } from "@colijnit/mainapi/build/model/co-document";
|
|
6
|
+
import { Icon } from '../../enum/icon.enum';
|
|
7
|
+
export declare class CustomPdfDialogComponent implements OnInit, AfterViewInit {
|
|
8
|
+
iconCacheService: IconCacheService;
|
|
9
|
+
private _sanitizer;
|
|
10
|
+
readonly icons: typeof Icon;
|
|
11
|
+
showClass(): boolean;
|
|
12
|
+
pdfBody: ElementRef;
|
|
13
|
+
additionalFileContents: any;
|
|
14
|
+
additionalFileName: string;
|
|
15
|
+
closePDFDialog: EventEmitter<any>;
|
|
16
|
+
additionalFileChangeEvent: EventEmitter<CoDocument>;
|
|
17
|
+
canvas: HTMLCanvasElement;
|
|
18
|
+
context: CanvasRenderingContext2D;
|
|
19
|
+
signature: SignaturePad;
|
|
20
|
+
signatureCanvas: ElementRef;
|
|
21
|
+
fileBody: any;
|
|
22
|
+
fileStyle: string;
|
|
23
|
+
constructor(iconCacheService: IconCacheService, _sanitizer: DomSanitizer);
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
ngAfterViewInit(): void;
|
|
26
|
+
extractStyleParts(html: string): string[];
|
|
27
|
+
removeStyleAndScriptTags(html: string): string;
|
|
28
|
+
extractBodyContents(html: string): string[];
|
|
29
|
+
handleSaveClicked(): Promise<void>;
|
|
30
|
+
dataURItoBlob(dataURI: any): File;
|
|
31
|
+
handleClear(event?: MouseEvent): void;
|
|
32
|
+
private _initCanvas;
|
|
33
|
+
private _resizeSignatureCanvas;
|
|
34
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
@include export-module('co-custom-pdf-dialog-layout') {
|
|
2
|
+
.co-custom-pdf-dialog {
|
|
3
|
+
background: #fff;
|
|
4
|
+
/* Do not change these values, the 'view' of the pdf needs to be this size or else it will not work */
|
|
5
|
+
#pdfBody {
|
|
6
|
+
background: #fff;
|
|
7
|
+
min-width: 1080px;
|
|
8
|
+
overflow-x: scroll;
|
|
9
|
+
}
|
|
10
|
+
.co-dialog {
|
|
11
|
+
.co-dialog-wrapper {
|
|
12
|
+
max-height: 95vh;
|
|
13
|
+
max-width: 1125px;
|
|
14
|
+
width: 100% !important;
|
|
15
|
+
padding: 10px;
|
|
16
|
+
background-color: #f8f8fa;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
|
|
File without changes
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { Icon } from "../../../../enum/icon.enum";
|
|
3
|
+
import { IconCacheService } from "../../../../service/icon-cache.service";
|
|
4
|
+
import { ReportingDocumentEmailSignDocBaseRequest } from "@colijnit/mainapi/build/model/reporting-document-email-sign-doc-base-request";
|
|
5
|
+
import { ReportingDocumentPrintSignDocBaseRequest } from "@colijnit/mainapi/build/model/reporting-document-print-sign-doc-base-request";
|
|
6
|
+
import { CoDocument } from "@colijnit/mainapi/build/model/co-document";
|
|
7
|
+
export declare class AdditionalFileButtonComponent {
|
|
8
|
+
iconCacheService: IconCacheService;
|
|
9
|
+
readonly icons: typeof Icon;
|
|
10
|
+
request: ReportingDocumentEmailSignDocBaseRequest | ReportingDocumentPrintSignDocBaseRequest;
|
|
11
|
+
additionalFileContents: any;
|
|
12
|
+
additionalFileName: string;
|
|
13
|
+
additionalFileChangeEvent: EventEmitter<CoDocument>;
|
|
14
|
+
showClass(): boolean;
|
|
15
|
+
show: boolean;
|
|
16
|
+
constructor(iconCacheService: IconCacheService);
|
|
17
|
+
handleToggleDialog(): void;
|
|
18
|
+
}
|
package/lib/components/send-method-dialog/components/additional-file-button/style/_layout.scss
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
@include export-module('cc-additional-file-button-layout') {
|
|
2
|
+
.co-additional-file-button {
|
|
3
|
+
.additional-file-button-wrapper {
|
|
4
|
+
height: $sc-co-signature-button-height;
|
|
5
|
+
width: $sc-co-signature-button-width;
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
background-color: $sc-co-signature-button-background-color;
|
|
10
|
+
border-radius: $sc-co-signature-button-border-radius;
|
|
11
|
+
cursor: pointer;
|
|
12
|
+
.co-icon {
|
|
13
|
+
width: $sc-co-signature-button-icon-width;
|
|
14
|
+
height: $sc-co-signature-button-icon-height;
|
|
15
|
+
}
|
|
16
|
+
&.selected {
|
|
17
|
+
background-color: $sc-co-signature-button-selected-background-color;
|
|
18
|
+
.co-icon {
|
|
19
|
+
svg { // for fontawesome icons
|
|
20
|
+
fill: $sc-co-signature-button-icon-selected-color;
|
|
21
|
+
}
|
|
22
|
+
& [fill] { // for own icons
|
|
23
|
+
fill: $sc-co-signature-button-icon-selected-color;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
$sc-co-signature-button-height: 40px !default;
|
|
2
|
+
$sc-co-signature-button-width: 40px !default;
|
|
3
|
+
$sc-co-signature-button-background-color: #f5f5fc !default;
|
|
4
|
+
$sc-co-signature-button-selected-background-color: #1A73E8 !default;
|
|
5
|
+
$sc-co-signature-button-border-radius: 5px !default;
|
|
6
|
+
$sc-co-signature-button-icon-height: 30px !default;
|
|
7
|
+
$sc-co-signature-button-icon-width: 30px !default;
|
|
8
|
+
$sc-co-signature-button-icon-selected-color: white !default;
|
|
@@ -1,13 +1,23 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
1
2
|
import { SendMethodService } from '../../service/send-method.service';
|
|
2
3
|
import { ReportLayoutSelectionPrint } from '@colijnit/mainapi/build/model/report-layout-selection-print.bo';
|
|
3
4
|
import { Printer } from '@colijnit/mainapi/build/model/printer.bo';
|
|
5
|
+
import { Icon } from "../../../../enum/icon.enum";
|
|
6
|
+
import { IconCacheService } from "../../../../service/icon-cache.service";
|
|
7
|
+
import { CoDocument } from "@colijnit/mainapi/build/model/co-document";
|
|
4
8
|
export declare class SendMethodPrinterComponent {
|
|
5
9
|
sendMethodService: SendMethodService;
|
|
10
|
+
iconCacheService: IconCacheService;
|
|
6
11
|
printerList: Printer[];
|
|
7
12
|
layouts: ReportLayoutSelectionPrint[];
|
|
8
13
|
isPrinterLayoutsEnabled: boolean;
|
|
14
|
+
isAdditionalDocEnabled: boolean;
|
|
9
15
|
showClass(): boolean;
|
|
10
|
-
|
|
16
|
+
additionalFileContents: any;
|
|
17
|
+
additionalFileName: string;
|
|
18
|
+
additionalFileChangeEvent: EventEmitter<CoDocument>;
|
|
19
|
+
constructor(sendMethodService: SendMethodService, iconCacheService: IconCacheService);
|
|
11
20
|
handleDefaultPrinterUserChange(checked: boolean): void;
|
|
12
21
|
handleDefaultPrinterAllUsersChange(checked: boolean): void;
|
|
22
|
+
protected readonly icons: typeof Icon;
|
|
13
23
|
}
|
|
@@ -11,6 +11,7 @@ import { SendMethodType } from '@colijnit/mainapi/build/enum/send-method-type.en
|
|
|
11
11
|
import { Printer } from '@colijnit/mainapi/build/model/printer.bo';
|
|
12
12
|
import { ReportingDocumentEmailSignDocBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-email-sign-doc-base-request';
|
|
13
13
|
import { ReportingDocumentPrintSignDocBaseRequest } from "@colijnit/mainapi/build/model/reporting-document-print-sign-doc-base-request";
|
|
14
|
+
import { CoDocument } from "@colijnit/mainapi/build/model/co-document";
|
|
14
15
|
export declare const sendMethodsWithIcon: SendMethod[];
|
|
15
16
|
export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
16
17
|
iconCacheService: IconCacheService;
|
|
@@ -40,12 +41,16 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
40
41
|
isDocSignEnabled: boolean;
|
|
41
42
|
docSign: boolean;
|
|
42
43
|
isPrinterLayoutsEnabled: boolean;
|
|
44
|
+
isAdditionalDocEnabled: boolean;
|
|
45
|
+
additionalFileName: string;
|
|
46
|
+
additionalFileContents: any;
|
|
43
47
|
reportingDocumentPrintRequestChange: EventEmitter<ReportingDocumentPrintSignDocBaseRequest>;
|
|
44
48
|
reportingDocumentEmailRequestChange: EventEmitter<ReportingDocumentEmailSignDocBaseRequest>;
|
|
45
49
|
reportingDocumentPdfRequestChange: EventEmitter<ReportingDocumentPdfBaseRequest>;
|
|
46
50
|
startSignatureClicked: EventEmitter<any>;
|
|
47
51
|
closeClick: EventEmitter<MouseEvent>;
|
|
48
52
|
okClick: EventEmitter<string>;
|
|
53
|
+
additionalFileChangeEvent: EventEmitter<CoDocument>;
|
|
49
54
|
showClass(): boolean;
|
|
50
55
|
sendMethods: SendMethod[];
|
|
51
56
|
activeSendMethod: SendMethod;
|
|
@@ -68,4 +73,12 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
68
73
|
private _initDefaultSendMethod;
|
|
69
74
|
private _selectDefaultSendMethod;
|
|
70
75
|
private _prepareVisibleMethods;
|
|
76
|
+
protected readonly Event: {
|
|
77
|
+
new (type: string, eventInitDict?: EventInit): Event;
|
|
78
|
+
prototype: Event;
|
|
79
|
+
readonly AT_TARGET: number;
|
|
80
|
+
readonly BUBBLING_PHASE: number;
|
|
81
|
+
readonly CAPTURING_PHASE: number;
|
|
82
|
+
readonly NONE: number;
|
|
83
|
+
};
|
|
71
84
|
}
|
package/lib/enum/icon.enum.d.ts
CHANGED
|
@@ -57,6 +57,7 @@ export declare enum Icon {
|
|
|
57
57
|
Print = "print",
|
|
58
58
|
PrintRegular = "print_regular",
|
|
59
59
|
PrintSolid = "print_solid",
|
|
60
|
+
RegularFileSignatureCirclePlus = "regular_file_signature_circle_plus",
|
|
60
61
|
SignatureField = "signature_field",
|
|
61
62
|
SquarePlusRegular = "square_plus_regular",
|
|
62
63
|
TagRegular = "tag_regular",
|
|
@@ -1818,6 +1818,7 @@ export declare class Dictionaries {
|
|
|
1818
1818
|
CATALOG_EDITION: string;
|
|
1819
1819
|
CATALOG_FILE_NAME: string;
|
|
1820
1820
|
CATALOG_MANAGEMENT: string;
|
|
1821
|
+
CATALOG_TYPES: string;
|
|
1821
1822
|
CATEGORIES: string;
|
|
1822
1823
|
CATEGORY: string;
|
|
1823
1824
|
CATEGORY_NR: string;
|
|
@@ -1953,6 +1954,7 @@ export declare class Dictionaries {
|
|
|
1953
1954
|
COLOR: string;
|
|
1954
1955
|
COLORS: string;
|
|
1955
1956
|
COLORS_SELECTED: string;
|
|
1957
|
+
COLOUR: string;
|
|
1956
1958
|
COLOR_DESC: string;
|
|
1957
1959
|
COLUMN: string;
|
|
1958
1960
|
COLUMNS: string;
|
|
@@ -2491,6 +2493,7 @@ export declare class Dictionaries {
|
|
|
2491
2493
|
ALLOWED_CHANGES: string;
|
|
2492
2494
|
ALLOW_OPEN_ABSENCEFILE: string;
|
|
2493
2495
|
ALLOW_PART_DELIVERY: string;
|
|
2496
|
+
ALLOW_PONTO_CONNECTION: string;
|
|
2494
2497
|
ALLOW_ROTATION: string;
|
|
2495
2498
|
ALLOW_SIDEBAR: string;
|
|
2496
2499
|
ALLOW_STORAGE_DECOUPLING: string;
|
|
@@ -3166,6 +3169,7 @@ export declare class Dictionaries {
|
|
|
3166
3169
|
RESERVATION_PURCHASEORDER: string;
|
|
3167
3170
|
RESERVATION_STICKER: string;
|
|
3168
3171
|
RESERVED: string;
|
|
3172
|
+
RESET: string;
|
|
3169
3173
|
RESERVE_STICKERS: string;
|
|
3170
3174
|
RESET_FILTER: string;
|
|
3171
3175
|
RESET_FILTERS: string;
|
|
@@ -3929,6 +3933,7 @@ export declare class Dictionaries {
|
|
|
3929
3933
|
LOAD_ALL_NODES: string;
|
|
3930
3934
|
LOAD_DEFAULT_REPORTS: string;
|
|
3931
3935
|
LOAD_LINES: string;
|
|
3936
|
+
LOAD_PONTO_TRANSACTIONS: string;
|
|
3932
3937
|
LOAD_TRANSACTION: string;
|
|
3933
3938
|
LOC: string;
|
|
3934
3939
|
LOCAL_CASH_DRAWER_COMM_PORT: string;
|
|
@@ -4703,6 +4708,7 @@ export declare class Dictionaries {
|
|
|
4703
4708
|
QR_CODE_SCANNER: string;
|
|
4704
4709
|
QR_SCAN: string;
|
|
4705
4710
|
QUANTITY: string;
|
|
4711
|
+
QUANTITY_ACCEPTED: string;
|
|
4706
4712
|
QUANTITY_CANNOT_BE_LESS_THAN_ALLOCATED: string;
|
|
4707
4713
|
QUANTITY_CANNOT_BE_LESS_THAN_DELIVERED: string;
|
|
4708
4714
|
QUANTITY_CANNOT_BE_LESS_THAN_INVOICED: string;
|
|
@@ -6496,6 +6502,7 @@ export declare class Dictionaries {
|
|
|
6496
6502
|
SHOW_ON_DASHBOARD: string;
|
|
6497
6503
|
SHOW_OPTION_PRICES: string;
|
|
6498
6504
|
SHOW_ORDERS_WITHOUT_LINES: string;
|
|
6505
|
+
SHOW_ORDER: string;
|
|
6499
6506
|
SHOW_OUTSTANDING_ENTRIES: string;
|
|
6500
6507
|
SHOW_POPUP: string;
|
|
6501
6508
|
SHOW_PRIVACY_PREFERENCES: string;
|
|
@@ -6503,6 +6510,7 @@ export declare class Dictionaries {
|
|
|
6503
6510
|
SHOW_RESULT: string;
|
|
6504
6511
|
SHOW_SELECTED_EXCEPTIONS_ONLY: string;
|
|
6505
6512
|
SHOW_SELECTION: string;
|
|
6513
|
+
SHOW_SERVICE: string;
|
|
6506
6514
|
SHOW_SIGNED_IN: string;
|
|
6507
6515
|
SHOW_SOME: string;
|
|
6508
6516
|
SHOW_STATUSBAR: string;
|
|
@@ -7109,6 +7117,7 @@ export declare class Dictionaries {
|
|
|
7109
7117
|
CREATE_NEW_WORK: string;
|
|
7110
7118
|
CREATE_OR_PICK_EXPORT: string;
|
|
7111
7119
|
CREATE_PAYMENT_BATCH: string;
|
|
7120
|
+
CREATE_PONTO_INTEGRATION: string;
|
|
7112
7121
|
CREATE_PREVENTIVE_ABSENCE_FILE: string;
|
|
7113
7122
|
CREATE_PURCHASE_ORDER: string;
|
|
7114
7123
|
CREATE_REFERENCE_FILE: string;
|
|
@@ -7546,6 +7555,7 @@ export declare class Dictionaries {
|
|
|
7546
7555
|
SALESORDER_ASC: string;
|
|
7547
7556
|
SALESORDER_DESC: string;
|
|
7548
7557
|
SALESORDER_DETAIL: string;
|
|
7558
|
+
SALES_TRANSACTION: string;
|
|
7549
7559
|
SALES_AMOUNT: string;
|
|
7550
7560
|
SALES_AMOUNT2: string;
|
|
7551
7561
|
SALES_AMOUNT_DECIM_NOT_COMPLIANT_W_SALES_UNIT: string;
|
|
@@ -8221,6 +8231,7 @@ export declare class Dictionaries {
|
|
|
8221
8231
|
UNTILL: string;
|
|
8222
8232
|
UPDATE_ALL_SEARCH_INDEXES: string;
|
|
8223
8233
|
UPDATE_ALL_SEARCH_INDEXES_FAST: string;
|
|
8234
|
+
UPDATE_ARTICLES: string;
|
|
8224
8235
|
UPDATE_ARTICLE_PRICE: string;
|
|
8225
8236
|
UPDATE_CONTAINER: string;
|
|
8226
8237
|
UPDATE_DATE: string;
|
|
@@ -11745,6 +11756,7 @@ export declare class Dictionaries {
|
|
|
11745
11756
|
ALLOWED_CHANGES: string;
|
|
11746
11757
|
ALLOW_OPEN_ABSENCEFILE: string;
|
|
11747
11758
|
ALLOW_PART_DELIVERY: string;
|
|
11759
|
+
ALLOW_PONTO_CONNECTION: string;
|
|
11748
11760
|
ALLOW_ROTATION: string;
|
|
11749
11761
|
ALLOW_SIDEBAR: string;
|
|
11750
11762
|
ALLOW_STORAGE_DECOUPLING: string;
|
|
@@ -12400,6 +12412,7 @@ export declare class Dictionaries {
|
|
|
12400
12412
|
CATALOG_EDITION: string;
|
|
12401
12413
|
CATALOG_FILE_NAME: string;
|
|
12402
12414
|
CATALOG_MANAGEMENT: string;
|
|
12415
|
+
CATALOG_TYPES: string;
|
|
12403
12416
|
CATEGORIES: string;
|
|
12404
12417
|
CATEGORY: string;
|
|
12405
12418
|
CATEGORY_NR: string;
|
|
@@ -12634,6 +12647,7 @@ export declare class Dictionaries {
|
|
|
12634
12647
|
COLLAPSE_ALL: string;
|
|
12635
12648
|
COLLATE_ORDERFORMS: string;
|
|
12636
12649
|
COLLECT: string;
|
|
12650
|
+
COLLECTION: string;
|
|
12637
12651
|
COLLECTION_CODE: string;
|
|
12638
12652
|
COLLECTION_CODE_CATEGORIES: string;
|
|
12639
12653
|
COLLECTION_LIST: string;
|
|
@@ -12646,6 +12660,7 @@ export declare class Dictionaries {
|
|
|
12646
12660
|
COLORS: string;
|
|
12647
12661
|
COLORS_SELECTED: string;
|
|
12648
12662
|
COLOR_DESC: string;
|
|
12663
|
+
COLOUR: string;
|
|
12649
12664
|
COLUMN: string;
|
|
12650
12665
|
COLUMNS: string;
|
|
12651
12666
|
COLUMN_BALANCE: string;
|
|
@@ -14815,6 +14830,7 @@ export declare class Dictionaries {
|
|
|
14815
14830
|
LOAD_ALL_NODES: string;
|
|
14816
14831
|
LOAD_DEFAULT_REPORTS: string;
|
|
14817
14832
|
LOAD_LINES: string;
|
|
14833
|
+
LOAD_PONTO_TRANSACTIONS: string;
|
|
14818
14834
|
LOAD_TRANSACTION: string;
|
|
14819
14835
|
LOC: string;
|
|
14820
14836
|
LOCAL_CASH_DRAWER_COMM_PORT: string;
|
|
@@ -16311,6 +16327,7 @@ export declare class Dictionaries {
|
|
|
16311
16327
|
PLAN_RESTRICTED: string;
|
|
16312
16328
|
PLAN_RESTRICT_USERS: string;
|
|
16313
16329
|
PLAN_YOUR_DELIVERY: string;
|
|
16330
|
+
PLEASE_ADD_AT_LEAST_ONE_ADDRESS: string;
|
|
16314
16331
|
PLEASE_ADJUST_SUPPLIER_ON_ARTICLE_LEVEL: string;
|
|
16315
16332
|
PLEASE_CLOSE_HTML_EDITOR: string;
|
|
16316
16333
|
PLEASE_CLOSE_MODULE_AND_TRY_AGAIN: string;
|
|
@@ -16757,6 +16774,7 @@ export declare class Dictionaries {
|
|
|
16757
16774
|
QR_CODE_SCANNER: string;
|
|
16758
16775
|
QR_SCAN: string;
|
|
16759
16776
|
QUANTITY: string;
|
|
16777
|
+
QUANTITY_ACCEPTED: string;
|
|
16760
16778
|
QUANTITY_CANNOT_BE_LESS_THAN_ALLOCATED: string;
|
|
16761
16779
|
QUANTITY_CANNOT_BE_LESS_THAN_DELIVERED: string;
|
|
16762
16780
|
QUANTITY_CANNOT_BE_LESS_THAN_INVOICED: string;
|
|
@@ -17077,6 +17095,7 @@ export declare class Dictionaries {
|
|
|
17077
17095
|
RESERVATION_PURCHASEORDER: string;
|
|
17078
17096
|
RESERVATION_STICKER: string;
|
|
17079
17097
|
RESERVED: string;
|
|
17098
|
+
RESET: string;
|
|
17080
17099
|
RESET_FILTER: string;
|
|
17081
17100
|
RESET_FILTERS: string;
|
|
17082
17101
|
RESET_GOOGLE_AUTHENTICATOR: string;
|
|
@@ -17237,6 +17256,7 @@ export declare class Dictionaries {
|
|
|
17237
17256
|
SALESORDER_ASC: string;
|
|
17238
17257
|
SALESORDER_DESC: string;
|
|
17239
17258
|
SALESORDER_DETAIL: string;
|
|
17259
|
+
SALES_TRANSACTION: string;
|
|
17240
17260
|
SALES_AMOUNT2: string;
|
|
17241
17261
|
SALES_AMOUNT: string;
|
|
17242
17262
|
SALES_AMOUNT_DECIM_NOT_COMPLIANT_W_SALES_UNIT: string;
|
|
@@ -17361,6 +17381,7 @@ export declare class Dictionaries {
|
|
|
17361
17381
|
SEARCH_MEMBER_NR: string;
|
|
17362
17382
|
SEARCH_PAYMENT_BATCH: string;
|
|
17363
17383
|
CREATE_PAYMENT_BATCH: string;
|
|
17384
|
+
CREATE_PONTO_INTEGRATION: string;
|
|
17364
17385
|
SEARCHING: string;
|
|
17365
17386
|
SEARCHRESULTS_FOR: string;
|
|
17366
17387
|
SEARCH_ADD_ARTICLE: string;
|
|
@@ -17726,6 +17747,7 @@ export declare class Dictionaries {
|
|
|
17726
17747
|
SHOW_LIST: string;
|
|
17727
17748
|
SHOW_MORE: string;
|
|
17728
17749
|
SHOW_ON_DASHBOARD: string;
|
|
17750
|
+
SHOW_ORDER: string;
|
|
17729
17751
|
SHOW_OPTION_PRICES: string;
|
|
17730
17752
|
SHOW_ORDERS_WITHOUT_LINES: string;
|
|
17731
17753
|
SHOW_OUTSTANDING_ENTRIES: string;
|
|
@@ -17735,6 +17757,7 @@ export declare class Dictionaries {
|
|
|
17735
17757
|
SHOW_RESULT: string;
|
|
17736
17758
|
SHOW_SELECTED_EXCEPTIONS_ONLY: string;
|
|
17737
17759
|
SHOW_SELECTION: string;
|
|
17760
|
+
SHOW_SERVICE: string;
|
|
17738
17761
|
SHOW_SIGNED_IN: string;
|
|
17739
17762
|
SHOW_SOME: string;
|
|
17740
17763
|
SHOW_STATUSBAR: string;
|
|
@@ -18506,6 +18529,7 @@ export declare class Dictionaries {
|
|
|
18506
18529
|
UNTILL: string;
|
|
18507
18530
|
UPDATE_ALL_SEARCH_INDEXES: string;
|
|
18508
18531
|
UPDATE_ALL_SEARCH_INDEXES_FAST: string;
|
|
18532
|
+
UPDATE_ARTICLES: string;
|
|
18509
18533
|
UPDATE_ARTICLE_PRICE: string;
|
|
18510
18534
|
UPDATE_CONTAINER: string;
|
|
18511
18535
|
UPDATE_DATE: string;
|
|
@@ -18559,6 +18583,7 @@ export declare class Dictionaries {
|
|
|
18559
18583
|
USE_TIME_FROM_TIMER: string;
|
|
18560
18584
|
USE_VALUES: string;
|
|
18561
18585
|
USE_WEBVIEW_UI: string;
|
|
18586
|
+
USE_CATALOG_PAGE: string;
|
|
18562
18587
|
UWV_REGISTRATION_NUMBER: string;
|
|
18563
18588
|
VADAIN_DELETE_QUESTION: string;
|
|
18564
18589
|
VADAIN_NOT_ALLOWED_TO_DELETE: string;
|