@colijnit/sharedcomponents 259.1.23 → 259.1.25
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 +58 -18
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/send-method-dialog/components/printer-selection/printer-selection.component.js +40 -32
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.js +2 -2
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +4 -2
- package/esm2015/lib/components/send-method-dialog/service/send-method.service.js +2 -1
- package/esm2015/lib/components/stock/components/stock-location/components/stock-location-popup/stock-location-popup.component.js +58 -16
- package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
- package/fesm2015/colijnit-sharedcomponents.js +103 -50
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/send-method-dialog/components/printer-selection/printer-selection.component.d.ts +1 -0
- package/lib/components/send-method-dialog/send-method-dialog.component.d.ts +1 -0
- package/lib/components/send-method-dialog/service/send-method.service.d.ts +1 -0
- package/lib/components/stock/components/stock-location/components/stock-location-popup/stock-location-popup.component.d.ts +2 -0
- package/lib/res/dictionary/dictionaries.d.ts +62 -2
- package/package.json +1 -1
|
@@ -11,6 +11,7 @@ export declare class PrinterSelectionComponent implements OnInit {
|
|
|
11
11
|
readonly icons: typeof Icon;
|
|
12
12
|
private _defaultPrinter;
|
|
13
13
|
printers: Printer[];
|
|
14
|
+
required: boolean;
|
|
14
15
|
set defaultPrinter(printer: Printer);
|
|
15
16
|
showClass(): boolean;
|
|
16
17
|
showPrinterList: boolean;
|
|
@@ -75,6 +75,7 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
75
75
|
showPdf: boolean;
|
|
76
76
|
selectedPurchaseMethod: any;
|
|
77
77
|
additionalFileHasBeenSaved: boolean;
|
|
78
|
+
disableOkButton: boolean;
|
|
78
79
|
handlePurchaseMethodChange(method: any): void;
|
|
79
80
|
private _subscriptions;
|
|
80
81
|
constructor(iconCacheService: IconCacheService, _sendMethodService: SendMethodService);
|
|
@@ -6,6 +6,7 @@ export declare class SendMethodService {
|
|
|
6
6
|
reportingDocumentPrintSignDocBaseRequestChanged: Subject<ReportingDocumentPrintSignDocBaseRequest>;
|
|
7
7
|
reportingDocumentEmailSignDocBaseRequestChanged: Subject<ReportingDocumentEmailSignDocBaseRequest>;
|
|
8
8
|
reportingDocumentPdfBaseRequestChanged: Subject<ReportingDocumentPdfBaseRequest>;
|
|
9
|
+
printerNotSet: Subject<boolean>;
|
|
9
10
|
set reportingDocumentPrintSignDocBaseRequest(value: ReportingDocumentPrintSignDocBaseRequest);
|
|
10
11
|
get reportingDocumentPrintSignDocBaseRequest(): ReportingDocumentPrintSignDocBaseRequest;
|
|
11
12
|
set reportingDocumentEmailSignDocBaseRequest(value: ReportingDocumentEmailSignDocBaseRequest);
|
|
@@ -31,6 +31,7 @@ export declare class StockLocationPopupComponent {
|
|
|
31
31
|
stockLocations: StockLocation[];
|
|
32
32
|
stockStatus: StockStatus[];
|
|
33
33
|
stockBelow: boolean;
|
|
34
|
+
validationMessage: string;
|
|
34
35
|
constructor(iconCacheService: IconCacheService, _stockService: StockService, _changeDetector: ChangeDetectorRef);
|
|
35
36
|
statusForId(id: number): 0 | StockStatus;
|
|
36
37
|
handleStockStatusChange(status: StockStatus): void;
|
|
@@ -44,4 +45,5 @@ export declare class StockLocationPopupComponent {
|
|
|
44
45
|
locationChanged(event: StockLocation): void;
|
|
45
46
|
handleStockChange(): void;
|
|
46
47
|
newDate(): Date;
|
|
48
|
+
private validateForm;
|
|
47
49
|
}
|
|
@@ -7672,6 +7672,19 @@ export declare class Dictionaries {
|
|
|
7672
7672
|
">_30_DAYS": string;
|
|
7673
7673
|
">_60_DAYS": string;
|
|
7674
7674
|
ABBREVIATION: string;
|
|
7675
|
+
ACCOUNT_KIND_BALANCE: string;
|
|
7676
|
+
ACCOUNT_KIND_CAPITAL: string;
|
|
7677
|
+
ACCOUNT_KIND_CREDITOR: string;
|
|
7678
|
+
ACCOUNT_KIND_DEBTOR: string;
|
|
7679
|
+
ACCOUNT_KIND_PROFIT_AND_LOSS: string;
|
|
7680
|
+
ACCOUNT_TYPE_ASSETS: string;
|
|
7681
|
+
ACCOUNT_TYPE_EXPENSE: string;
|
|
7682
|
+
ACCOUNT_TYPE_LIABILITIES: string;
|
|
7683
|
+
ACCOUNT_TYPE_NEUTRAL: string;
|
|
7684
|
+
ACCOUNT_TYPE_PURCHASE: string;
|
|
7685
|
+
ACCOUNT_TYPE_REVENUE: string;
|
|
7686
|
+
ACCOUNTING_OPERATION_TYPE_CREDIT: string;
|
|
7687
|
+
ACCOUNTING_OPERATION_TYPE_DEBIT: string;
|
|
7675
7688
|
ABBREVIATION_DAYS: string;
|
|
7676
7689
|
ABBREVIATION_HOURS: string;
|
|
7677
7690
|
ABBREVIATION_MINUTES: string;
|
|
@@ -7828,6 +7841,7 @@ export declare class Dictionaries {
|
|
|
7828
7841
|
CONNECTIVE_ARTICLES: string;
|
|
7829
7842
|
CONNECTORS_JSON: string;
|
|
7830
7843
|
CONNECTOR_MISMATCH: string;
|
|
7844
|
+
CONNECTOR_OPTIONS: string;
|
|
7831
7845
|
CONNECT_DRAWER: string;
|
|
7832
7846
|
CONNECT_PRINTER: string;
|
|
7833
7847
|
CONSULTANT: string;
|
|
@@ -10248,6 +10262,7 @@ export declare class Dictionaries {
|
|
|
10248
10262
|
CREATE_ABSENCE: string;
|
|
10249
10263
|
CREATE_ACCOUNT: string;
|
|
10250
10264
|
CREATE_ACCOUNT_IN_2_MIN: string;
|
|
10265
|
+
CREATE_A_NEW_VAT: string;
|
|
10251
10266
|
CREATE_AUDIT_FILE: string;
|
|
10252
10267
|
ROLE: string;
|
|
10253
10268
|
ROLES: string;
|
|
@@ -10642,6 +10657,7 @@ export declare class Dictionaries {
|
|
|
10642
10657
|
FINANCIAL_DASHBOARD: string;
|
|
10643
10658
|
FINANCIAL_GROUP_ID: string;
|
|
10644
10659
|
FINANCIAL_OVERVIEW: string;
|
|
10660
|
+
FINANCIAL_REPORT: string;
|
|
10645
10661
|
FINANCIAL_STATUS_ORDER: string;
|
|
10646
10662
|
FINANCIAL_SUPPLER_GROUP_ADMINISTRATION: string;
|
|
10647
10663
|
FINANCIAL_SUPPLIER_GROUP: string;
|
|
@@ -11486,6 +11502,8 @@ export declare class Dictionaries {
|
|
|
11486
11502
|
LAYOUT: string;
|
|
11487
11503
|
LAYOUT2: string;
|
|
11488
11504
|
LAYOUTS: string;
|
|
11505
|
+
LAYOUT_RETURN_CODE: string;
|
|
11506
|
+
LAYOUT_TYPE: string;
|
|
11489
11507
|
LAYOUT_SETTINGS: string;
|
|
11490
11508
|
LEAD_TIME: string;
|
|
11491
11509
|
LEAD_TIME2: string;
|
|
@@ -12715,6 +12733,7 @@ export declare class Dictionaries {
|
|
|
12715
12733
|
ASSIGN_THIS_ORDER_FULLY: string;
|
|
12716
12734
|
ASSISTANT: string;
|
|
12717
12735
|
AS_OF: string;
|
|
12736
|
+
AS_OF_DATE: string;
|
|
12718
12737
|
AT: string;
|
|
12719
12738
|
AT1: string;
|
|
12720
12739
|
AT2: string;
|
|
@@ -12835,6 +12854,7 @@ export declare class Dictionaries {
|
|
|
12835
12854
|
COMMUNICATION: string;
|
|
12836
12855
|
COMMUNICATIONS: string;
|
|
12837
12856
|
COMMUNICATION_FAILED: string;
|
|
12857
|
+
COMPACTION: string;
|
|
12838
12858
|
COMPACTION_DESCRIPTION: string;
|
|
12839
12859
|
COMPANIES: string;
|
|
12840
12860
|
COMPANY: string;
|
|
@@ -13225,7 +13245,6 @@ export declare class Dictionaries {
|
|
|
13225
13245
|
MESSAGE_NO_TASKS_AUTO_REFRESH: string;
|
|
13226
13246
|
SHOPPING_CART_ADD: string;
|
|
13227
13247
|
SHOPPING_CART_CHECKOUT: string;
|
|
13228
|
-
SHOPPING_CART_CHECKOUT_QUOTATION: string;
|
|
13229
13248
|
SHOPPING_CART_IN: string;
|
|
13230
13249
|
SHOPPING_CART_OVERVIEW: string;
|
|
13231
13250
|
SHOPPING_CART_RESUME: string;
|
|
@@ -14154,6 +14173,7 @@ export declare class Dictionaries {
|
|
|
14154
14173
|
TARGETLOCATION_REQUIRED: string;
|
|
14155
14174
|
TARGETWAREHOUSE_REQUIRED: string;
|
|
14156
14175
|
TARGET_BRANCH: string;
|
|
14176
|
+
TARGET_BRANCH_REQUIRED: string;
|
|
14157
14177
|
TARGET_DATE: string;
|
|
14158
14178
|
TARGET_DATE_AFTER: string;
|
|
14159
14179
|
TARGET_DATE_SPEC: string;
|
|
@@ -14213,6 +14233,11 @@ export declare class Dictionaries {
|
|
|
14213
14233
|
STOCK_ADJUSTMENTS: string;
|
|
14214
14234
|
STOCK_AVAILABLE_CHANGE_WAREHOUSE_OR_COMMISSIONCODE: string;
|
|
14215
14235
|
STOCK_BELOW_ZERO_TEXT: string;
|
|
14236
|
+
WAREHOUSE_IS_REQUIRED: string;
|
|
14237
|
+
LOCATION_IS_REQUIRED: string;
|
|
14238
|
+
SERIAL_NR_IS_REQUIRED: string;
|
|
14239
|
+
BATCH_IS_REQUIRED: string;
|
|
14240
|
+
STOCK_IS_REQUIRED: string;
|
|
14216
14241
|
STOCK_COMPARISON: string;
|
|
14217
14242
|
STOCK_DATE: string;
|
|
14218
14243
|
STOCK_DETAILS: string;
|
|
@@ -16040,6 +16065,8 @@ export declare class Dictionaries {
|
|
|
16040
16065
|
MESSAGE_TIMEZONES_COULD_NOT_BE_LOADED: string;
|
|
16041
16066
|
MESSAGE_TIME_NOT_AVAILABLE: string;
|
|
16042
16067
|
MESSAGE_TO_PAY_DOWN_NO_CUSTOMER: string;
|
|
16068
|
+
SEQUENCE_LAST_NUMBER: string;
|
|
16069
|
+
SEQUENCE_NAME: string;
|
|
16043
16070
|
};
|
|
16044
16071
|
text_fr: {
|
|
16045
16072
|
"0_RESULTS_FOUND": string;
|
|
@@ -23708,6 +23735,19 @@ export declare class Dictionaries {
|
|
|
23708
23735
|
"3D_VISUALISATION": string;
|
|
23709
23736
|
"3D_VISUALISATION_ARTICLE": string;
|
|
23710
23737
|
ABBREVIATION: string;
|
|
23738
|
+
ACCOUNT_KIND_BALANCE: string;
|
|
23739
|
+
ACCOUNT_KIND_CAPITAL: string;
|
|
23740
|
+
ACCOUNT_KIND_CREDITOR: string;
|
|
23741
|
+
ACCOUNT_KIND_DEBTOR: string;
|
|
23742
|
+
ACCOUNT_KIND_PROFIT_AND_LOSS: string;
|
|
23743
|
+
ACCOUNT_TYPE_ASSETS: string;
|
|
23744
|
+
ACCOUNT_TYPE_EXPENSE: string;
|
|
23745
|
+
ACCOUNT_TYPE_LIABILITIES: string;
|
|
23746
|
+
ACCOUNT_TYPE_NEUTRAL: string;
|
|
23747
|
+
ACCOUNT_TYPE_PURCHASE: string;
|
|
23748
|
+
ACCOUNT_TYPE_REVENUE: string;
|
|
23749
|
+
ACCOUNTING_OPERATION_TYPE_CREDIT: string;
|
|
23750
|
+
ACCOUNTING_OPERATION_TYPE_DEBIT: string;
|
|
23711
23751
|
ABBREVIATION_DAYS: string;
|
|
23712
23752
|
ABBREVIATION_HOURS: string;
|
|
23713
23753
|
ABBREVIATION_MINUTES: string;
|
|
@@ -24707,6 +24747,7 @@ export declare class Dictionaries {
|
|
|
24707
24747
|
AMOUNT_OUT: string;
|
|
24708
24748
|
AMOUNT_OUTSTANDING_CREDITORS: string;
|
|
24709
24749
|
AMOUNT_OUTSTANDING_DEBTORS: string;
|
|
24750
|
+
AMOUNT_PER_UNIT: string;
|
|
24710
24751
|
AMOUNT_PICKED: string;
|
|
24711
24752
|
AMOUNT_PRE_RECEIVED: string;
|
|
24712
24753
|
AMOUNT_PRODUCTS: string;
|
|
@@ -24763,6 +24804,7 @@ export declare class Dictionaries {
|
|
|
24763
24804
|
APPPEARANCE: string;
|
|
24764
24805
|
APPRAISAL: string;
|
|
24765
24806
|
APPROVE: string;
|
|
24807
|
+
APPROVAL: string;
|
|
24766
24808
|
APP_BUTTONS: string;
|
|
24767
24809
|
APP_TITLE: string;
|
|
24768
24810
|
APRIL: string;
|
|
@@ -24879,6 +24921,7 @@ export declare class Dictionaries {
|
|
|
24879
24921
|
ASSIGNMENTS: string;
|
|
24880
24922
|
ASSISTANT: string;
|
|
24881
24923
|
AS_OF: string;
|
|
24924
|
+
AS_OF_DATE: string;
|
|
24882
24925
|
AT1: string;
|
|
24883
24926
|
AT2: string;
|
|
24884
24927
|
AT: string;
|
|
@@ -25528,6 +25571,7 @@ export declare class Dictionaries {
|
|
|
25528
25571
|
COLORS: string;
|
|
25529
25572
|
COLORS_SELECTED: string;
|
|
25530
25573
|
COLOR_DESC: string;
|
|
25574
|
+
COLOR_ADJUSTABLE: string;
|
|
25531
25575
|
COLOUR: string;
|
|
25532
25576
|
COLUMN: string;
|
|
25533
25577
|
COLUMNS: string;
|
|
@@ -25558,6 +25602,7 @@ export declare class Dictionaries {
|
|
|
25558
25602
|
COMMONLY_USED_MANAGEMENT_OVERVIEWS: string;
|
|
25559
25603
|
COMMUNICATION: string;
|
|
25560
25604
|
COMMUNICATIONS: string;
|
|
25605
|
+
COMPACTION: string;
|
|
25561
25606
|
COMPACTION_DESCRIPTION: string;
|
|
25562
25607
|
COMPANIES: string;
|
|
25563
25608
|
COMPANY: string;
|
|
@@ -25669,6 +25714,7 @@ export declare class Dictionaries {
|
|
|
25669
25714
|
CONNECTIVE_ARTICLES: string;
|
|
25670
25715
|
CONNECTORS_JSON: string;
|
|
25671
25716
|
CONNECTOR_MISMATCH: string;
|
|
25717
|
+
CONNECTOR_OPTIONS: string;
|
|
25672
25718
|
CONNECT_DRAWER: string;
|
|
25673
25719
|
CONNECT_PRINTER: string;
|
|
25674
25720
|
CONSULTANT: string;
|
|
@@ -25882,6 +25928,7 @@ export declare class Dictionaries {
|
|
|
25882
25928
|
CREATE_NEW_STOCK_RULE: string;
|
|
25883
25929
|
CREATE_NEW_USER_PASSWORD: string;
|
|
25884
25930
|
CREATE_NEW_WORK: string;
|
|
25931
|
+
CREATE_A_NEW_VAT: string;
|
|
25885
25932
|
CREATE_OR_PICK_EXPORT: string;
|
|
25886
25933
|
CREATE_PREVENTIVE_ABSENCE_FILE: string;
|
|
25887
25934
|
CREATE_PURCHASE_ORDER: string;
|
|
@@ -26948,6 +26995,7 @@ export declare class Dictionaries {
|
|
|
26948
26995
|
FINANCIAL_DASHBOARD: string;
|
|
26949
26996
|
FINANCIAL_GROUP_ID: string;
|
|
26950
26997
|
FINANCIAL_OVERVIEW: string;
|
|
26998
|
+
FINANCIAL_REPORT: string;
|
|
26951
26999
|
FINANCIAL_STATUS_ORDER: string;
|
|
26952
27000
|
FINANCIAL_SUPPLER_GROUP_ADMINISTRATION: string;
|
|
26953
27001
|
FINANCIAL_SUPPLIER_GROUP: string;
|
|
@@ -27618,6 +27666,8 @@ export declare class Dictionaries {
|
|
|
27618
27666
|
LAYOUT2: string;
|
|
27619
27667
|
LAYOUT: string;
|
|
27620
27668
|
LAYOUTS: string;
|
|
27669
|
+
LAYOUT_RETURN_CODE: string;
|
|
27670
|
+
LAYOUT_TYPE: string;
|
|
27621
27671
|
LAYOUT_SETTINGS: string;
|
|
27622
27672
|
LEAD_TIME: string;
|
|
27623
27673
|
LEAST_EXPENSIVE_PRODUCT: string;
|
|
@@ -29238,6 +29288,7 @@ export declare class Dictionaries {
|
|
|
29238
29288
|
PINCODE_MUST_BE_4_CHARACTERS: string;
|
|
29239
29289
|
PINPORT_NOT_SET: string;
|
|
29240
29290
|
PIN_BUSY: string;
|
|
29291
|
+
PIN_CATALOG: string;
|
|
29241
29292
|
PIN_CONNECTION_NOT_SUPPORTED: string;
|
|
29242
29293
|
PIN_NOT_SUPPORTED: string;
|
|
29243
29294
|
PIN_PAYMENT_FAILED: string;
|
|
@@ -29258,6 +29309,7 @@ export declare class Dictionaries {
|
|
|
29258
29309
|
PIN_TERMINAL: string;
|
|
29259
29310
|
PIN_TERMINAL_NR: string;
|
|
29260
29311
|
PIN_TERMINALS: string;
|
|
29312
|
+
PINNED: string;
|
|
29261
29313
|
PINNER_ID: string;
|
|
29262
29314
|
PIT_SYMBOLS: string;
|
|
29263
29315
|
PLACE_COLUMNS_HERE_TO_GROUP: string;
|
|
@@ -30304,6 +30356,7 @@ export declare class Dictionaries {
|
|
|
30304
30356
|
SAVING_SYSTEM_ACTION: string;
|
|
30305
30357
|
SAVING_WORKFLOW_DELETES_ALL_TEST_DATA: string;
|
|
30306
30358
|
SBI_CODE: string;
|
|
30359
|
+
SCALABLE: string;
|
|
30307
30360
|
SCALING_AXIS: string;
|
|
30308
30361
|
SCALING_PARAMETERS: string;
|
|
30309
30362
|
SCANNED: string;
|
|
@@ -30676,7 +30729,6 @@ export declare class Dictionaries {
|
|
|
30676
30729
|
SHOPPING_CART: string;
|
|
30677
30730
|
SHOPPING_CART_ADD: string;
|
|
30678
30731
|
SHOPPING_CART_CHECKOUT: string;
|
|
30679
|
-
SHOPPING_CART_CHECKOUT_QUOTATION: string;
|
|
30680
30732
|
SHOPPING_CART_IN: string;
|
|
30681
30733
|
SHOPPING_CART_OVERVIEW: string;
|
|
30682
30734
|
SHOPPING_CART_RESUME: string;
|
|
@@ -30949,6 +31001,11 @@ export declare class Dictionaries {
|
|
|
30949
31001
|
STOCK_ADJUSTMENTS: string;
|
|
30950
31002
|
STOCK_AVAILABLE_CHANGE_WAREHOUSE_OR_COMMISSIONCODE: string;
|
|
30951
31003
|
STOCK_BELOW_ZERO_TEXT: string;
|
|
31004
|
+
WAREHOUSE_IS_REQUIRED: string;
|
|
31005
|
+
LOCATION_IS_REQUIRED: string;
|
|
31006
|
+
SERIAL_NR_IS_REQUIRED: string;
|
|
31007
|
+
BATCH_IS_REQUIRED: string;
|
|
31008
|
+
STOCK_IS_REQUIRED: string;
|
|
30952
31009
|
STOCK_COMPARISON: string;
|
|
30953
31010
|
STOCK_DATE: string;
|
|
30954
31011
|
STOCK_DETAILS: string;
|
|
@@ -31123,6 +31180,7 @@ export declare class Dictionaries {
|
|
|
31123
31180
|
TARGETLOCATION_REQUIRED: string;
|
|
31124
31181
|
TARGETWAREHOUSE_REQUIRED: string;
|
|
31125
31182
|
TARGET_BRANCH: string;
|
|
31183
|
+
TARGET_BRANCH_REQUIRED: string;
|
|
31126
31184
|
TARGET_DATE: string;
|
|
31127
31185
|
TARGET_DATE_AFTER: string;
|
|
31128
31186
|
TARGET_DATE_SPEC: string;
|
|
@@ -31877,5 +31935,7 @@ export declare class Dictionaries {
|
|
|
31877
31935
|
">_30_DAYS": string;
|
|
31878
31936
|
"30_60_DAYS": string;
|
|
31879
31937
|
">_60_DAYS": string;
|
|
31938
|
+
SEQUENCE_LAST_NUMBER: string;
|
|
31939
|
+
SEQUENCE_NAME: string;
|
|
31880
31940
|
};
|
|
31881
31941
|
}
|