@colijnit/sharedcomponents 257.1.16 → 257.1.18
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 +43 -19
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/send-method-dialog/components/layout-selection/layout-selection.component.js +1 -1
- package/esm2015/lib/components/send-method-dialog/components/printer-selection/printer-selection.component.js +11 -4
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.js +3 -3
- package/esm2015/lib/components/send-method-dialog/components/send-method-purchase/send-method-purchase.component.js +4 -4
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +4 -4
- package/esm2015/lib/components/stock/components/order-tab/order-tab.component.js +44 -6
- package/esm2015/lib/components/stock/stock-tabs/stock-tabs.component.js +5 -2
- package/esm2015/lib/components/stock/stock.component.js +4 -1
- package/esm2015/lib/res/dictionary/dictionaries.js +5 -5
- package/fesm2015/colijnit-sharedcomponents.js +72 -21
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/send-method-dialog/components/printer-selection/printer-selection.component.d.ts +2 -1
- package/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.d.ts +1 -1
- package/lib/components/send-method-dialog/components/send-method-purchase/send-method-purchase.component.d.ts +1 -1
- package/lib/components/send-method-dialog/send-method-dialog.component.d.ts +1 -1
- package/lib/components/stock/components/order-tab/order-tab.component.d.ts +3 -0
- package/lib/components/stock/stock-tabs/stock-tabs.component.d.ts +1 -0
- package/lib/components/stock/stock.component.d.ts +1 -0
- package/lib/components/stock/style/_layout.scss +37 -1
- package/lib/res/dictionary/dictionaries.d.ts +86 -0
- package/package.json +1 -1
|
@@ -9,8 +9,9 @@ export declare class PrinterSelectionComponent implements OnInit {
|
|
|
9
9
|
iconService: IconCacheService;
|
|
10
10
|
private _service;
|
|
11
11
|
readonly icons: typeof Icon;
|
|
12
|
+
private _defaultPrinter;
|
|
12
13
|
printers: Printer[];
|
|
13
|
-
|
|
14
|
+
set defaultPrinter(printer: Printer);
|
|
14
15
|
showClass(): boolean;
|
|
15
16
|
showPrinterList: boolean;
|
|
16
17
|
printerModel: Printer;
|
|
@@ -10,7 +10,7 @@ export declare class SendMethodPrinterComponent {
|
|
|
10
10
|
iconCacheService: IconCacheService;
|
|
11
11
|
showClass(): boolean;
|
|
12
12
|
printerList: Printer[];
|
|
13
|
-
|
|
13
|
+
defaultPrinter: Printer;
|
|
14
14
|
layouts: ReportLayoutSelectionPrint[];
|
|
15
15
|
isPrinterLayoutsEnabled: boolean;
|
|
16
16
|
isAdditionalDocEnabled: boolean;
|
|
@@ -9,7 +9,7 @@ interface OverruleOptions {
|
|
|
9
9
|
}
|
|
10
10
|
export declare class SendMethodPurchaseComponent implements OnInit {
|
|
11
11
|
sendMethodService: SendMethodService;
|
|
12
|
-
|
|
12
|
+
defaultPrinter: Printer;
|
|
13
13
|
emailLayouts: ReportLayoutSelectionEmail[];
|
|
14
14
|
printLayouts: ReportLayoutSelectionPrint[];
|
|
15
15
|
printerList: Printer[];
|
|
@@ -32,7 +32,7 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
32
32
|
reportingDocumentPdfRequest: ReportingDocumentPdfBaseRequest;
|
|
33
33
|
emailLayouts: ReportLayoutSelectionEmail[];
|
|
34
34
|
printLayouts: ReportLayoutSelectionPrint[];
|
|
35
|
-
|
|
35
|
+
defaultPrinter: Printer;
|
|
36
36
|
headerTitle: string;
|
|
37
37
|
emailAddresses: string[];
|
|
38
38
|
defaultSendMethod: string;
|
|
@@ -22,6 +22,7 @@ export declare class OrderTabComponent extends BaseStockComponent {
|
|
|
22
22
|
readonly sendMethodDialogClicked: EventEmitter<PrintPriceStickers>;
|
|
23
23
|
handleStickerClicked: EventEmitter<any>;
|
|
24
24
|
showStockTransferChange: EventEmitter<boolean>;
|
|
25
|
+
handleTransactionClick: EventEmitter<any>;
|
|
25
26
|
data: ArticleTransactionBo[];
|
|
26
27
|
selectedRow: ArticleDetailsBo | null;
|
|
27
28
|
articleDetails: ArticleDetailsBo;
|
|
@@ -32,4 +33,6 @@ export declare class OrderTabComponent extends BaseStockComponent {
|
|
|
32
33
|
onRowSelected(row: ArticleDetailsBo): void;
|
|
33
34
|
onShowStockTransferChange(show: boolean): void;
|
|
34
35
|
protected getData(): Promise<void>;
|
|
36
|
+
handleTransactionNavigationClick(event: Event, transNr: string): void;
|
|
37
|
+
handleTransactionNavigation(transNr: string): void;
|
|
35
38
|
}
|
|
@@ -20,6 +20,7 @@ export declare class StockTabsComponent implements OnInit {
|
|
|
20
20
|
warehouses: StockManagementWarehouses[];
|
|
21
21
|
readonly transferIconClicked: EventEmitter<ArticleStockBo>;
|
|
22
22
|
readonly sendMethodDialogClicked: EventEmitter<PrintPriceStickers>;
|
|
23
|
+
handleTransactionClick: EventEmitter<any>;
|
|
23
24
|
selectedWarehouse: StockManagementWarehouses;
|
|
24
25
|
tabs: Tab[];
|
|
25
26
|
historyTabs: Tab[];
|
|
@@ -29,6 +29,7 @@ export declare class StockComponent implements OnDestroy, OnInit {
|
|
|
29
29
|
readonly okButtonClicked: EventEmitter<any>;
|
|
30
30
|
readonly cancelButtonClicked: EventEmitter<any>;
|
|
31
31
|
handleClick: EventEmitter<any>;
|
|
32
|
+
handleTransactionClick: EventEmitter<any>;
|
|
32
33
|
updateGridData: EventEmitter<ArticleDetailsBo[]>;
|
|
33
34
|
showClass(): boolean;
|
|
34
35
|
loaded: boolean;
|
|
@@ -536,6 +536,11 @@
|
|
|
536
536
|
position: relative;
|
|
537
537
|
.simple-grid-column-header {
|
|
538
538
|
border-width: 0;
|
|
539
|
+
.simple-grid-column-header-wrapper {
|
|
540
|
+
.simple-grid-column-header-label {
|
|
541
|
+
font-size: 10px;
|
|
542
|
+
}
|
|
543
|
+
}
|
|
539
544
|
&:hover {
|
|
540
545
|
.simple-grid-column-header-wrapper {
|
|
541
546
|
position: unset;
|
|
@@ -582,9 +587,40 @@
|
|
|
582
587
|
border-radius: 0;
|
|
583
588
|
padding: 5px 10px;
|
|
584
589
|
border-color: #DCE4EA;
|
|
590
|
+
gap: 5px;
|
|
591
|
+
.double-data {
|
|
592
|
+
display: flex;
|
|
593
|
+
flex-direction: row;
|
|
594
|
+
align-items: center;
|
|
595
|
+
gap: 5px;
|
|
596
|
+
&.link {
|
|
597
|
+
gap: 10px;
|
|
598
|
+
cursor: pointer;
|
|
599
|
+
span {
|
|
600
|
+
color: #1A73E8;
|
|
601
|
+
}
|
|
602
|
+
.co-icon {
|
|
603
|
+
svg [fill] {
|
|
604
|
+
fill: #1A73E8;
|
|
605
|
+
}
|
|
606
|
+
}
|
|
607
|
+
}
|
|
608
|
+
.co-icon {
|
|
609
|
+
width: 16px;
|
|
610
|
+
height: 16px;
|
|
611
|
+
}
|
|
612
|
+
span {
|
|
613
|
+
display: -webkit-box;
|
|
614
|
+
-webkit-line-clamp: 1;
|
|
615
|
+
-webkit-box-orient: vertical;
|
|
616
|
+
overflow: hidden;
|
|
617
|
+
text-overflow: ellipsis;
|
|
618
|
+
min-width: 8px;
|
|
619
|
+
}
|
|
620
|
+
}
|
|
585
621
|
}
|
|
586
622
|
.simple-grid-column-header-label {
|
|
587
|
-
border-width: 0
|
|
623
|
+
border-width: 0;
|
|
588
624
|
}
|
|
589
625
|
.co-simple-grid-cell {
|
|
590
626
|
.menu-icon {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare class Dictionaries {
|
|
2
2
|
text_de: {
|
|
3
|
+
ADDRESS_ADD: string;
|
|
3
4
|
CHAPTER: string;
|
|
4
5
|
CHARACTERISTIC: string;
|
|
5
6
|
CHARACTERISTICS: string;
|
|
@@ -918,6 +919,7 @@ export declare class Dictionaries {
|
|
|
918
919
|
SCHEDULE: string;
|
|
919
920
|
SCHEMA: string;
|
|
920
921
|
SCHEMA_NAME: string;
|
|
922
|
+
SHOW_ORDER: string;
|
|
921
923
|
SCORING_OPPORTUNITY_PERC: string;
|
|
922
924
|
SCREEN: string;
|
|
923
925
|
SEARCH: string;
|
|
@@ -958,6 +960,8 @@ export declare class Dictionaries {
|
|
|
958
960
|
MESSAGE_SAVE_CHANGES: string;
|
|
959
961
|
MESSAGE_SAVE_CHANGES_TITLE: string;
|
|
960
962
|
MESSAGE_STARTUP_VALIDATIONS_WARNING: string;
|
|
963
|
+
NO_IMAGE: string;
|
|
964
|
+
EXPECTED_DELIVERY_WEEK: string;
|
|
961
965
|
SEARCH_ARTICLES: string;
|
|
962
966
|
SEARCH_CATALOGUE: string;
|
|
963
967
|
SEARCH_CONTACTS: string;
|
|
@@ -1404,6 +1408,7 @@ export declare class Dictionaries {
|
|
|
1404
1408
|
TOTAL_PRICE_CONFIG: string;
|
|
1405
1409
|
TOTAL_PRICE_CONFIG2: string;
|
|
1406
1410
|
TOTAL_QUANTITY: string;
|
|
1411
|
+
QUANTITY: string;
|
|
1407
1412
|
TO_ACCEPT: string;
|
|
1408
1413
|
TO_BE_PLANNED: string;
|
|
1409
1414
|
TO_BE_USED: string;
|
|
@@ -1577,6 +1582,9 @@ export declare class Dictionaries {
|
|
|
1577
1582
|
ORDER_INFO: string;
|
|
1578
1583
|
ORDER_KIND: string;
|
|
1579
1584
|
PRODUCT_OPEN_ACTIVITIES: string;
|
|
1585
|
+
PASSWORD_FORGOTTEN_TEXT: string;
|
|
1586
|
+
PASSWORD_FORGOTTEN_TEXT_EXTRA: string;
|
|
1587
|
+
TOTAL_GROSS: string;
|
|
1580
1588
|
};
|
|
1581
1589
|
text_en: {
|
|
1582
1590
|
"0_RESULTS_FOUND": string;
|
|
@@ -1710,6 +1718,11 @@ export declare class Dictionaries {
|
|
|
1710
1718
|
BUILD_SELF: string;
|
|
1711
1719
|
BULK: string;
|
|
1712
1720
|
BULKLOCATION: string;
|
|
1721
|
+
BULK_3D_UPLOAD: string;
|
|
1722
|
+
BULK_3D_REF: string;
|
|
1723
|
+
BULK_3D_REF_DESC: string;
|
|
1724
|
+
BULK_3D_ZIP: string;
|
|
1725
|
+
BULK_3D_ZIP_DESC: string;
|
|
1713
1726
|
BUSINESS_ADDRESS: string;
|
|
1714
1727
|
BUSINESS_ADDRESS_ADDITION: string;
|
|
1715
1728
|
BUSINESS_ADDRESS_ADDITION_NUMBER: string;
|
|
@@ -1988,6 +2001,7 @@ export declare class Dictionaries {
|
|
|
1988
2001
|
CONFIGURATION_NOT_FINISHED_YET: string;
|
|
1989
2002
|
CONFIGURATION_OVERVIEW: string;
|
|
1990
2003
|
CONFIGURATION_YOURS: string;
|
|
2004
|
+
CONFIGURATION_LIBRARY: string;
|
|
1991
2005
|
CONFIGURATOR_TEST: string;
|
|
1992
2006
|
CONFIGURE: string;
|
|
1993
2007
|
CONFIGURE_ARTICLE: string;
|
|
@@ -3500,6 +3514,7 @@ export declare class Dictionaries {
|
|
|
3500
3514
|
PRICE_TAG_IMAGE: string;
|
|
3501
3515
|
PRICE_TAG_INTER_BRANCH: string;
|
|
3502
3516
|
PRICE_TAG_STICKERS: string;
|
|
3517
|
+
PRINT_PRICE_TAG_STICKERS: string;
|
|
3503
3518
|
PRICE_TAG_TEXT: string;
|
|
3504
3519
|
PRICE_TESTER: string;
|
|
3505
3520
|
PRICE_TO: string;
|
|
@@ -3889,6 +3904,7 @@ export declare class Dictionaries {
|
|
|
3889
3904
|
INVOICE_AMOUNT_CUSTOMER: string;
|
|
3890
3905
|
INVOICE_BLOCKED: string;
|
|
3891
3906
|
INVOICE_CHECK: string;
|
|
3907
|
+
INVOICE_CHECK2: string;
|
|
3892
3908
|
INVOICE_DATA: string;
|
|
3893
3909
|
INVOICE_DATE: string;
|
|
3894
3910
|
INVOICE_FREQUENCY: string;
|
|
@@ -4823,6 +4839,7 @@ export declare class Dictionaries {
|
|
|
4823
4839
|
STOCKTAGSWINDOW: string;
|
|
4824
4840
|
STOCK_ADJUSTMENTS: string;
|
|
4825
4841
|
STOCK_AVAILABLE_CHANGE_WAREHOUSE_OR_COMMISSIONCODE: string;
|
|
4842
|
+
STOCK_COMPARISON: string;
|
|
4826
4843
|
STOCK_DATE: string;
|
|
4827
4844
|
STOCK_DETAILS: string;
|
|
4828
4845
|
STOCK_DIFFERENCES: string;
|
|
@@ -4840,6 +4857,7 @@ export declare class Dictionaries {
|
|
|
4840
4857
|
STOCK_NOT_EDITABLE: string;
|
|
4841
4858
|
STOCK_NOT_EDITABLE_BECAUSE_OF_LOCKED_STOCKS: string;
|
|
4842
4859
|
STOCK_NOT_EDITABLE_BECAUSE_OF_TRANSACTIONS: string;
|
|
4860
|
+
STOCK_OVERVIEW: string;
|
|
4843
4861
|
STOCK_PARAMETERS: string;
|
|
4844
4862
|
STOCK_REPLENISHMENT: string;
|
|
4845
4863
|
STOCK_REMARK: string;
|
|
@@ -4888,6 +4906,7 @@ export declare class Dictionaries {
|
|
|
4888
4906
|
BATCH_INVOICE: string;
|
|
4889
4907
|
BATCH_ORDER_CONFIRMATION: string;
|
|
4890
4908
|
BATCH_PURCHASE_ORDER_FORM: string;
|
|
4909
|
+
BATCH_DELIVERY_NOTES: string;
|
|
4891
4910
|
BCC: string;
|
|
4892
4911
|
BEFORE_DATE: string;
|
|
4893
4912
|
BEGIN_BOOK: string;
|
|
@@ -5241,6 +5260,7 @@ export declare class Dictionaries {
|
|
|
5241
5260
|
BOOKING_SEARCH_GENERAL_INFO: string;
|
|
5242
5261
|
BOOKING_SEARCH_GENERAL_INFO_CUSTOMER: string;
|
|
5243
5262
|
BOOKING_SEARCH_GENERAL_INFO_SUPPLIER: string;
|
|
5263
|
+
BOOKING_SEARCH_GENERAL_INFO_INVOICE_CHECK: string;
|
|
5244
5264
|
BOOKING_SELECTION: string;
|
|
5245
5265
|
BOOK_AMOUNT: string;
|
|
5246
5266
|
BOOK_DATA: string;
|
|
@@ -5657,6 +5677,7 @@ export declare class Dictionaries {
|
|
|
5657
5677
|
SELECT_DRAWER: string;
|
|
5658
5678
|
SELECT_EMAIL_ADDRESS: string;
|
|
5659
5679
|
SELECT_EMPLOYER: string;
|
|
5680
|
+
SELECT_LINE_FIRST: string;
|
|
5660
5681
|
SELECT_END_DATE: string;
|
|
5661
5682
|
SELECT_EXISTING_CUSTOMER: string;
|
|
5662
5683
|
SELECT_FOR_HAS_BEEN_PICKED: string;
|
|
@@ -6184,6 +6205,7 @@ export declare class Dictionaries {
|
|
|
6184
6205
|
SEARCH_BUYORDERS: string;
|
|
6185
6206
|
SEARCH_BY_ARTICLENUMBER_NAME_OR_DESCRIPTION: string;
|
|
6186
6207
|
SEARCH_BY_ARTICLENUMBER_OR_DESCRIPTION: string;
|
|
6208
|
+
SEARCH_BY_OPTION_VALUE: string;
|
|
6187
6209
|
SEARCH_CATALOGUE: string;
|
|
6188
6210
|
SEARCH_CITY: string;
|
|
6189
6211
|
SEARCH_CODE: string;
|
|
@@ -6441,6 +6463,7 @@ export declare class Dictionaries {
|
|
|
6441
6463
|
CANNOT_DELETE_REMOTE_ARTICLE: string;
|
|
6442
6464
|
CANNOT_DISPLAY_TEXT: string;
|
|
6443
6465
|
CANNOT_KILL_OWN_SESSION: string;
|
|
6466
|
+
CONTRA_LEDGER_ACCOUNTS: string;
|
|
6444
6467
|
SEO_TITLES: string;
|
|
6445
6468
|
SEO_URLS: string;
|
|
6446
6469
|
SEPTEMBER: string;
|
|
@@ -6691,6 +6714,11 @@ export declare class Dictionaries {
|
|
|
6691
6714
|
VAT_HOME_CUR: string;
|
|
6692
6715
|
VAT_ID: string;
|
|
6693
6716
|
VAT_KEYS: string;
|
|
6717
|
+
VAT_CODE_EXTERNAL: string;
|
|
6718
|
+
VAT_KIND: string;
|
|
6719
|
+
VAT_START_DATE: string;
|
|
6720
|
+
VAT_END_DATE: string;
|
|
6721
|
+
VAT_PERCENTAGE_HISTORY: string;
|
|
6694
6722
|
EXCEPTION_TEXT_12_4: string;
|
|
6695
6723
|
EXCEPTION_TEXT_2_1: string;
|
|
6696
6724
|
EXCEPTION_TEXT_2_2: string;
|
|
@@ -6983,6 +7011,7 @@ export declare class Dictionaries {
|
|
|
6983
7011
|
STYLE_GROUPING: string;
|
|
6984
7012
|
SUBJECT: string;
|
|
6985
7013
|
SUBMIT: string;
|
|
7014
|
+
SUBMIT_A_NEW_VOUCHER_CODE: string;
|
|
6986
7015
|
SUBSCRIBE: string;
|
|
6987
7016
|
SUBTOTAL: string;
|
|
6988
7017
|
SUBTOTAL_ACCOUNT: string;
|
|
@@ -7072,6 +7101,7 @@ export declare class Dictionaries {
|
|
|
7072
7101
|
ARTICLE_IMAGE: string;
|
|
7073
7102
|
ARTICLE_INFO: string;
|
|
7074
7103
|
ARTICLE_ORDER_DETAILS: string;
|
|
7104
|
+
ARTICLE_OPTION_LIBRARY: string;
|
|
7075
7105
|
MARKED: string;
|
|
7076
7106
|
MARKETING: string;
|
|
7077
7107
|
MARKETING_CODE: string;
|
|
@@ -7652,6 +7682,7 @@ export declare class Dictionaries {
|
|
|
7652
7682
|
FIRST_REC_DATE: string;
|
|
7653
7683
|
FIRST_SICK_DAY: string;
|
|
7654
7684
|
FRIDAY_ABBREVATION: string;
|
|
7685
|
+
FORMAT: string;
|
|
7655
7686
|
FROM: string;
|
|
7656
7687
|
FROM1: string;
|
|
7657
7688
|
FROM_BOOKING_DATE: string;
|
|
@@ -7688,11 +7719,13 @@ export declare class Dictionaries {
|
|
|
7688
7719
|
NOT_BEFORE: string;
|
|
7689
7720
|
NOT_BLOCKED: string;
|
|
7690
7721
|
NOT_COMPLETE: string;
|
|
7722
|
+
NOT_CHECKED: string;
|
|
7691
7723
|
NOT_COMPLETELY_ALLOCATED: string;
|
|
7692
7724
|
NOT_COMPLETELY_ASSIGNED: string;
|
|
7693
7725
|
NOT_COMPLETELY_SIGNED_IN: string;
|
|
7694
7726
|
NOT_COMPLETE_ORDERS: string;
|
|
7695
7727
|
NOT_DEFINITE: string;
|
|
7728
|
+
NOT_DELIVERED: string;
|
|
7696
7729
|
NOT_ENOUGH_CONTAINER_VOLUME: string;
|
|
7697
7730
|
NOT_EXPIRED: string;
|
|
7698
7731
|
NOT_FOUND: string;
|
|
@@ -8270,6 +8303,8 @@ export declare class Dictionaries {
|
|
|
8270
8303
|
UPDATE_SINGLE_SEARCH_INDEX: string;
|
|
8271
8304
|
UPDATE_STOCK: string;
|
|
8272
8305
|
UPLOAD: string;
|
|
8306
|
+
UPLOADING: string;
|
|
8307
|
+
UPLOADED: string;
|
|
8273
8308
|
UPLOAD_FILE: string;
|
|
8274
8309
|
UPLOAD_IMAGE: string;
|
|
8275
8310
|
UPLOAD_IMAGE_MSG: string;
|
|
@@ -8332,10 +8367,12 @@ export declare class Dictionaries {
|
|
|
8332
8367
|
VOUCHERS: string;
|
|
8333
8368
|
VOUCHER_AMOUNT: string;
|
|
8334
8369
|
VOUCHER_CODE: string;
|
|
8370
|
+
VOUCHER_CODE_ALREADY_EXISTS: string;
|
|
8335
8371
|
VOUCHER_CODE_EXISTS: string;
|
|
8336
8372
|
VOUCHER_CODE_INFO: string;
|
|
8337
8373
|
VOUCHER_DEACTIVE: string;
|
|
8338
8374
|
VOUCHER_EXPIRED: string;
|
|
8375
|
+
VOUCHER_INFORMATION: string;
|
|
8339
8376
|
VOUCHER_MAX_USED: string;
|
|
8340
8377
|
VOUCHER_NO_BALANCE: string;
|
|
8341
8378
|
VOUCHER_PAYMENTS: string;
|
|
@@ -8365,6 +8402,7 @@ export declare class Dictionaries {
|
|
|
8365
8402
|
WAREHOUSE_NOT_IN_BRANCH: string;
|
|
8366
8403
|
WAREHOUSE_NUMBER: string;
|
|
8367
8404
|
WAREHOUSE_RECEIPT: string;
|
|
8405
|
+
WAREHOUSE_TRANSFERS: string;
|
|
8368
8406
|
WAREHOUSE_REQUIRED: string;
|
|
8369
8407
|
WARNING: string;
|
|
8370
8408
|
WARNING_MESSAGE_DELETE_NOTIFICATION_LINKS: string;
|
|
@@ -8491,6 +8529,7 @@ export declare class Dictionaries {
|
|
|
8491
8529
|
INPUT: string;
|
|
8492
8530
|
INPUT_DISCOUNT: string;
|
|
8493
8531
|
INPUT_NEW_LINE: string;
|
|
8532
|
+
INPUT_VOUCHER_CODE: string;
|
|
8494
8533
|
INSERT_NEW_DRAWER: string;
|
|
8495
8534
|
INSERT_NEW_FORM: string;
|
|
8496
8535
|
INSERT_NEW_RELATION: string;
|
|
@@ -8571,6 +8610,7 @@ export declare class Dictionaries {
|
|
|
8571
8610
|
IONE_WORKABILITY: string;
|
|
8572
8611
|
IP_ADDRESS: string;
|
|
8573
8612
|
IS: string;
|
|
8613
|
+
IS_ACTIVE: string;
|
|
8574
8614
|
ISO_CODE: string;
|
|
8575
8615
|
ISSUED_BY: string;
|
|
8576
8616
|
ISSUED_IN_TRANSCTION: string;
|
|
@@ -9031,6 +9071,7 @@ export declare class Dictionaries {
|
|
|
9031
9071
|
LINE_TOTAL: string;
|
|
9032
9072
|
LINE_TOTAL_INCL_VAT: string;
|
|
9033
9073
|
LINE_TYPE: string;
|
|
9074
|
+
LINKED_ADMINISTRATIONS: string;
|
|
9034
9075
|
LINKED_ARTICLES: string;
|
|
9035
9076
|
LINKED_ARTICLE_DOUBLE: string;
|
|
9036
9077
|
LINKED_DEPARTMENTS: string;
|
|
@@ -10436,6 +10477,9 @@ export declare class Dictionaries {
|
|
|
10436
10477
|
SCHEMA_NAME: string;
|
|
10437
10478
|
SCREEN: string;
|
|
10438
10479
|
SEARCH: string;
|
|
10480
|
+
QUANTITY: string;
|
|
10481
|
+
SHOW_ORDER: string;
|
|
10482
|
+
NO_IMAGE: string;
|
|
10439
10483
|
CURRENCY_CODE: string;
|
|
10440
10484
|
CURRENCY_UNIT: string;
|
|
10441
10485
|
CURRENT: string;
|
|
@@ -10903,6 +10947,12 @@ export declare class Dictionaries {
|
|
|
10903
10947
|
ORDER_INFO: string;
|
|
10904
10948
|
ORDER_KIND: string;
|
|
10905
10949
|
PRODUCT_OPEN_ACTIVITIES: string;
|
|
10950
|
+
TOTAL_GROSS: string;
|
|
10951
|
+
DELIVERY_COSTS: string;
|
|
10952
|
+
PASSWORD_FORGOTTEN_TEXT: string;
|
|
10953
|
+
PASSWORD_FORGOTTEN_TEXT_EXTRA: string;
|
|
10954
|
+
EMAIL_OR_USERNAME: string;
|
|
10955
|
+
LOGIN: string;
|
|
10906
10956
|
};
|
|
10907
10957
|
text_nl: {
|
|
10908
10958
|
"0_RESULTS_FOUND": string;
|
|
@@ -12036,6 +12086,7 @@ export declare class Dictionaries {
|
|
|
12036
12086
|
ARTICLE_NUMBER: string;
|
|
12037
12087
|
ARTICLE_NUMBER_SUPPLIER: string;
|
|
12038
12088
|
ARTICLE_ORDER_DETAILS: string;
|
|
12089
|
+
ARTICLE_OPTION_LIBRARY: string;
|
|
12039
12090
|
ARTICLE_PRODUCT_LIST: string;
|
|
12040
12091
|
ARTICLE_SEARCH: string;
|
|
12041
12092
|
ARTICLE_SEARCH_GENERAL_INFO: string;
|
|
@@ -12209,6 +12260,7 @@ export declare class Dictionaries {
|
|
|
12209
12260
|
BATCH_INVOICE: string;
|
|
12210
12261
|
BATCH_ORDER_CONFIRMATION: string;
|
|
12211
12262
|
BATCH_PURCHASE_ORDER_FORM: string;
|
|
12263
|
+
BATCH_DELIVERY_NOTES: string;
|
|
12212
12264
|
BCC: string;
|
|
12213
12265
|
BEFORE_DATE: string;
|
|
12214
12266
|
BEGIN_BOOK: string;
|
|
@@ -12247,6 +12299,7 @@ export declare class Dictionaries {
|
|
|
12247
12299
|
BOOKING_SEARCH_GENERAL_INFO_SUPPLIER: string;
|
|
12248
12300
|
BOOKING_SEARCH_GENERAL_INFO_CUSTOMER: string;
|
|
12249
12301
|
BOOKING_SEARCH_GENERAL_INFO: string;
|
|
12302
|
+
BOOKING_SEARCH_GENERAL_INFO_INVOICE_CHECK: string;
|
|
12250
12303
|
BOOKING_SELECTION: string;
|
|
12251
12304
|
BOOK_AMOUNT: string;
|
|
12252
12305
|
BOOK_DATA: string;
|
|
@@ -12286,6 +12339,11 @@ export declare class Dictionaries {
|
|
|
12286
12339
|
BUILD_SELF: string;
|
|
12287
12340
|
BULK: string;
|
|
12288
12341
|
BULKLOCATION: string;
|
|
12342
|
+
BULK_3D_UPLOAD: string;
|
|
12343
|
+
BULK_3D_REF: string;
|
|
12344
|
+
BULK_3D_REF_DESC: string;
|
|
12345
|
+
BULK_3D_ZIP: string;
|
|
12346
|
+
BULK_3D_ZIP_DESC: string;
|
|
12289
12347
|
BUSINESS_ADDRESS: string;
|
|
12290
12348
|
BUSINESS_ADDRESS_ADDITION: string;
|
|
12291
12349
|
BUSINESS_ADDRESS_ADDITION_NUMBER: string;
|
|
@@ -12803,6 +12861,7 @@ export declare class Dictionaries {
|
|
|
12803
12861
|
CONFIGURATION_OVERVIEW: string;
|
|
12804
12862
|
CONFIGURATION_PRESET: string;
|
|
12805
12863
|
CONFIGURATION_YOURS: string;
|
|
12864
|
+
CONFIGURATION_LIBRARY: string;
|
|
12806
12865
|
CONFIGURATOR_TEST: string;
|
|
12807
12866
|
CONFIGURE: string;
|
|
12808
12867
|
CONFIGURE_ARTICLE: string;
|
|
@@ -12933,6 +12992,7 @@ export declare class Dictionaries {
|
|
|
12933
12992
|
CONTRACT_TYPE: string;
|
|
12934
12993
|
CONTRA_ACCOUNT: string;
|
|
12935
12994
|
CONTRA_LEDGERACCOUNT_DOWNPAYMENT: string;
|
|
12995
|
+
CONTRA_LEDGER_ACCOUNTS: string;
|
|
12936
12996
|
CONTRA_VAT: string;
|
|
12937
12997
|
CONTRIBUTION_EMPLOYER: string;
|
|
12938
12998
|
CONTROLLED: string;
|
|
@@ -13268,6 +13328,7 @@ export declare class Dictionaries {
|
|
|
13268
13328
|
DEFAULT: string;
|
|
13269
13329
|
DEFAULTS: string;
|
|
13270
13330
|
DEFAULT_ANSWER: string;
|
|
13331
|
+
DEFAULT_ARTICLE: string;
|
|
13271
13332
|
DEFAULT_ARTICLE_GROUP: string;
|
|
13272
13333
|
DEFAULT_AVAILABLE: string;
|
|
13273
13334
|
DEFAULT_CHOICE: string;
|
|
@@ -14201,6 +14262,7 @@ export declare class Dictionaries {
|
|
|
14201
14262
|
FREQUENT_ABSENCE: string;
|
|
14202
14263
|
FRIDAY: string;
|
|
14203
14264
|
FRIDAY_ABBREVATION: string;
|
|
14265
|
+
FORMAT: string;
|
|
14204
14266
|
FROM1: string;
|
|
14205
14267
|
FROM: string;
|
|
14206
14268
|
FROM_BOOKING_DATE: string;
|
|
@@ -14530,6 +14592,7 @@ export declare class Dictionaries {
|
|
|
14530
14592
|
INPUT: string;
|
|
14531
14593
|
INPUT_DISCOUNT: string;
|
|
14532
14594
|
INPUT_NEW_LINE: string;
|
|
14595
|
+
INPUT_VOUCHER_CODE: string;
|
|
14533
14596
|
INSERT_NEW_DRAWER: string;
|
|
14534
14597
|
INSERT_NEW_FORM: string;
|
|
14535
14598
|
INSERT_NEW_RELATION: string;
|
|
@@ -14621,6 +14684,7 @@ export declare class Dictionaries {
|
|
|
14621
14684
|
INVOICE_AMOUNT_CUSTOMER: string;
|
|
14622
14685
|
INVOICE_BLOCKED: string;
|
|
14623
14686
|
INVOICE_CHECK: string;
|
|
14687
|
+
INVOICE_CHECK2: string;
|
|
14624
14688
|
INVOICE_DATA: string;
|
|
14625
14689
|
INVOICE_DATE: string;
|
|
14626
14690
|
INVOICE_FREQUENCY: string;
|
|
@@ -14672,6 +14736,7 @@ export declare class Dictionaries {
|
|
|
14672
14736
|
ISO_CODE: string;
|
|
14673
14737
|
ISSUED_BY: string;
|
|
14674
14738
|
ISSUED_IN_TRANSCTION: string;
|
|
14739
|
+
IS_ACTIVE: string;
|
|
14675
14740
|
IS_CONTACT_OF: string;
|
|
14676
14741
|
IS_FIXED_SCHEDULE: string;
|
|
14677
14742
|
IS_GIFTCARD: string;
|
|
@@ -14686,6 +14751,7 @@ export declare class Dictionaries {
|
|
|
14686
14751
|
IS_WEEKENDSHIFTS: string;
|
|
14687
14752
|
ITEM: string;
|
|
14688
14753
|
ITEM_ACCEPTED: string;
|
|
14754
|
+
ITEM_NOT_ACCEPTED: string;
|
|
14689
14755
|
ITEM_ACCEPTED_NOT_PROCESSED: string;
|
|
14690
14756
|
IWO: string;
|
|
14691
14757
|
JANUARY: string;
|
|
@@ -14712,6 +14778,7 @@ export declare class Dictionaries {
|
|
|
14712
14778
|
KASPICK_PRINTER: string;
|
|
14713
14779
|
KEEP_LOCATION: string;
|
|
14714
14780
|
KEYBOARD_LAYOUT: string;
|
|
14781
|
+
KEYCLOAK_SYNC_ISSUE: string;
|
|
14715
14782
|
KILL_SESSION: string;
|
|
14716
14783
|
KIND: string;
|
|
14717
14784
|
KIND_OF_ART_DESCRIPTION: string;
|
|
@@ -14852,6 +14919,7 @@ export declare class Dictionaries {
|
|
|
14852
14919
|
LINE_TOTAL: string;
|
|
14853
14920
|
LINE_TOTAL_INCL_VAT: string;
|
|
14854
14921
|
LINE_TYPE: string;
|
|
14922
|
+
LINKED_ADMINISTRATIONS: string;
|
|
14855
14923
|
LINKED_ARTICLES: string;
|
|
14856
14924
|
LINKED_ARTICLE_DOUBLE: string;
|
|
14857
14925
|
LINKED_DEPARTMENTS: string;
|
|
@@ -15653,7 +15721,9 @@ export declare class Dictionaries {
|
|
|
15653
15721
|
NOT_COMPLETE: string;
|
|
15654
15722
|
NOT_COMPLETELY_ALLOCATED: string;
|
|
15655
15723
|
NOT_COMPLETE_ORDERS: string;
|
|
15724
|
+
NOT_CHECKED: string;
|
|
15656
15725
|
NOT_DEFINITE: string;
|
|
15726
|
+
NOT_DELIVERED: string;
|
|
15657
15727
|
NOT_ENOUGH_CONTAINER_VOLUME: string;
|
|
15658
15728
|
NOT_EXPIRED: string;
|
|
15659
15729
|
NOT_FOUND: string;
|
|
@@ -16573,6 +16643,7 @@ export declare class Dictionaries {
|
|
|
16573
16643
|
PRICE_TAG_IMAGE: string;
|
|
16574
16644
|
PRICE_TAG_INTER_BRANCH: string;
|
|
16575
16645
|
PRICE_TAG_STICKERS: string;
|
|
16646
|
+
PRINT_PRICE_TAG_STICKERS: string;
|
|
16576
16647
|
PRICE_TAG_TEXT: string;
|
|
16577
16648
|
PRICE_TESTER: string;
|
|
16578
16649
|
PRICE_TO: string;
|
|
@@ -17489,6 +17560,7 @@ export declare class Dictionaries {
|
|
|
17489
17560
|
SEARCH_BUYORDERS: string;
|
|
17490
17561
|
SEARCH_BY_ARTICLENUMBER_NAME_OR_DESCRIPTION: string;
|
|
17491
17562
|
SEARCH_BY_ARTICLENUMBER_OR_DESCRIPTION: string;
|
|
17563
|
+
SEARCH_BY_OPTION_VALUE: string;
|
|
17492
17564
|
SEARCH_FILTER: string;
|
|
17493
17565
|
SEARCH_CATALOGUE: string;
|
|
17494
17566
|
SEARCH_CODE: string;
|
|
@@ -17579,6 +17651,7 @@ export declare class Dictionaries {
|
|
|
17579
17651
|
SELECT_ACCOUNT_MANAGER: string;
|
|
17580
17652
|
SELECT_CONSULTANT: string;
|
|
17581
17653
|
SELECT_EMPLOYER: string;
|
|
17654
|
+
SELECT_LINE_FIRST: string;
|
|
17582
17655
|
SELECT_MAILING_CODE: string;
|
|
17583
17656
|
SELECT_CASE_MANAGER: string;
|
|
17584
17657
|
SELECT_MEDICAL_OFFICER: string;
|
|
@@ -18055,6 +18128,7 @@ export declare class Dictionaries {
|
|
|
18055
18128
|
STOCK_ADJUSTMENTS: string;
|
|
18056
18129
|
STOCK_AVAILABLE_CHANGE_WAREHOUSE_OR_COMMISSIONCODE: string;
|
|
18057
18130
|
STOCK_BELOW_ZERO_TEXT: string;
|
|
18131
|
+
STOCK_COMPARISON: string;
|
|
18058
18132
|
STOCK_DATE: string;
|
|
18059
18133
|
STOCK_DETAILS: string;
|
|
18060
18134
|
STOCK_DIFFERENCES: string;
|
|
@@ -18072,6 +18146,7 @@ export declare class Dictionaries {
|
|
|
18072
18146
|
STOCK_NOT_EDITABLE: string;
|
|
18073
18147
|
STOCK_NOT_EDITABLE_BECAUSE_OF_LOCKED_STOCKS: string;
|
|
18074
18148
|
STOCK_NOT_EDITABLE_BECAUSE_OF_TRANSACTIONS: string;
|
|
18149
|
+
STOCK_OVERVIEW: string;
|
|
18075
18150
|
STOCK_PARAMETERS: string;
|
|
18076
18151
|
STOCK_REPLENISHMENT: string;
|
|
18077
18152
|
STOCK_REMARK: string;
|
|
@@ -18123,6 +18198,7 @@ export declare class Dictionaries {
|
|
|
18123
18198
|
STYLE_GROUPING: string;
|
|
18124
18199
|
SUBJECT: string;
|
|
18125
18200
|
SUBMIT: string;
|
|
18201
|
+
SUBMIT_A_NEW_VOUCHER_CODE: string;
|
|
18126
18202
|
SUBSCRIBE: string;
|
|
18127
18203
|
SUBTOTAL: string;
|
|
18128
18204
|
SUBTOTAL_ACCOUNT: string;
|
|
@@ -18634,6 +18710,8 @@ export declare class Dictionaries {
|
|
|
18634
18710
|
UPDATE_SINGLE_SEARCH_INDEX: string;
|
|
18635
18711
|
UPDATE_STOCK: string;
|
|
18636
18712
|
UPLOAD: string;
|
|
18713
|
+
UPLOADING: string;
|
|
18714
|
+
UPLOADED: string;
|
|
18637
18715
|
UPLOAD_FILE: string;
|
|
18638
18716
|
UPLOAD_IMAGE: string;
|
|
18639
18717
|
UPLOAD_IMAGE_MSG: string;
|
|
@@ -18728,6 +18806,11 @@ export declare class Dictionaries {
|
|
|
18728
18806
|
VAT_PAYMENT: string;
|
|
18729
18807
|
VAT_PERCENTAGE2: string;
|
|
18730
18808
|
VAT_PERCENTAGE: string;
|
|
18809
|
+
VAT_CODE_EXTERNAL: string;
|
|
18810
|
+
VAT_PERCENTAGE_HISTORY: string;
|
|
18811
|
+
VAT_KIND: string;
|
|
18812
|
+
VAT_START_DATE: string;
|
|
18813
|
+
VAT_END_DATE: string;
|
|
18731
18814
|
VAT_PURCHASE: string;
|
|
18732
18815
|
VAT_RECEIVABLE: string;
|
|
18733
18816
|
VAT_SALES: string;
|
|
@@ -18771,9 +18854,11 @@ export declare class Dictionaries {
|
|
|
18771
18854
|
VOUCHER_AMOUNT: string;
|
|
18772
18855
|
VOUCHER_CAN_ONLY_BE_USED_ONCE: string;
|
|
18773
18856
|
VOUCHER_CODE: string;
|
|
18857
|
+
VOUCHER_CODE_ALREADY_EXISTS: string;
|
|
18774
18858
|
VOUCHER_CODE_EXISTS: string;
|
|
18775
18859
|
VOUCHER_CODE_INFO: string;
|
|
18776
18860
|
VOUCHER_EXPIRED: string;
|
|
18861
|
+
VOUCHER_INFORMATION: string;
|
|
18777
18862
|
VOUCHER_MAX_USED: string;
|
|
18778
18863
|
VOUCHER_NO_BALANCE: string;
|
|
18779
18864
|
VOUCHER_NOT_INVOICED: string;
|
|
@@ -18806,6 +18891,7 @@ export declare class Dictionaries {
|
|
|
18806
18891
|
WAREHOUSE_RECEIPT: string;
|
|
18807
18892
|
WAREHOUSE_REQUIRED: string;
|
|
18808
18893
|
WAREHOUSE_ROWS: string;
|
|
18894
|
+
WAREHOUSE_TRANSFERS: string;
|
|
18809
18895
|
WARNING: string;
|
|
18810
18896
|
WARNING_MESSAGE_DELETE_NOTIFICATION_LINKS: string;
|
|
18811
18897
|
WARNING_MESSAGE_DELETE_STANDARD_LIST: string;
|