@colijnit/sharedcomponents 1.0.35 → 1.0.36
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 +47 -5
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/stock/stock-information/stock-information.component.js +4 -3
- package/esm2015/lib/components/stock/stock-information-grid/stock-information-grid.component.js +3 -1
- package/esm2015/lib/components/stock/stock-transfer/stock-transfer.component.js +7 -5
- package/esm2015/lib/components/stock/stock.component.js +7 -1
- package/esm2015/lib/model/stock-status.model.js +3 -0
- package/esm2015/lib/service/shared-connector.service.js +18 -1
- package/esm2015/lib/service/stock.service.js +6 -1
- package/fesm2015/colijnit-sharedcomponents.js +41 -6
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/stock/stock-information/stock-information.component.d.ts +1 -0
- package/lib/components/stock/stock.component.d.ts +2 -0
- package/lib/components/stock/style/_layout.scss +1 -1
- package/lib/model/stock-status.model.d.ts +6 -0
- package/lib/service/shared-connector.service.d.ts +1 -0
- package/lib/service/stock.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -31,6 +31,7 @@ export declare class StockComponent implements OnDestroy {
|
|
|
31
31
|
stockHistory: StockHistoryBo[];
|
|
32
32
|
allAvailableStock: number;
|
|
33
33
|
allTechnicalStock: number;
|
|
34
|
+
allAmountLaterAvailable: number;
|
|
34
35
|
private _subscriptions;
|
|
35
36
|
constructor(stockService: StockService, _optionsService: OptionsService, _dictionary: DictionaryService, _changeDetector: ChangeDetectorRef);
|
|
36
37
|
ngOnDestroy(): void;
|
|
@@ -39,6 +40,7 @@ export declare class StockComponent implements OnDestroy {
|
|
|
39
40
|
backToStock(): void;
|
|
40
41
|
getStockHistory(): Promise<void>;
|
|
41
42
|
getStockInformation(data: ArticleStock): Promise<void>;
|
|
43
|
+
getArtStockStatus(): void;
|
|
42
44
|
private _handleSettingsLoaded;
|
|
43
45
|
private _initConnection;
|
|
44
46
|
}
|
|
@@ -34,6 +34,7 @@ export declare class SharedConnectorService {
|
|
|
34
34
|
updateArticleDetails(data: ArticleDetailsBo): Promise<boolean>;
|
|
35
35
|
lockArticleDetails(data: ArticleStockManagement): Promise<boolean>;
|
|
36
36
|
getStockStatus(): Promise<StockStatus[]>;
|
|
37
|
+
getArtStockStatus(goodId: number, branchNo?: string, requestedAmount?: number, warehouseId?: number): Promise<DataServiceResponseData>;
|
|
37
38
|
getArticleTransaction(data: ArticleTransaction): Promise<ArticleTransactionBo[]>;
|
|
38
39
|
commit(): Promise<DataServiceResponseData>;
|
|
39
40
|
}
|
|
@@ -23,6 +23,7 @@ export declare class StockService {
|
|
|
23
23
|
getArticleDetails(data: ArticleStockManagement): Promise<ArticleDetailsBo[]>;
|
|
24
24
|
updateArticleDetails(data: ArticleDetailsBo): Promise<boolean>;
|
|
25
25
|
getStockState(): Promise<StockStatus[]>;
|
|
26
|
+
getArtStockStatus(goodId: number, branchNo?: string, requestedAmount?: number, warehouseId?: number): Promise<DataServiceResponseData>;
|
|
26
27
|
getStockManagementWarehouses(): Promise<StockManagementWarehouses[]>;
|
|
27
28
|
getStockManagementLocations(warehouseNo: number): Promise<StockLocation[]>;
|
|
28
29
|
getArticleTransaction(data: ArticleTransaction): Promise<ArticleTransactionBo[]>;
|