@colijnit/sharedcomponents 258.1.14 → 258.1.16
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 +40 -8
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/linear-gauge/co-linear-gauge.component.js +11 -3
- package/esm2015/lib/components/statusbar/statusbar-popup.component.js +15 -3
- package/esm2015/lib/components/statusbar/statusbar.component.js +1 -1
- package/esm2015/lib/components/stock/components/stock-tab/stock-tab.component.js +2 -2
- package/esm2015/lib/components/stock/stock-tabs/stock-tabs.component.js +14 -3
- package/esm2015/lib/enum/gauge-color.enum.js +2 -1
- package/esm2015/lib/res/dictionary/dictionaries.js +2 -2
- package/fesm2015/colijnit-sharedcomponents.js +39 -8
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/statusbar/statusbar-popup.component.d.ts +2 -0
- package/lib/components/statusbar/statusbar.component.d.ts +1 -1
- package/lib/components/statusbar/style/_layout.scss +3 -0
- package/lib/components/stock/stock-tabs/stock-tabs.component.d.ts +3 -1
- package/lib/enum/gauge-color.enum.d.ts +1 -0
- package/lib/res/dictionary/dictionaries.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { StatusbarData } from './statusbar.component';
|
|
3
3
|
export declare enum GaugeColor {
|
|
4
|
+
Disabled = "#e7e7e7",
|
|
4
5
|
Lowest = "#E0E0E0",
|
|
5
6
|
Low = "#fff7b8",
|
|
6
7
|
MediumLow = "#ffe367",
|
|
@@ -19,5 +20,6 @@ export declare class StatusbarPopupComponent implements OnInit {
|
|
|
19
20
|
ngOnInit(): void;
|
|
20
21
|
private _prepareChartData;
|
|
21
22
|
private _getColor;
|
|
23
|
+
private _getDataForChart;
|
|
22
24
|
handleStatusClicked(label: string): void;
|
|
23
25
|
}
|
|
@@ -2,7 +2,7 @@ import { ElementRef, EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { OverlayService } from '@colijnit/corecomponents_v12';
|
|
3
3
|
export interface StatusbarData {
|
|
4
4
|
label: string;
|
|
5
|
-
percentage
|
|
5
|
+
percentage?: number;
|
|
6
6
|
count?: number;
|
|
7
7
|
totalCount?: number;
|
|
8
8
|
category?: string;
|
|
@@ -8,10 +8,12 @@ import { PrintPriceStickers } from '@colijnit/sharedapi/build/model/print-price-
|
|
|
8
8
|
import { ArticleExtended } from '@colijnit/articleapi/build/model/article-extended.bo';
|
|
9
9
|
import { ArticleFlat } from '@colijnit/articleapi/build/model/article-flat.bo';
|
|
10
10
|
import { SharedComponentsDictionaryService } from '../../../translation/shared-components-dictionary.service';
|
|
11
|
+
import { StockModuleScreenConfigService } from '../service/stock-module-screen-config.service';
|
|
11
12
|
export declare class StockTabsComponent implements OnInit {
|
|
12
13
|
private _stockService;
|
|
13
14
|
private _dictionaryService;
|
|
14
15
|
private _changeDetector;
|
|
16
|
+
private _stockScreenConfigService;
|
|
15
17
|
readonly icons: typeof Icon;
|
|
16
18
|
stockInformation: ArticleStockBo[];
|
|
17
19
|
article: ArticleExtended;
|
|
@@ -24,7 +26,7 @@ export declare class StockTabsComponent implements OnInit {
|
|
|
24
26
|
selectedWarehouse: StockManagementWarehouses;
|
|
25
27
|
tabs: Tab[];
|
|
26
28
|
historyTabs: Tab[];
|
|
27
|
-
constructor(_stockService: StockService, _dictionaryService: SharedComponentsDictionaryService, _changeDetector: ChangeDetectorRef);
|
|
29
|
+
constructor(_stockService: StockService, _dictionaryService: SharedComponentsDictionaryService, _changeDetector: ChangeDetectorRef, _stockScreenConfigService: StockModuleScreenConfigService);
|
|
28
30
|
ngOnInit(): void;
|
|
29
31
|
onShowStockTransferChange(show: boolean): void;
|
|
30
32
|
handleLocationClicked(data: string): void;
|
|
@@ -25023,6 +25023,7 @@ export declare class Dictionaries {
|
|
|
25023
25023
|
BRANCH_ADDRESS: string;
|
|
25024
25024
|
BRANCH_BLOCKED: string;
|
|
25025
25025
|
BRANCH_CHANGED_WAREHOUSE_REQUIRED: string;
|
|
25026
|
+
BRANCH_IN_PURCHASE_ORDER: string;
|
|
25026
25027
|
BRANCH_NAME: string;
|
|
25027
25028
|
BRANCH_NR: string;
|
|
25028
25029
|
BRANCH_NUMBER: string;
|
|
@@ -28840,6 +28841,7 @@ export declare class Dictionaries {
|
|
|
28840
28841
|
ORDER_DISCOUNT_PERC: string;
|
|
28841
28842
|
ORDER_DISCOUNT_TOTAL: string;
|
|
28842
28843
|
ORDER_FORM: string;
|
|
28844
|
+
ORDER_FOR_WAREHOUSE: string;
|
|
28843
28845
|
ORDER_FULLY_PAID: string;
|
|
28844
28846
|
ORDER_DEPOSIT_FULLY_PAID: string;
|
|
28845
28847
|
ORDER_GROSS: string;
|
|
@@ -30139,6 +30141,7 @@ export declare class Dictionaries {
|
|
|
30139
30141
|
SALES_AND_PURCHASE: string;
|
|
30140
30142
|
SALES_BOOK: string;
|
|
30141
30143
|
SALES_CHANNELS: string;
|
|
30144
|
+
SALES_CONVERSION: string;
|
|
30142
30145
|
SALES_DESCRIPTION: string;
|
|
30143
30146
|
SALES_INFO: string;
|
|
30144
30147
|
SALES_INVOICES: string;
|
|
@@ -30557,6 +30560,7 @@ export declare class Dictionaries {
|
|
|
30557
30560
|
SETTLED_SO_FAR: string;
|
|
30558
30561
|
SET_AS_DEFAULT_SETTING: string;
|
|
30559
30562
|
SET_COLOR: string;
|
|
30563
|
+
SET_SALES_ORDER_VALUES: string;
|
|
30560
30564
|
SET_TO_DROP_SHIPMENT_LIKE_OTHER_DIRECT_SELL_LINES: string;
|
|
30561
30565
|
SET_VAT_FOR_OTHER_COUNTRY: string;
|
|
30562
30566
|
SHAPE: string;
|