@colijnit/sharedcomponents 257.1.15 → 257.1.17
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 +23 -10
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/stock/components/order-tab/order-tab.component.js +44 -6
- package/esm2015/lib/components/stock/components/stock-location/components/stock-location-popup/stock-location-popup.component.js +2 -2
- 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 +55 -11
- package/fesm2015/colijnit-sharedcomponents.js.map +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 +90 -0
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -1980,6 +1993,7 @@ export declare class Dictionaries {
|
|
|
1980
1993
|
COMMISSION_ADVICE: string;
|
|
1981
1994
|
COMMISSION_CODE: string;
|
|
1982
1995
|
COMMISSION_CODE_WAREHOUSE_SELECTION: string;
|
|
1996
|
+
WAREHOUSE_SELECTION: string;
|
|
1983
1997
|
COMMISSSION_CODE_ONE_PURCHASE: string;
|
|
1984
1998
|
CONFIGURATION_BOX: string;
|
|
1985
1999
|
CONFIGURATION_BUILDER: string;
|
|
@@ -1987,6 +2001,7 @@ export declare class Dictionaries {
|
|
|
1987
2001
|
CONFIGURATION_NOT_FINISHED_YET: string;
|
|
1988
2002
|
CONFIGURATION_OVERVIEW: string;
|
|
1989
2003
|
CONFIGURATION_YOURS: string;
|
|
2004
|
+
CONFIGURATION_LIBRARY: string;
|
|
1990
2005
|
CONFIGURATOR_TEST: string;
|
|
1991
2006
|
CONFIGURE: string;
|
|
1992
2007
|
CONFIGURE_ARTICLE: string;
|
|
@@ -3235,6 +3250,7 @@ export declare class Dictionaries {
|
|
|
3235
3250
|
UNDELIVERED_PURCHASE: string;
|
|
3236
3251
|
UNDERLYING_OPVS: string;
|
|
3237
3252
|
UNDERSTOOD_DONT_SHOW_AGAIN: string;
|
|
3253
|
+
UNDO: string;
|
|
3238
3254
|
UNDO_DELETE: string;
|
|
3239
3255
|
UNDO_DELIVERY: string;
|
|
3240
3256
|
REGISTER_ILLNESS: string;
|
|
@@ -3389,6 +3405,7 @@ export declare class Dictionaries {
|
|
|
3389
3405
|
OPTED_FOR_CASH: string;
|
|
3390
3406
|
OPTED_FOR_PIN: string;
|
|
3391
3407
|
OPTION: string;
|
|
3408
|
+
OPTION_LIBRARY: string;
|
|
3392
3409
|
OPTIONAL: string;
|
|
3393
3410
|
OPTIONS: string;
|
|
3394
3411
|
MESSAGE_ERROR_POSTALCODE_RETRIEVAL: string;
|
|
@@ -3497,6 +3514,7 @@ export declare class Dictionaries {
|
|
|
3497
3514
|
PRICE_TAG_IMAGE: string;
|
|
3498
3515
|
PRICE_TAG_INTER_BRANCH: string;
|
|
3499
3516
|
PRICE_TAG_STICKERS: string;
|
|
3517
|
+
PRINT_PRICE_TAG_STICKERS: string;
|
|
3500
3518
|
PRICE_TAG_TEXT: string;
|
|
3501
3519
|
PRICE_TESTER: string;
|
|
3502
3520
|
PRICE_TO: string;
|
|
@@ -4092,6 +4110,7 @@ export declare class Dictionaries {
|
|
|
4092
4110
|
DRIVER_CHECKOUT_DEFAULT: string;
|
|
4093
4111
|
DRIVER_CHECKOUT_EXISTING_SELECTION: string;
|
|
4094
4112
|
DROPSHIPMENT: string;
|
|
4113
|
+
DROPSHIPMENT_NO: string;
|
|
4095
4114
|
DROPSHIPMENT_AVAILABLE: string;
|
|
4096
4115
|
DROPSHIPMENT_INFO: string;
|
|
4097
4116
|
DROPSHIPMENT_POSSIBLE: string;
|
|
@@ -4778,6 +4797,7 @@ export declare class Dictionaries {
|
|
|
4778
4797
|
INCLUDE_LINE_DETAILS: string;
|
|
4779
4798
|
INCLUDE_NO_STOCK_ART: string;
|
|
4780
4799
|
INCLUDE_REAFFIRMATIONS: string;
|
|
4800
|
+
INCLUDE_UNPROCESSED_ENTRIES: string;
|
|
4781
4801
|
INCLUDING_CONTACT_PERSONS: string;
|
|
4782
4802
|
INCLUDING_OPENING_BALANCE: string;
|
|
4783
4803
|
INCLUDING_PRINTED: string;
|
|
@@ -4818,6 +4838,7 @@ export declare class Dictionaries {
|
|
|
4818
4838
|
STOCKTAGSWINDOW: string;
|
|
4819
4839
|
STOCK_ADJUSTMENTS: string;
|
|
4820
4840
|
STOCK_AVAILABLE_CHANGE_WAREHOUSE_OR_COMMISSIONCODE: string;
|
|
4841
|
+
STOCK_COMPARISON: string;
|
|
4821
4842
|
STOCK_DATE: string;
|
|
4822
4843
|
STOCK_DETAILS: string;
|
|
4823
4844
|
STOCK_DIFFERENCES: string;
|
|
@@ -4835,6 +4856,7 @@ export declare class Dictionaries {
|
|
|
4835
4856
|
STOCK_NOT_EDITABLE: string;
|
|
4836
4857
|
STOCK_NOT_EDITABLE_BECAUSE_OF_LOCKED_STOCKS: string;
|
|
4837
4858
|
STOCK_NOT_EDITABLE_BECAUSE_OF_TRANSACTIONS: string;
|
|
4859
|
+
STOCK_OVERVIEW: string;
|
|
4838
4860
|
STOCK_PARAMETERS: string;
|
|
4839
4861
|
STOCK_REPLENISHMENT: string;
|
|
4840
4862
|
STOCK_REMARK: string;
|
|
@@ -4880,6 +4902,10 @@ export declare class Dictionaries {
|
|
|
4880
4902
|
BATCH_PENDING: string;
|
|
4881
4903
|
BATCH_REQUIRED: string;
|
|
4882
4904
|
BATCH_RUNNING: string;
|
|
4905
|
+
BATCH_INVOICE: string;
|
|
4906
|
+
BATCH_ORDER_CONFIRMATION: string;
|
|
4907
|
+
BATCH_PURCHASE_ORDER_FORM: string;
|
|
4908
|
+
BATCH_DELIVERY_NOTES: string;
|
|
4883
4909
|
BCC: string;
|
|
4884
4910
|
BEFORE_DATE: string;
|
|
4885
4911
|
BEGIN_BOOK: string;
|
|
@@ -5233,6 +5259,7 @@ export declare class Dictionaries {
|
|
|
5233
5259
|
BOOKING_SEARCH_GENERAL_INFO: string;
|
|
5234
5260
|
BOOKING_SEARCH_GENERAL_INFO_CUSTOMER: string;
|
|
5235
5261
|
BOOKING_SEARCH_GENERAL_INFO_SUPPLIER: string;
|
|
5262
|
+
BOOKING_SEARCH_GENERAL_INFO_INVOICE_CHECK: string;
|
|
5236
5263
|
BOOKING_SELECTION: string;
|
|
5237
5264
|
BOOK_AMOUNT: string;
|
|
5238
5265
|
BOOK_DATA: string;
|
|
@@ -5509,6 +5536,7 @@ export declare class Dictionaries {
|
|
|
5509
5536
|
RELATION_LAYOUTS: string;
|
|
5510
5537
|
RELATION_LAYOUTS_MESSAGE: string;
|
|
5511
5538
|
SHIPPING_METHOD_SETTINGS: string;
|
|
5539
|
+
SHIPPING_METHOD_STANDARD_SETTINGS: string;
|
|
5512
5540
|
OVERRULE_VIA_EMAIL: string;
|
|
5513
5541
|
OVERRULE_VIA_EDI: string;
|
|
5514
5542
|
OVERRULE_VIA_PRINT: string;
|
|
@@ -5648,6 +5676,7 @@ export declare class Dictionaries {
|
|
|
5648
5676
|
SELECT_DRAWER: string;
|
|
5649
5677
|
SELECT_EMAIL_ADDRESS: string;
|
|
5650
5678
|
SELECT_EMPLOYER: string;
|
|
5679
|
+
SELECT_LINE_FIRST: string;
|
|
5651
5680
|
SELECT_END_DATE: string;
|
|
5652
5681
|
SELECT_EXISTING_CUSTOMER: string;
|
|
5653
5682
|
SELECT_FOR_HAS_BEEN_PICKED: string;
|
|
@@ -6175,6 +6204,7 @@ export declare class Dictionaries {
|
|
|
6175
6204
|
SEARCH_BUYORDERS: string;
|
|
6176
6205
|
SEARCH_BY_ARTICLENUMBER_NAME_OR_DESCRIPTION: string;
|
|
6177
6206
|
SEARCH_BY_ARTICLENUMBER_OR_DESCRIPTION: string;
|
|
6207
|
+
SEARCH_BY_OPTION_VALUE: string;
|
|
6178
6208
|
SEARCH_CATALOGUE: string;
|
|
6179
6209
|
SEARCH_CITY: string;
|
|
6180
6210
|
SEARCH_CODE: string;
|
|
@@ -6974,6 +7004,7 @@ export declare class Dictionaries {
|
|
|
6974
7004
|
STYLE_GROUPING: string;
|
|
6975
7005
|
SUBJECT: string;
|
|
6976
7006
|
SUBMIT: string;
|
|
7007
|
+
SUBMIT_A_NEW_VOUCHER_CODE: string;
|
|
6977
7008
|
SUBSCRIBE: string;
|
|
6978
7009
|
SUBTOTAL: string;
|
|
6979
7010
|
SUBTOTAL_ACCOUNT: string;
|
|
@@ -7063,6 +7094,7 @@ export declare class Dictionaries {
|
|
|
7063
7094
|
ARTICLE_IMAGE: string;
|
|
7064
7095
|
ARTICLE_INFO: string;
|
|
7065
7096
|
ARTICLE_ORDER_DETAILS: string;
|
|
7097
|
+
ARTICLE_OPTION_LIBRARY: string;
|
|
7066
7098
|
MARKED: string;
|
|
7067
7099
|
MARKETING: string;
|
|
7068
7100
|
MARKETING_CODE: string;
|
|
@@ -7643,6 +7675,7 @@ export declare class Dictionaries {
|
|
|
7643
7675
|
FIRST_REC_DATE: string;
|
|
7644
7676
|
FIRST_SICK_DAY: string;
|
|
7645
7677
|
FRIDAY_ABBREVATION: string;
|
|
7678
|
+
FORMAT: string;
|
|
7646
7679
|
FROM: string;
|
|
7647
7680
|
FROM1: string;
|
|
7648
7681
|
FROM_BOOKING_DATE: string;
|
|
@@ -7679,11 +7712,13 @@ export declare class Dictionaries {
|
|
|
7679
7712
|
NOT_BEFORE: string;
|
|
7680
7713
|
NOT_BLOCKED: string;
|
|
7681
7714
|
NOT_COMPLETE: string;
|
|
7715
|
+
NOT_CHECKED: string;
|
|
7682
7716
|
NOT_COMPLETELY_ALLOCATED: string;
|
|
7683
7717
|
NOT_COMPLETELY_ASSIGNED: string;
|
|
7684
7718
|
NOT_COMPLETELY_SIGNED_IN: string;
|
|
7685
7719
|
NOT_COMPLETE_ORDERS: string;
|
|
7686
7720
|
NOT_DEFINITE: string;
|
|
7721
|
+
NOT_DELIVERED: string;
|
|
7687
7722
|
NOT_ENOUGH_CONTAINER_VOLUME: string;
|
|
7688
7723
|
NOT_EXPIRED: string;
|
|
7689
7724
|
NOT_FOUND: string;
|
|
@@ -8235,6 +8270,7 @@ export declare class Dictionaries {
|
|
|
8235
8270
|
OPEN_SHOPPING_CART: string;
|
|
8236
8271
|
OPEN_STOCK_DETAILS: string;
|
|
8237
8272
|
ORDER_CANNOT_BE_COMPLETELY_ACCEPTED: string;
|
|
8273
|
+
ORDER_CAN_NOT_BE_PLANNED_ON_RESOURCE: string;
|
|
8238
8274
|
ORDER_CODE: string;
|
|
8239
8275
|
UNKNOWN_ADDRESS_CHECK_IT: string;
|
|
8240
8276
|
UNKNOWN_DELIVERY_DATE: string;
|
|
@@ -8260,6 +8296,8 @@ export declare class Dictionaries {
|
|
|
8260
8296
|
UPDATE_SINGLE_SEARCH_INDEX: string;
|
|
8261
8297
|
UPDATE_STOCK: string;
|
|
8262
8298
|
UPLOAD: string;
|
|
8299
|
+
UPLOADING: string;
|
|
8300
|
+
UPLOADED: string;
|
|
8263
8301
|
UPLOAD_FILE: string;
|
|
8264
8302
|
UPLOAD_IMAGE: string;
|
|
8265
8303
|
UPLOAD_IMAGE_MSG: string;
|
|
@@ -8322,10 +8360,12 @@ export declare class Dictionaries {
|
|
|
8322
8360
|
VOUCHERS: string;
|
|
8323
8361
|
VOUCHER_AMOUNT: string;
|
|
8324
8362
|
VOUCHER_CODE: string;
|
|
8363
|
+
VOUCHER_CODE_ALREADY_EXISTS: string;
|
|
8325
8364
|
VOUCHER_CODE_EXISTS: string;
|
|
8326
8365
|
VOUCHER_CODE_INFO: string;
|
|
8327
8366
|
VOUCHER_DEACTIVE: string;
|
|
8328
8367
|
VOUCHER_EXPIRED: string;
|
|
8368
|
+
VOUCHER_INFORMATION: string;
|
|
8329
8369
|
VOUCHER_MAX_USED: string;
|
|
8330
8370
|
VOUCHER_NO_BALANCE: string;
|
|
8331
8371
|
VOUCHER_PAYMENTS: string;
|
|
@@ -8355,6 +8395,7 @@ export declare class Dictionaries {
|
|
|
8355
8395
|
WAREHOUSE_NOT_IN_BRANCH: string;
|
|
8356
8396
|
WAREHOUSE_NUMBER: string;
|
|
8357
8397
|
WAREHOUSE_RECEIPT: string;
|
|
8398
|
+
WAREHOUSE_TRANSFERS: string;
|
|
8358
8399
|
WAREHOUSE_REQUIRED: string;
|
|
8359
8400
|
WARNING: string;
|
|
8360
8401
|
WARNING_MESSAGE_DELETE_NOTIFICATION_LINKS: string;
|
|
@@ -8481,6 +8522,7 @@ export declare class Dictionaries {
|
|
|
8481
8522
|
INPUT: string;
|
|
8482
8523
|
INPUT_DISCOUNT: string;
|
|
8483
8524
|
INPUT_NEW_LINE: string;
|
|
8525
|
+
INPUT_VOUCHER_CODE: string;
|
|
8484
8526
|
INSERT_NEW_DRAWER: string;
|
|
8485
8527
|
INSERT_NEW_FORM: string;
|
|
8486
8528
|
INSERT_NEW_RELATION: string;
|
|
@@ -9667,6 +9709,7 @@ export declare class Dictionaries {
|
|
|
9667
9709
|
PORTAL_ID: string;
|
|
9668
9710
|
PORTAL_LOGIN: string;
|
|
9669
9711
|
PORT_COST: string;
|
|
9712
|
+
PONTO_INTEGRATION_SUCCESFULLY_AUTHORIZED: string;
|
|
9670
9713
|
POS: string;
|
|
9671
9714
|
POS2: string;
|
|
9672
9715
|
POSGROUP_REQUIRED: string;
|
|
@@ -10425,6 +10468,9 @@ export declare class Dictionaries {
|
|
|
10425
10468
|
SCHEMA_NAME: string;
|
|
10426
10469
|
SCREEN: string;
|
|
10427
10470
|
SEARCH: string;
|
|
10471
|
+
QUANTITY: string;
|
|
10472
|
+
SHOW_ORDER: string;
|
|
10473
|
+
NO_IMAGE: string;
|
|
10428
10474
|
CURRENCY_CODE: string;
|
|
10429
10475
|
CURRENCY_UNIT: string;
|
|
10430
10476
|
CURRENT: string;
|
|
@@ -10892,6 +10938,12 @@ export declare class Dictionaries {
|
|
|
10892
10938
|
ORDER_INFO: string;
|
|
10893
10939
|
ORDER_KIND: string;
|
|
10894
10940
|
PRODUCT_OPEN_ACTIVITIES: string;
|
|
10941
|
+
TOTAL_GROSS: string;
|
|
10942
|
+
DELIVERY_COSTS: string;
|
|
10943
|
+
PASSWORD_FORGOTTEN_TEXT: string;
|
|
10944
|
+
PASSWORD_FORGOTTEN_TEXT_EXTRA: string;
|
|
10945
|
+
EMAIL_OR_USERNAME: string;
|
|
10946
|
+
LOGIN: string;
|
|
10895
10947
|
};
|
|
10896
10948
|
text_nl: {
|
|
10897
10949
|
"0_RESULTS_FOUND": string;
|
|
@@ -11895,6 +11947,7 @@ export declare class Dictionaries {
|
|
|
11895
11947
|
AMOUNT_OUTSTANDING_CREDITORS: string;
|
|
11896
11948
|
AMOUNT_OUTSTANDING_DEBTORS: string;
|
|
11897
11949
|
AMOUNT_PICKED: string;
|
|
11950
|
+
AMOUNT_PRE_RECEIVED: string;
|
|
11898
11951
|
AMOUNT_PRODUCTS: string;
|
|
11899
11952
|
AMOUNT_PURCHASE: string;
|
|
11900
11953
|
AMOUNT_PURCHASED: string;
|
|
@@ -12024,6 +12077,7 @@ export declare class Dictionaries {
|
|
|
12024
12077
|
ARTICLE_NUMBER: string;
|
|
12025
12078
|
ARTICLE_NUMBER_SUPPLIER: string;
|
|
12026
12079
|
ARTICLE_ORDER_DETAILS: string;
|
|
12080
|
+
ARTICLE_OPTION_LIBRARY: string;
|
|
12027
12081
|
ARTICLE_PRODUCT_LIST: string;
|
|
12028
12082
|
ARTICLE_SEARCH: string;
|
|
12029
12083
|
ARTICLE_SEARCH_GENERAL_INFO: string;
|
|
@@ -12194,6 +12248,10 @@ export declare class Dictionaries {
|
|
|
12194
12248
|
BATCH_REQUIRED: string;
|
|
12195
12249
|
BATCH_RUNNING: string;
|
|
12196
12250
|
BATCH_DELIVERY: string;
|
|
12251
|
+
BATCH_INVOICE: string;
|
|
12252
|
+
BATCH_ORDER_CONFIRMATION: string;
|
|
12253
|
+
BATCH_PURCHASE_ORDER_FORM: string;
|
|
12254
|
+
BATCH_DELIVERY_NOTES: string;
|
|
12197
12255
|
BCC: string;
|
|
12198
12256
|
BEFORE_DATE: string;
|
|
12199
12257
|
BEGIN_BOOK: string;
|
|
@@ -12232,6 +12290,7 @@ export declare class Dictionaries {
|
|
|
12232
12290
|
BOOKING_SEARCH_GENERAL_INFO_SUPPLIER: string;
|
|
12233
12291
|
BOOKING_SEARCH_GENERAL_INFO_CUSTOMER: string;
|
|
12234
12292
|
BOOKING_SEARCH_GENERAL_INFO: string;
|
|
12293
|
+
BOOKING_SEARCH_GENERAL_INFO_INVOICE_CHECK: string;
|
|
12235
12294
|
BOOKING_SELECTION: string;
|
|
12236
12295
|
BOOK_AMOUNT: string;
|
|
12237
12296
|
BOOK_DATA: string;
|
|
@@ -12271,6 +12330,11 @@ export declare class Dictionaries {
|
|
|
12271
12330
|
BUILD_SELF: string;
|
|
12272
12331
|
BULK: string;
|
|
12273
12332
|
BULKLOCATION: string;
|
|
12333
|
+
BULK_3D_UPLOAD: string;
|
|
12334
|
+
BULK_3D_REF: string;
|
|
12335
|
+
BULK_3D_REF_DESC: string;
|
|
12336
|
+
BULK_3D_ZIP: string;
|
|
12337
|
+
BULK_3D_ZIP_DESC: string;
|
|
12274
12338
|
BUSINESS_ADDRESS: string;
|
|
12275
12339
|
BUSINESS_ADDRESS_ADDITION: string;
|
|
12276
12340
|
BUSINESS_ADDRESS_ADDITION_NUMBER: string;
|
|
@@ -12719,6 +12783,7 @@ export declare class Dictionaries {
|
|
|
12719
12783
|
COMMISSION_ADVICE: string;
|
|
12720
12784
|
COMMISSION_CODE: string;
|
|
12721
12785
|
COMMISSION_CODE_WAREHOUSE_SELECTION: string;
|
|
12786
|
+
WAREHOUSE_SELECTION: string;
|
|
12722
12787
|
COMMISSSION_CODE_ONE_PURCHASE: string;
|
|
12723
12788
|
COMMONLY_USED_MANAGEMENT_OVERVIEWS: string;
|
|
12724
12789
|
COMMUNICATION: string;
|
|
@@ -12787,6 +12852,7 @@ export declare class Dictionaries {
|
|
|
12787
12852
|
CONFIGURATION_OVERVIEW: string;
|
|
12788
12853
|
CONFIGURATION_PRESET: string;
|
|
12789
12854
|
CONFIGURATION_YOURS: string;
|
|
12855
|
+
CONFIGURATION_LIBRARY: string;
|
|
12790
12856
|
CONFIGURATOR_TEST: string;
|
|
12791
12857
|
CONFIGURE: string;
|
|
12792
12858
|
CONFIGURE_ARTICLE: string;
|
|
@@ -13252,6 +13318,7 @@ export declare class Dictionaries {
|
|
|
13252
13318
|
DEFAULT: string;
|
|
13253
13319
|
DEFAULTS: string;
|
|
13254
13320
|
DEFAULT_ANSWER: string;
|
|
13321
|
+
DEFAULT_ARTICLE: string;
|
|
13255
13322
|
DEFAULT_ARTICLE_GROUP: string;
|
|
13256
13323
|
DEFAULT_AVAILABLE: string;
|
|
13257
13324
|
DEFAULT_CHOICE: string;
|
|
@@ -13616,6 +13683,7 @@ export declare class Dictionaries {
|
|
|
13616
13683
|
DRIVER_CHECKOUT_DEFAULT: string;
|
|
13617
13684
|
DRIVER_CHECKOUT_EXISTING_SELECTION: string;
|
|
13618
13685
|
DROPSHIPMENT: string;
|
|
13686
|
+
DROPSHIPMENT_NO: string;
|
|
13619
13687
|
DROPSHIPMENT_AVAILABLE: string;
|
|
13620
13688
|
DROPSHIPMENT_INFO: string;
|
|
13621
13689
|
DROPSHIPMENT_POSSIBLE: string;
|
|
@@ -14184,6 +14252,7 @@ export declare class Dictionaries {
|
|
|
14184
14252
|
FREQUENT_ABSENCE: string;
|
|
14185
14253
|
FRIDAY: string;
|
|
14186
14254
|
FRIDAY_ABBREVATION: string;
|
|
14255
|
+
FORMAT: string;
|
|
14187
14256
|
FROM1: string;
|
|
14188
14257
|
FROM: string;
|
|
14189
14258
|
FROM_BOOKING_DATE: string;
|
|
@@ -14469,6 +14538,7 @@ export declare class Dictionaries {
|
|
|
14469
14538
|
INCLUDE_LINE_DETAILS: string;
|
|
14470
14539
|
INCLUDE_NO_STOCK_ART: string;
|
|
14471
14540
|
INCLUDE_REAFFIRMATIONS: string;
|
|
14541
|
+
INCLUDE_UNPROCESSED_ENTRIES: string;
|
|
14472
14542
|
INCLUDING_CONTACT_PERSONS: string;
|
|
14473
14543
|
INCLUDING_OPENING_BALANCE: string;
|
|
14474
14544
|
INCLUDING_PRINTED: string;
|
|
@@ -14512,6 +14582,7 @@ export declare class Dictionaries {
|
|
|
14512
14582
|
INPUT: string;
|
|
14513
14583
|
INPUT_DISCOUNT: string;
|
|
14514
14584
|
INPUT_NEW_LINE: string;
|
|
14585
|
+
INPUT_VOUCHER_CODE: string;
|
|
14515
14586
|
INSERT_NEW_DRAWER: string;
|
|
14516
14587
|
INSERT_NEW_FORM: string;
|
|
14517
14588
|
INSERT_NEW_RELATION: string;
|
|
@@ -14694,6 +14765,7 @@ export declare class Dictionaries {
|
|
|
14694
14765
|
KASPICK_PRINTER: string;
|
|
14695
14766
|
KEEP_LOCATION: string;
|
|
14696
14767
|
KEYBOARD_LAYOUT: string;
|
|
14768
|
+
KEYCLOAK_SYNC_ISSUE: string;
|
|
14697
14769
|
KILL_SESSION: string;
|
|
14698
14770
|
KIND: string;
|
|
14699
14771
|
KIND_OF_ART_DESCRIPTION: string;
|
|
@@ -15635,7 +15707,9 @@ export declare class Dictionaries {
|
|
|
15635
15707
|
NOT_COMPLETE: string;
|
|
15636
15708
|
NOT_COMPLETELY_ALLOCATED: string;
|
|
15637
15709
|
NOT_COMPLETE_ORDERS: string;
|
|
15710
|
+
NOT_CHECKED: string;
|
|
15638
15711
|
NOT_DEFINITE: string;
|
|
15712
|
+
NOT_DELIVERED: string;
|
|
15639
15713
|
NOT_ENOUGH_CONTAINER_VOLUME: string;
|
|
15640
15714
|
NOT_EXPIRED: string;
|
|
15641
15715
|
NOT_FOUND: string;
|
|
@@ -15911,6 +15985,7 @@ export declare class Dictionaries {
|
|
|
15911
15985
|
ON_HOLD_CODE: string;
|
|
15912
15986
|
ON_HOLD_CODES: string;
|
|
15913
15987
|
ON_MY_DASH: string;
|
|
15988
|
+
ON_STORAGE_UNIT: string;
|
|
15914
15989
|
OPEN: string;
|
|
15915
15990
|
OPENING: string;
|
|
15916
15991
|
OPENING_BALANCE: string;
|
|
@@ -15963,6 +16038,7 @@ export declare class Dictionaries {
|
|
|
15963
16038
|
OPTED_FOR_CASH: string;
|
|
15964
16039
|
OPTED_FOR_PIN: string;
|
|
15965
16040
|
OPTION: string;
|
|
16041
|
+
OPTION_LIBRARY: string;
|
|
15966
16042
|
OPTIONAL: string;
|
|
15967
16043
|
OPTIONS: string;
|
|
15968
16044
|
OPTIONVALUE: string;
|
|
@@ -16010,6 +16086,7 @@ export declare class Dictionaries {
|
|
|
16010
16086
|
ORDER_BY_ARTICLENR: string;
|
|
16011
16087
|
ORDER_BY_CUST_REACTION: string;
|
|
16012
16088
|
ORDER_CANNOT_BE_COMPLETELY_ACCEPTED: string;
|
|
16089
|
+
ORDER_CAN_NOT_BE_PLANNED_ON_RESOURCE: string;
|
|
16013
16090
|
ORDER_CODE: string;
|
|
16014
16091
|
ORDER_COMMISSION: string;
|
|
16015
16092
|
ORDER_COMMISSION_ADVICE: string;
|
|
@@ -16412,6 +16489,7 @@ export declare class Dictionaries {
|
|
|
16412
16489
|
PORTAL_ID: string;
|
|
16413
16490
|
PORTAL_LOGIN: string;
|
|
16414
16491
|
PORT_COST: string;
|
|
16492
|
+
PONTO_INTEGRATION_SUCCESFULLY_AUTHORIZED: string;
|
|
16415
16493
|
POS2: string;
|
|
16416
16494
|
POS: string;
|
|
16417
16495
|
POSGROUP_REQUIRED: string;
|
|
@@ -16551,6 +16629,7 @@ export declare class Dictionaries {
|
|
|
16551
16629
|
PRICE_TAG_IMAGE: string;
|
|
16552
16630
|
PRICE_TAG_INTER_BRANCH: string;
|
|
16553
16631
|
PRICE_TAG_STICKERS: string;
|
|
16632
|
+
PRINT_PRICE_TAG_STICKERS: string;
|
|
16554
16633
|
PRICE_TAG_TEXT: string;
|
|
16555
16634
|
PRICE_TESTER: string;
|
|
16556
16635
|
PRICE_TO: string;
|
|
@@ -17467,6 +17546,7 @@ export declare class Dictionaries {
|
|
|
17467
17546
|
SEARCH_BUYORDERS: string;
|
|
17468
17547
|
SEARCH_BY_ARTICLENUMBER_NAME_OR_DESCRIPTION: string;
|
|
17469
17548
|
SEARCH_BY_ARTICLENUMBER_OR_DESCRIPTION: string;
|
|
17549
|
+
SEARCH_BY_OPTION_VALUE: string;
|
|
17470
17550
|
SEARCH_FILTER: string;
|
|
17471
17551
|
SEARCH_CATALOGUE: string;
|
|
17472
17552
|
SEARCH_CODE: string;
|
|
@@ -17557,6 +17637,7 @@ export declare class Dictionaries {
|
|
|
17557
17637
|
SELECT_ACCOUNT_MANAGER: string;
|
|
17558
17638
|
SELECT_CONSULTANT: string;
|
|
17559
17639
|
SELECT_EMPLOYER: string;
|
|
17640
|
+
SELECT_LINE_FIRST: string;
|
|
17560
17641
|
SELECT_MAILING_CODE: string;
|
|
17561
17642
|
SELECT_CASE_MANAGER: string;
|
|
17562
17643
|
SELECT_MEDICAL_OFFICER: string;
|
|
@@ -18033,6 +18114,7 @@ export declare class Dictionaries {
|
|
|
18033
18114
|
STOCK_ADJUSTMENTS: string;
|
|
18034
18115
|
STOCK_AVAILABLE_CHANGE_WAREHOUSE_OR_COMMISSIONCODE: string;
|
|
18035
18116
|
STOCK_BELOW_ZERO_TEXT: string;
|
|
18117
|
+
STOCK_COMPARISON: string;
|
|
18036
18118
|
STOCK_DATE: string;
|
|
18037
18119
|
STOCK_DETAILS: string;
|
|
18038
18120
|
STOCK_DIFFERENCES: string;
|
|
@@ -18050,6 +18132,7 @@ export declare class Dictionaries {
|
|
|
18050
18132
|
STOCK_NOT_EDITABLE: string;
|
|
18051
18133
|
STOCK_NOT_EDITABLE_BECAUSE_OF_LOCKED_STOCKS: string;
|
|
18052
18134
|
STOCK_NOT_EDITABLE_BECAUSE_OF_TRANSACTIONS: string;
|
|
18135
|
+
STOCK_OVERVIEW: string;
|
|
18053
18136
|
STOCK_PARAMETERS: string;
|
|
18054
18137
|
STOCK_REPLENISHMENT: string;
|
|
18055
18138
|
STOCK_REMARK: string;
|
|
@@ -18101,6 +18184,7 @@ export declare class Dictionaries {
|
|
|
18101
18184
|
STYLE_GROUPING: string;
|
|
18102
18185
|
SUBJECT: string;
|
|
18103
18186
|
SUBMIT: string;
|
|
18187
|
+
SUBMIT_A_NEW_VOUCHER_CODE: string;
|
|
18104
18188
|
SUBSCRIBE: string;
|
|
18105
18189
|
SUBTOTAL: string;
|
|
18106
18190
|
SUBTOTAL_ACCOUNT: string;
|
|
@@ -18570,6 +18654,7 @@ export declare class Dictionaries {
|
|
|
18570
18654
|
UNDELIVERED_PURCHASE: string;
|
|
18571
18655
|
UNDERLYING_OPVS: string;
|
|
18572
18656
|
UNDERSTOOD_DONT_SHOW_AGAIN: string;
|
|
18657
|
+
UNDO: string;
|
|
18573
18658
|
UNDO_DELETE: string;
|
|
18574
18659
|
UNDO_RETURNS: string;
|
|
18575
18660
|
UNDO_DELIVERY: string;
|
|
@@ -18611,6 +18696,8 @@ export declare class Dictionaries {
|
|
|
18611
18696
|
UPDATE_SINGLE_SEARCH_INDEX: string;
|
|
18612
18697
|
UPDATE_STOCK: string;
|
|
18613
18698
|
UPLOAD: string;
|
|
18699
|
+
UPLOADING: string;
|
|
18700
|
+
UPLOADED: string;
|
|
18614
18701
|
UPLOAD_FILE: string;
|
|
18615
18702
|
UPLOAD_IMAGE: string;
|
|
18616
18703
|
UPLOAD_IMAGE_MSG: string;
|
|
@@ -18748,9 +18835,11 @@ export declare class Dictionaries {
|
|
|
18748
18835
|
VOUCHER_AMOUNT: string;
|
|
18749
18836
|
VOUCHER_CAN_ONLY_BE_USED_ONCE: string;
|
|
18750
18837
|
VOUCHER_CODE: string;
|
|
18838
|
+
VOUCHER_CODE_ALREADY_EXISTS: string;
|
|
18751
18839
|
VOUCHER_CODE_EXISTS: string;
|
|
18752
18840
|
VOUCHER_CODE_INFO: string;
|
|
18753
18841
|
VOUCHER_EXPIRED: string;
|
|
18842
|
+
VOUCHER_INFORMATION: string;
|
|
18754
18843
|
VOUCHER_MAX_USED: string;
|
|
18755
18844
|
VOUCHER_NO_BALANCE: string;
|
|
18756
18845
|
VOUCHER_NOT_INVOICED: string;
|
|
@@ -18783,6 +18872,7 @@ export declare class Dictionaries {
|
|
|
18783
18872
|
WAREHOUSE_RECEIPT: string;
|
|
18784
18873
|
WAREHOUSE_REQUIRED: string;
|
|
18785
18874
|
WAREHOUSE_ROWS: string;
|
|
18875
|
+
WAREHOUSE_TRANSFERS: string;
|
|
18786
18876
|
WARNING: string;
|
|
18787
18877
|
WARNING_MESSAGE_DELETE_NOTIFICATION_LINKS: string;
|
|
18788
18878
|
WARNING_MESSAGE_DELETE_STANDARD_LIST: string;
|