@colijnit/sharedcomponents 255.1.21 → 255.1.22
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 +489 -412
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.d.ts +94 -93
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/colijnit-sharedcomponents.js +95 -94
- package/esm2015/lib/components/stock/base/base-stock.component.js +18 -0
- package/esm2015/lib/components/stock/components/allocation-stock-history/allocation-stock-history.component.js +46 -35
- package/esm2015/lib/components/stock/components/order-commission-stock-history/order-commission-stock-history.component.js +45 -34
- package/esm2015/lib/components/stock/components/order-stock-history/order-stock-history.component.js +46 -35
- package/esm2015/lib/components/stock/components/order-stock-tab/order-stock-tab.component.js +19 -8
- package/esm2015/lib/components/stock/components/order-supply-stock-history/order-supply-stock-history.component.js +46 -35
- package/esm2015/lib/components/stock/components/order-tab/order-tab.component.js +19 -8
- package/esm2015/lib/components/stock/components/stock-history/stock-history.component.js +20 -7
- package/esm2015/lib/components/stock/components/stock-location/stock-location.component.js +161 -141
- package/esm2015/lib/components/stock/components/stock-prognose/stock-prognose.component.js +26 -5
- package/esm2015/lib/components/stock/stock-tabs/stock-tabs.component.js +13 -115
- package/esm2015/lib/components/stock/stock.component.js +31 -32
- package/esm2015/lib/components/tab-bar/tab-bar.component.js +1 -4
- package/esm2015/lib/components/tab-bar/tab.interface.js +1 -1
- package/fesm2015/colijnit-sharedcomponents.js +427 -419
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/stock/base/base-stock.component.d.ts +6 -0
- package/lib/components/stock/components/allocation-stock-history/allocation-stock-history.component.d.ts +9 -7
- package/lib/components/stock/components/order-commission-stock-history/order-commission-stock-history.component.d.ts +9 -7
- package/lib/components/stock/components/order-stock-history/order-stock-history.component.d.ts +9 -7
- package/lib/components/stock/components/order-stock-tab/order-stock-tab.component.d.ts +4 -2
- package/lib/components/stock/components/order-supply-stock-history/order-supply-stock-history.component.d.ts +9 -7
- package/lib/components/stock/components/order-tab/order-tab.component.d.ts +4 -3
- package/lib/components/stock/components/stock-history/stock-history.component.d.ts +4 -2
- package/lib/components/stock/components/stock-location/stock-location.component.d.ts +22 -18
- package/lib/components/stock/components/stock-prognose/stock-prognose.component.d.ts +7 -2
- package/lib/components/stock/stock-tabs/stock-tabs.component.d.ts +0 -28
- package/lib/components/stock/stock.component.d.ts +13 -13
- package/lib/components/stock/style/_material-definition.scss +1 -1
- package/lib/components/tab-bar/style/_layout.scss +2 -2
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { __awaiter, __decorate } from 'tslib';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { EventEmitter, Component, ViewEncapsulation, ViewChild, ElementRef, Input, Output, HostBinding, NgModule, Injectable, ChangeDetectorRef, Inject, LOCALE_ID, ViewChildren, HostListener, Pipe, Renderer2, NgZone,
|
|
3
|
+
import { EventEmitter, Component, ViewEncapsulation, ViewChild, ElementRef, Input, Output, HostBinding, NgModule, Injectable, ChangeDetectorRef, Inject, LOCALE_ID, Directive, ViewChildren, HostListener, Pipe, Renderer2, NgZone, ViewContainerRef, ComponentFactoryResolver, forwardRef, ContentChild } from '@angular/core';
|
|
4
4
|
import { trigger, state, style, transition, animate } from '@angular/animations';
|
|
5
5
|
import { PDFDocument } from 'pdf-lib';
|
|
6
6
|
import * as PDFJS from 'pdfjs-dist/legacy/build/pdf';
|
|
@@ -1678,7 +1678,7 @@ class StockComponent {
|
|
|
1678
1678
|
this.articleExtended = articleOrGoodId;
|
|
1679
1679
|
this._goodId = articleOrGoodId.goodId;
|
|
1680
1680
|
}
|
|
1681
|
-
else if (typeof articleOrGoodId ===
|
|
1681
|
+
else if (typeof articleOrGoodId === 'number') {
|
|
1682
1682
|
this._goodId = articleOrGoodId;
|
|
1683
1683
|
}
|
|
1684
1684
|
}
|
|
@@ -1722,7 +1722,7 @@ class StockComponent {
|
|
|
1722
1722
|
getStockInformation(goodId) {
|
|
1723
1723
|
const articleData = new ArticleStock$1();
|
|
1724
1724
|
articleData.goodId = goodId.toString();
|
|
1725
|
-
articleData.viewKind =
|
|
1725
|
+
articleData.viewKind = 'M';
|
|
1726
1726
|
this._stockService.getStockInformation(articleData).then(result => {
|
|
1727
1727
|
this.stockInformation = result;
|
|
1728
1728
|
this.stockInformation.forEach((articleStock) => this.allAvailableStock += articleStock.availableStock);
|
|
@@ -1782,25 +1782,24 @@ class StockComponent {
|
|
|
1782
1782
|
}
|
|
1783
1783
|
StockComponent.decorators = [
|
|
1784
1784
|
{ type: Component, args: [{
|
|
1785
|
-
selector:
|
|
1785
|
+
selector: 'co-stock',
|
|
1786
1786
|
template: `
|
|
1787
1787
|
<div class="stock-info-container" *ngIf="loaded && articleExtended">
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
></co-stock-tabs>
|
|
1788
|
+
<co-stock-information [article]="articleExtended"
|
|
1789
|
+
[articleStockState]="articleStockState"
|
|
1790
|
+
[allAvailableStockInformation]="allAvailableStock"
|
|
1791
|
+
[allTechnicalStockInformation]="allTechnicalStock"
|
|
1792
|
+
[economicalStock]="economicalStock"
|
|
1793
|
+
>
|
|
1794
|
+
</co-stock-information>
|
|
1795
|
+
<co-stock-tabs [stockInformation]="stockInformation"
|
|
1796
|
+
[article]="articleExtended"
|
|
1797
|
+
[articleFlat]="articleFlat"
|
|
1798
|
+
(transferIconClicked)="handleStockTransferClick($event)"
|
|
1799
|
+
(sendMethodDialogClicked)="handleSendMethodClick($event)"
|
|
1800
|
+
[warehouses]="warehouses"
|
|
1801
|
+
[showStockTransfer]="showStockTransfer"
|
|
1802
|
+
></co-stock-tabs>
|
|
1804
1803
|
</div>
|
|
1805
1804
|
`,
|
|
1806
1805
|
encapsulation: ViewEncapsulation.None
|
|
@@ -1822,7 +1821,7 @@ StockComponent.propDecorators = {
|
|
|
1822
1821
|
okButtonClicked: [{ type: Output }],
|
|
1823
1822
|
cancelButtonClicked: [{ type: Output }],
|
|
1824
1823
|
handleClick: [{ type: Output }],
|
|
1825
|
-
showClass: [{ type: HostBinding, args: [
|
|
1824
|
+
showClass: [{ type: HostBinding, args: ['class.co-stock',] }]
|
|
1826
1825
|
};
|
|
1827
1826
|
|
|
1828
1827
|
class StockInformationComponent {
|
|
@@ -3697,16 +3696,32 @@ StockTabComponent.propDecorators = {
|
|
|
3697
3696
|
locationClicked: [{ type: Output }]
|
|
3698
3697
|
};
|
|
3699
3698
|
|
|
3700
|
-
class
|
|
3699
|
+
class BaseStockComponent {
|
|
3700
|
+
ngOnInit() {
|
|
3701
|
+
this.getData();
|
|
3702
|
+
}
|
|
3703
|
+
getData() {
|
|
3704
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3705
|
+
});
|
|
3706
|
+
}
|
|
3707
|
+
}
|
|
3708
|
+
BaseStockComponent.decorators = [
|
|
3709
|
+
{ type: Directive }
|
|
3710
|
+
];
|
|
3711
|
+
BaseStockComponent.propDecorators = {
|
|
3712
|
+
goodId: [{ type: Input }]
|
|
3713
|
+
};
|
|
3714
|
+
|
|
3715
|
+
class OrderTabComponent extends BaseStockComponent {
|
|
3701
3716
|
constructor(iconCacheService, _stockService) {
|
|
3717
|
+
super();
|
|
3702
3718
|
this.iconCacheService = iconCacheService;
|
|
3703
3719
|
this._stockService = _stockService;
|
|
3704
3720
|
this.icons = Icon;
|
|
3705
|
-
this.articleStockInformation = [];
|
|
3706
|
-
this.inOrderInformation = [];
|
|
3707
3721
|
this.locationClicked = new EventEmitter();
|
|
3708
3722
|
this.transferIconClicked = new EventEmitter();
|
|
3709
3723
|
this.sendMethodDialogClicked = new EventEmitter();
|
|
3724
|
+
this.data = [];
|
|
3710
3725
|
}
|
|
3711
3726
|
openSendMethodDialog(data) {
|
|
3712
3727
|
this.sendMethodDialogClicked.emit(data);
|
|
@@ -3714,12 +3729,22 @@ class OrderTabComponent {
|
|
|
3714
3729
|
handleStockTransferClick(event) {
|
|
3715
3730
|
this.transferIconClicked.emit(event);
|
|
3716
3731
|
}
|
|
3732
|
+
getData() {
|
|
3733
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3734
|
+
const inOrderData = new ArticleTransaction$1();
|
|
3735
|
+
inOrderData.type = "V";
|
|
3736
|
+
inOrderData.goodId = this.goodId.toString();
|
|
3737
|
+
this._stockService.getArticleTransaction(inOrderData).then(result => {
|
|
3738
|
+
this.data = result;
|
|
3739
|
+
});
|
|
3740
|
+
});
|
|
3741
|
+
}
|
|
3717
3742
|
}
|
|
3718
3743
|
OrderTabComponent.decorators = [
|
|
3719
3744
|
{ type: Component, args: [{
|
|
3720
3745
|
selector: "co-order-tab",
|
|
3721
3746
|
template: `
|
|
3722
|
-
<co-simple-grid [data]="
|
|
3747
|
+
<co-simple-grid [data]="data"
|
|
3723
3748
|
class="simple-grid"
|
|
3724
3749
|
[rowsPerPage]="20"
|
|
3725
3750
|
>
|
|
@@ -3753,8 +3778,6 @@ OrderTabComponent.ctorParameters = () => [
|
|
|
3753
3778
|
{ type: StockService }
|
|
3754
3779
|
];
|
|
3755
3780
|
OrderTabComponent.propDecorators = {
|
|
3756
|
-
articleStockInformation: [{ type: Input }],
|
|
3757
|
-
inOrderInformation: [{ type: Input }],
|
|
3758
3781
|
locationClicked: [{ type: Output }],
|
|
3759
3782
|
transferIconClicked: [{ type: Output }],
|
|
3760
3783
|
sendMethodDialogClicked: [{ type: Output }]
|
|
@@ -3770,19 +3793,7 @@ class StockTabsComponent {
|
|
|
3770
3793
|
this.warehouses = [];
|
|
3771
3794
|
this.transferIconClicked = new EventEmitter();
|
|
3772
3795
|
this.sendMethodDialogClicked = new EventEmitter();
|
|
3773
|
-
this.stockLocations = [];
|
|
3774
|
-
this.stockHistory = [];
|
|
3775
|
-
this.orderSupplyStockHistory = [];
|
|
3776
|
-
this.orderCommissionStockHistory = [];
|
|
3777
|
-
this.orderStockHistory = [];
|
|
3778
|
-
this.orderAllocationStockHistory = [];
|
|
3779
|
-
this.inOrderInformation = [];
|
|
3780
|
-
this.orderInformation = [];
|
|
3781
|
-
this.stockPrognose = [];
|
|
3782
3796
|
this.selectedWarehouse = new StockManagementWarehouses();
|
|
3783
|
-
this.articleDetailsInformation = new ArticleStockManagement();
|
|
3784
|
-
this.showWarehouseSelection = false;
|
|
3785
|
-
this.articleDetails = [];
|
|
3786
3797
|
this.tabs = [];
|
|
3787
3798
|
this.historyTabs = [];
|
|
3788
3799
|
}
|
|
@@ -3825,97 +3836,12 @@ class StockTabsComponent {
|
|
|
3825
3836
|
this.handleWarehouseSelected(this.selectedWarehouse);
|
|
3826
3837
|
this.getStockData(this.selectedWarehouse);
|
|
3827
3838
|
}
|
|
3828
|
-
getStockHistory() {
|
|
3829
|
-
const stockHistoryInformation = new GetStockHistoryRequest();
|
|
3830
|
-
stockHistoryInformation.type = "V";
|
|
3831
|
-
stockHistoryInformation.goodId = this.article.goodId.toString();
|
|
3832
|
-
this._stockService.getStockHistory(stockHistoryInformation).then(result => {
|
|
3833
|
-
this.stockHistory = result;
|
|
3834
|
-
});
|
|
3835
|
-
}
|
|
3836
|
-
getOrderSupplyStockHistory() {
|
|
3837
|
-
const stockHistoryInformation = new GetStockHistoryRequest();
|
|
3838
|
-
stockHistoryInformation.type = "O";
|
|
3839
|
-
stockHistoryInformation.goodId = this.article.goodId.toString();
|
|
3840
|
-
this._stockService.getStockHistory(stockHistoryInformation).then(result => {
|
|
3841
|
-
this.orderSupplyStockHistory = result;
|
|
3842
|
-
});
|
|
3843
|
-
}
|
|
3844
|
-
getOrderCommissionStockHistory() {
|
|
3845
|
-
const stockHistoryInformation = new GetStockHistoryRequest();
|
|
3846
|
-
stockHistoryInformation.type = "C";
|
|
3847
|
-
stockHistoryInformation.goodId = this.article.goodId.toString();
|
|
3848
|
-
this._stockService.getStockHistory(stockHistoryInformation).then(result => {
|
|
3849
|
-
this.orderCommissionStockHistory = result;
|
|
3850
|
-
});
|
|
3851
|
-
}
|
|
3852
|
-
getOrderStockHistory() {
|
|
3853
|
-
const stockHistoryInformation = new GetStockHistoryRequest();
|
|
3854
|
-
stockHistoryInformation.type = "B";
|
|
3855
|
-
stockHistoryInformation.goodId = this.article.goodId.toString();
|
|
3856
|
-
this._stockService.getStockHistory(stockHistoryInformation).then(result => {
|
|
3857
|
-
this.orderStockHistory = result;
|
|
3858
|
-
});
|
|
3859
|
-
}
|
|
3860
|
-
getAllocationStockHistory() {
|
|
3861
|
-
const stockHistoryInformation = new GetStockHistoryRequest();
|
|
3862
|
-
stockHistoryInformation.type = "T";
|
|
3863
|
-
stockHistoryInformation.goodId = this.article.goodId.toString();
|
|
3864
|
-
this._stockService.getStockHistory(stockHistoryInformation).then(result => {
|
|
3865
|
-
this.orderAllocationStockHistory = result;
|
|
3866
|
-
});
|
|
3867
|
-
}
|
|
3868
|
-
getInOrderData() {
|
|
3869
|
-
const inOrderData = new ArticleTransaction$1();
|
|
3870
|
-
inOrderData.type = "V";
|
|
3871
|
-
inOrderData.goodId = this.stockInformation[0].goodId.toString();
|
|
3872
|
-
this._stockService.getArticleTransaction(inOrderData).then(result => {
|
|
3873
|
-
this.inOrderInformation = result;
|
|
3874
|
-
});
|
|
3875
|
-
}
|
|
3876
|
-
getOrderData() {
|
|
3877
|
-
const orderData = new ArticleTransaction$1();
|
|
3878
|
-
orderData.type = "I";
|
|
3879
|
-
orderData.goodId = this.stockInformation[0].goodId.toString();
|
|
3880
|
-
this._stockService.getArticleTransaction(orderData).then(result => {
|
|
3881
|
-
this.orderInformation = result;
|
|
3882
|
-
});
|
|
3883
|
-
}
|
|
3884
|
-
getStockPrognose(warehouseNo) {
|
|
3885
|
-
this._stockService.stockPrognose(this.article.goodId, warehouseNo).then(result => {
|
|
3886
|
-
this.stockPrognose = result;
|
|
3887
|
-
});
|
|
3888
|
-
}
|
|
3889
3839
|
handleWarehouseSelected(event) {
|
|
3890
3840
|
this.selectedWarehouse = event;
|
|
3891
3841
|
this._stockService.warehouseSelected.emit(event);
|
|
3892
|
-
if (this.tabs[1].active) {
|
|
3893
|
-
this.getStockPrognose(this.selectedWarehouse.warehouseNo);
|
|
3894
|
-
}
|
|
3895
|
-
if (this.tabs[2].active) {
|
|
3896
|
-
this.articleDetailsInformation.warehouseNumber = event.warehouseNo;
|
|
3897
|
-
this.articleDetailsInformation.goodId = this.article.goodId.toString();
|
|
3898
|
-
this._stockService.getArticleDetails(this.articleDetailsInformation).then((details) => {
|
|
3899
|
-
this.articleDetails = details;
|
|
3900
|
-
});
|
|
3901
|
-
}
|
|
3902
|
-
}
|
|
3903
|
-
getStockLocations() {
|
|
3904
|
-
this._stockService.getStockManagementLocations(this.selectedWarehouse.warehouseNo).then(result => {
|
|
3905
|
-
this.stockLocations = result;
|
|
3906
|
-
});
|
|
3907
3842
|
}
|
|
3908
3843
|
getStockData(warehouse) {
|
|
3909
3844
|
this.handleWarehouseSelected(warehouse);
|
|
3910
|
-
this.getStockPrognose(warehouse.warehouseNo);
|
|
3911
|
-
this.getOrderData();
|
|
3912
|
-
this.getInOrderData();
|
|
3913
|
-
this.getAllocationStockHistory();
|
|
3914
|
-
this.getOrderStockHistory();
|
|
3915
|
-
this.getOrderCommissionStockHistory();
|
|
3916
|
-
this.getOrderSupplyStockHistory();
|
|
3917
|
-
this.getStockHistory();
|
|
3918
|
-
this.getStockLocations();
|
|
3919
3845
|
this._changeDetector.markForCheck();
|
|
3920
3846
|
this._changeDetector.detectChanges();
|
|
3921
3847
|
}
|
|
@@ -3944,52 +3870,50 @@ StockTabsComponent.decorators = [
|
|
|
3944
3870
|
></co-stock-tab>
|
|
3945
3871
|
|
|
3946
3872
|
<co-stock-prognose *ngIf="tabs[1].active"
|
|
3947
|
-
[
|
|
3873
|
+
[goodId]="article.goodId"
|
|
3874
|
+
[warehouseNo]="selectedWarehouse.warehouseNo"
|
|
3948
3875
|
></co-stock-prognose>
|
|
3949
3876
|
|
|
3950
3877
|
<co-stock-location *ngIf="tabs[2].active"
|
|
3951
|
-
[articleStockInfo]="articleDetails"
|
|
3952
3878
|
[articleStockInformation]="stockInformation"
|
|
3953
|
-
[
|
|
3879
|
+
[goodId]="article.goodId"
|
|
3880
|
+
[warehouseNo]="selectedWarehouse.warehouseNo"
|
|
3954
3881
|
[articleFlat]="articleFlat"
|
|
3955
|
-
[selectedWarehouse]="selectedWarehouse"
|
|
3956
3882
|
[dataWareHouseCode]="warehouses"
|
|
3957
|
-
[
|
|
3883
|
+
[showStockTransfer]="showStockTransfer"
|
|
3958
3884
|
(transferIconClicked)="transferIconClicked.emit($event)"
|
|
3959
3885
|
(sendMethodDialogClicked)="sendMethodDialogClicked.emit($event)"
|
|
3960
|
-
[showStockTransfer]="showStockTransfer"
|
|
3961
3886
|
(showStockTransferChange)="onShowStockTransferChange($event)"
|
|
3962
3887
|
></co-stock-location>
|
|
3963
3888
|
|
|
3964
3889
|
<co-order-tab *ngIf="tabs[3].active"
|
|
3965
|
-
[
|
|
3966
|
-
[inOrderInformation]="inOrderInformation"
|
|
3890
|
+
[goodId]="article.goodId"
|
|
3967
3891
|
(transferIconClicked)="transferIconClicked.emit($event)"
|
|
3968
3892
|
(sendMethodDialogClicked)="sendMethodDialogClicked.emit($event)"
|
|
3969
3893
|
></co-order-tab>
|
|
3970
3894
|
|
|
3971
3895
|
<co-order-stock-tab *ngIf="tabs[4].active"
|
|
3972
|
-
[
|
|
3896
|
+
[goodId]="article.goodId"
|
|
3973
3897
|
></co-order-stock-tab>
|
|
3974
3898
|
|
|
3975
3899
|
<co-stock-history *ngIf="historyTabs[0].active && tabs[5].active"
|
|
3976
|
-
[
|
|
3900
|
+
[goodId]="article.goodId"
|
|
3977
3901
|
></co-stock-history>
|
|
3978
3902
|
|
|
3979
3903
|
<co-order-supply-stock-history *ngIf="historyTabs[1].active && tabs[5].active"
|
|
3980
|
-
[
|
|
3904
|
+
[goodId]="article.goodId"
|
|
3981
3905
|
></co-order-supply-stock-history>
|
|
3982
3906
|
|
|
3983
3907
|
<co-order-stock-commission-history *ngIf="historyTabs[2].active && tabs[5].active"
|
|
3984
|
-
[
|
|
3908
|
+
[goodId]="article.goodId"
|
|
3985
3909
|
></co-order-stock-commission-history>
|
|
3986
3910
|
|
|
3987
3911
|
<co-order-stock-history *ngIf="historyTabs[3].active && tabs[5].active"
|
|
3988
|
-
[
|
|
3912
|
+
[goodId]="article.goodId"
|
|
3989
3913
|
></co-order-stock-history>
|
|
3990
3914
|
|
|
3991
3915
|
<co-allocation-stock-history *ngIf="historyTabs[4].active && tabs[5].active"
|
|
3992
|
-
[
|
|
3916
|
+
[goodId]="article.goodId"
|
|
3993
3917
|
></co-allocation-stock-history>
|
|
3994
3918
|
|
|
3995
3919
|
`,
|
|
@@ -4042,19 +3966,30 @@ StockHistoryTabsComponent.propDecorators = {
|
|
|
4042
3966
|
stockInformation: [{ type: Input }]
|
|
4043
3967
|
};
|
|
4044
3968
|
|
|
4045
|
-
class OrderStockTabComponent {
|
|
3969
|
+
class OrderStockTabComponent extends BaseStockComponent {
|
|
4046
3970
|
constructor(iconCacheService, _stockService) {
|
|
3971
|
+
super();
|
|
4047
3972
|
this.iconCacheService = iconCacheService;
|
|
4048
3973
|
this._stockService = _stockService;
|
|
4049
3974
|
this.icons = Icon;
|
|
4050
|
-
this.
|
|
3975
|
+
this.data = [];
|
|
3976
|
+
}
|
|
3977
|
+
getData() {
|
|
3978
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3979
|
+
const orderData = new ArticleTransaction$1();
|
|
3980
|
+
orderData.type = "I";
|
|
3981
|
+
orderData.goodId = this.goodId.toString();
|
|
3982
|
+
this._stockService.getArticleTransaction(orderData).then(result => {
|
|
3983
|
+
this.data = result;
|
|
3984
|
+
});
|
|
3985
|
+
});
|
|
4051
3986
|
}
|
|
4052
3987
|
}
|
|
4053
3988
|
OrderStockTabComponent.decorators = [
|
|
4054
3989
|
{ type: Component, args: [{
|
|
4055
3990
|
selector: "co-order-stock-tab",
|
|
4056
3991
|
template: `
|
|
4057
|
-
<co-simple-grid [data]="
|
|
3992
|
+
<co-simple-grid [data]="data"
|
|
4058
3993
|
class="simple-grid"
|
|
4059
3994
|
[rowsPerPage]="20"
|
|
4060
3995
|
>
|
|
@@ -4080,18 +4015,15 @@ OrderStockTabComponent.decorators = [
|
|
|
4080
4015
|
OrderStockTabComponent.ctorParameters = () => [
|
|
4081
4016
|
{ type: IconCacheService },
|
|
4082
4017
|
{ type: StockService }
|
|
4083
|
-
];
|
|
4084
|
-
OrderStockTabComponent.propDecorators = {
|
|
4085
|
-
orderInformation: [{ type: Input }]
|
|
4086
|
-
};
|
|
4018
|
+
];
|
|
4087
4019
|
|
|
4088
|
-
class StockLocationComponent {
|
|
4020
|
+
class StockLocationComponent extends BaseStockComponent {
|
|
4089
4021
|
constructor(iconCacheService, _stockService, _changeDetector) {
|
|
4022
|
+
super();
|
|
4090
4023
|
this.iconCacheService = iconCacheService;
|
|
4091
4024
|
this._stockService = _stockService;
|
|
4092
4025
|
this._changeDetector = _changeDetector;
|
|
4093
4026
|
this.icons = Icon;
|
|
4094
|
-
this.articleStockInfo = [];
|
|
4095
4027
|
this.articleStockInformation = [];
|
|
4096
4028
|
this.articleWarehouse = [];
|
|
4097
4029
|
this.allWarehouses = [];
|
|
@@ -4104,34 +4036,39 @@ class StockLocationComponent {
|
|
|
4104
4036
|
this.newStockLine = false;
|
|
4105
4037
|
this.showConfirmStockRow = false;
|
|
4106
4038
|
this.articleDetailsInformation = new ArticleStockManagement();
|
|
4107
|
-
this.stockLocations = [];
|
|
4108
4039
|
this.stockStatus = [];
|
|
4109
4040
|
this.selectedArticleDetailsData = new ArticleDetailsBo();
|
|
4041
|
+
this.data = [];
|
|
4042
|
+
this.stockLocations = [];
|
|
4110
4043
|
this._subs = [];
|
|
4111
4044
|
}
|
|
4112
|
-
set
|
|
4045
|
+
set warehouseNo(value) {
|
|
4046
|
+
if (this._warehouseNo !== value) {
|
|
4047
|
+
this._warehouseNo = value;
|
|
4048
|
+
this.getData();
|
|
4049
|
+
this._getWarehouseLocations();
|
|
4050
|
+
}
|
|
4051
|
+
}
|
|
4052
|
+
get warehouseNo() {
|
|
4053
|
+
return this._warehouseNo;
|
|
4113
4054
|
}
|
|
4114
|
-
;
|
|
4115
4055
|
ngOnInit() {
|
|
4116
4056
|
this._stockService.getStockState().then(result => {
|
|
4117
4057
|
this.stockStatus = result;
|
|
4118
4058
|
});
|
|
4119
|
-
this._subs.push(this._stockService.warehouseSelected.subscribe(
|
|
4120
|
-
this.
|
|
4121
|
-
this.stockLocations = result;
|
|
4122
|
-
});
|
|
4059
|
+
this._subs.push(this._stockService.warehouseSelected.subscribe((warehouse) => {
|
|
4060
|
+
this.selectedWarehouse = warehouse;
|
|
4123
4061
|
}));
|
|
4124
4062
|
}
|
|
4125
4063
|
ngOnDestroy() {
|
|
4064
|
+
this._subs.forEach(s => s.unsubscribe());
|
|
4126
4065
|
}
|
|
4127
4066
|
onShowStockTransferChange(show) {
|
|
4128
4067
|
this.showStockTransfer = show;
|
|
4129
4068
|
this.showStockTransferChange.emit(this.showStockTransfer);
|
|
4130
4069
|
}
|
|
4131
4070
|
onLocationDropdownClick() {
|
|
4132
|
-
this.
|
|
4133
|
-
this.stockLocations = locations;
|
|
4134
|
-
});
|
|
4071
|
+
this._getWarehouseLocations();
|
|
4135
4072
|
}
|
|
4136
4073
|
locationChanged(row, event) {
|
|
4137
4074
|
this.selectedLocationNo = event.locationNo;
|
|
@@ -4155,11 +4092,11 @@ class StockLocationComponent {
|
|
|
4155
4092
|
}
|
|
4156
4093
|
handleAddRow() {
|
|
4157
4094
|
var _a;
|
|
4158
|
-
if (!((_a = this.
|
|
4159
|
-
this.
|
|
4095
|
+
if (!((_a = this.data) === null || _a === void 0 ? void 0 : _a.length)) {
|
|
4096
|
+
this.data = [];
|
|
4160
4097
|
}
|
|
4161
|
-
this.
|
|
4162
|
-
this.selectedArticleDetailsData = this.
|
|
4098
|
+
this.data.push(new ArticleDetailsBo());
|
|
4099
|
+
this.selectedArticleDetailsData = this.data[(this.data.length - 1)];
|
|
4163
4100
|
this.newStockLine = true;
|
|
4164
4101
|
this.showConfirmationDialog = true;
|
|
4165
4102
|
}
|
|
@@ -4173,7 +4110,7 @@ class StockLocationComponent {
|
|
|
4173
4110
|
this.selectedArticleDetailsData.goodId = parseInt(this.articleDetailsInformation.goodId);
|
|
4174
4111
|
}
|
|
4175
4112
|
this.selectedArticleDetailsData.entryDate = new Date();
|
|
4176
|
-
this.selectedArticleDetailsData.warehouseNo = this.
|
|
4113
|
+
this.selectedArticleDetailsData.warehouseNo = this.warehouseNo;
|
|
4177
4114
|
if (this.selectedLocationNo) {
|
|
4178
4115
|
this.selectedArticleDetailsData.locationNo = (_a = this.selectedLocationNo) === null || _a === void 0 ? void 0 : _a.toString();
|
|
4179
4116
|
}
|
|
@@ -4182,7 +4119,7 @@ class StockLocationComponent {
|
|
|
4182
4119
|
this.articleDetailsInformation.goodId = (_a = this.selectedArticleDetailsData.goodId) === null || _a === void 0 ? void 0 : _a.toString();
|
|
4183
4120
|
this.articleDetailsInformation.warehouseNumber = this.selectedArticleDetailsData.warehouseNo;
|
|
4184
4121
|
this._stockService.getArticleDetails(this.articleDetailsInformation).then((details) => {
|
|
4185
|
-
this.
|
|
4122
|
+
this.data = details;
|
|
4186
4123
|
});
|
|
4187
4124
|
});
|
|
4188
4125
|
this.showConfirmationDialog = false;
|
|
@@ -4212,122 +4149,138 @@ class StockLocationComponent {
|
|
|
4212
4149
|
// If location is not found or description is empty, return locationNo
|
|
4213
4150
|
return location && location.description && location.description.trim() !== '' ? location.description : locationNo;
|
|
4214
4151
|
}
|
|
4152
|
+
getData() {
|
|
4153
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4154
|
+
const request = new ArticleStockManagement();
|
|
4155
|
+
request.goodId = this.goodId.toString();
|
|
4156
|
+
request.warehouseNumber = this.warehouseNo;
|
|
4157
|
+
this._stockService.getArticleDetails(request).then((details) => {
|
|
4158
|
+
this.data = details;
|
|
4159
|
+
});
|
|
4160
|
+
this._getWarehouseLocations();
|
|
4161
|
+
});
|
|
4162
|
+
}
|
|
4163
|
+
_getWarehouseLocations() {
|
|
4164
|
+
this._stockService.getStockManagementLocations(this.warehouseNo).then((result) => {
|
|
4165
|
+
this.stockLocations = result;
|
|
4166
|
+
});
|
|
4167
|
+
}
|
|
4215
4168
|
}
|
|
4216
4169
|
StockLocationComponent.decorators = [
|
|
4217
4170
|
{ type: Component, args: [{
|
|
4218
|
-
selector:
|
|
4171
|
+
selector: 'co-stock-location',
|
|
4219
4172
|
template: `
|
|
4220
|
-
|
|
4221
|
-
|
|
4222
|
-
|
|
4223
|
-
|
|
4224
|
-
|
|
4225
|
-
|
|
4226
|
-
|
|
4227
|
-
|
|
4228
|
-
|
|
4229
|
-
|
|
4230
|
-
|
|
4231
|
-
|
|
4232
|
-
|
|
4233
|
-
|
|
4234
|
-
|
|
4235
|
-
|
|
4236
|
-
|
|
4237
|
-
|
|
4238
|
-
|
|
4239
|
-
|
|
4240
|
-
|
|
4241
|
-
|
|
4242
|
-
|
|
4243
|
-
|
|
4244
|
-
|
|
4173
|
+
<div class="stock-grid">
|
|
4174
|
+
<div class="stock-transfer-wrapper">
|
|
4175
|
+
<co-stock-transfer *ngIf="showStockTransfer"
|
|
4176
|
+
class="stock-transfer-dialog"
|
|
4177
|
+
[articleToTransfer]="articleDetails"
|
|
4178
|
+
(handleStickerClicked)="handleStickerClicked.emit($event)"
|
|
4179
|
+
[allWarehouses]="allWarehouses"
|
|
4180
|
+
[stockLocations]="stockLocations"
|
|
4181
|
+
[articleFlat]="articleFlat"
|
|
4182
|
+
[showStockTransfer]="showStockTransfer"
|
|
4183
|
+
(showStockTransferChange)="onShowStockTransferChange($event)">
|
|
4184
|
+
</co-stock-transfer>
|
|
4185
|
+
</div>
|
|
4186
|
+
<co-stock-location-popup
|
|
4187
|
+
[selectedWarehouse]="selectedWarehouse"
|
|
4188
|
+
[articleFlat]="articleFlat"
|
|
4189
|
+
[selectedLocationNo]="selectedLocationNo"
|
|
4190
|
+
[stockLocations]="stockLocations"
|
|
4191
|
+
[articleDetailsInformation]="articleDetailsInformation"
|
|
4192
|
+
[articleStockInfo]="data"
|
|
4193
|
+
[selectedArticleDetailsData]="selectedArticleDetailsData"
|
|
4194
|
+
[showConfirmationDialog]="showConfirmationDialog"
|
|
4195
|
+
[newStockLine]="newStockLine"
|
|
4196
|
+
(togglePopupEvent)="showConfirmationDialog = $event"
|
|
4197
|
+
(updateGridData)="data = $event"
|
|
4245
4198
|
|
|
4246
|
-
|
|
4247
|
-
|
|
4248
|
-
|
|
4249
|
-
|
|
4250
|
-
|
|
4251
|
-
|
|
4252
|
-
|
|
4253
|
-
|
|
4254
|
-
|
|
4255
|
-
|
|
4256
|
-
|
|
4257
|
-
|
|
4258
|
-
|
|
4259
|
-
|
|
4260
|
-
|
|
4261
|
-
|
|
4262
|
-
|
|
4263
|
-
|
|
4264
|
-
|
|
4265
|
-
|
|
4266
|
-
|
|
4267
|
-
|
|
4268
|
-
|
|
4269
|
-
|
|
4270
|
-
|
|
4271
|
-
|
|
4272
|
-
|
|
4273
|
-
|
|
4274
|
-
|
|
4275
|
-
|
|
4276
|
-
|
|
4277
|
-
|
|
4278
|
-
|
|
4279
|
-
|
|
4280
|
-
|
|
4281
|
-
|
|
4282
|
-
|
|
4283
|
-
|
|
4284
|
-
|
|
4285
|
-
|
|
4286
|
-
|
|
4287
|
-
|
|
4288
|
-
|
|
4289
|
-
|
|
4290
|
-
|
|
4291
|
-
|
|
4292
|
-
|
|
4293
|
-
|
|
4294
|
-
|
|
4295
|
-
|
|
4296
|
-
|
|
4297
|
-
|
|
4298
|
-
|
|
4299
|
-
|
|
4300
|
-
|
|
4301
|
-
|
|
4302
|
-
|
|
4303
|
-
|
|
4304
|
-
|
|
4305
|
-
|
|
4306
|
-
|
|
4307
|
-
|
|
4308
|
-
|
|
4309
|
-
|
|
4310
|
-
|
|
4311
|
-
|
|
4312
|
-
|
|
4313
|
-
|
|
4314
|
-
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
|
|
4318
|
-
|
|
4319
|
-
|
|
4320
|
-
|
|
4321
|
-
|
|
4322
|
-
|
|
4323
|
-
|
|
4324
|
-
|
|
4325
|
-
|
|
4326
|
-
|
|
4327
|
-
|
|
4328
|
-
|
|
4329
|
-
|
|
4330
|
-
|
|
4199
|
+
></co-stock-location-popup>
|
|
4200
|
+
<co-simple-grid [data]="data"
|
|
4201
|
+
class="simple-grid"
|
|
4202
|
+
[showAdd]="true"
|
|
4203
|
+
[inlineEdit]="false"
|
|
4204
|
+
[showToolbar]="true"
|
|
4205
|
+
(addRow)="handleAddRow()"
|
|
4206
|
+
>
|
|
4207
|
+
<co-simple-grid-column [headerText]="'STOCK' | sharedLocalize" [field]="'amountInStock'">
|
|
4208
|
+
<ng-template #template let-row="row">
|
|
4209
|
+
<div class="stock-amount" (click)="onOkClickSendLocations(row)">
|
|
4210
|
+
<co-icon class="menu-icon" [iconData]="iconCacheService.getIcon(icons.EditPenRegular)"></co-icon>
|
|
4211
|
+
<span [textContent]="row['amountInStock']"></span>
|
|
4212
|
+
</div>
|
|
4213
|
+
</ng-template>
|
|
4214
|
+
</co-simple-grid-column>
|
|
4215
|
+
<co-simple-grid-column [width]="150" [headerText]="'LOCATION' | sharedLocalize" [field]="'locationNo'">
|
|
4216
|
+
<ng-template #editTemplate let-row="row">
|
|
4217
|
+
<co-list-of-values
|
|
4218
|
+
[model]="locationForNumber(row['locationNo'])"
|
|
4219
|
+
[collection]="stockLocations"
|
|
4220
|
+
[displayField]="'description'"
|
|
4221
|
+
[label]="'LOCATION' | sharedLocalize"
|
|
4222
|
+
[required]="true"
|
|
4223
|
+
(modelChange)="locationChanged(row, $event)"
|
|
4224
|
+
></co-list-of-values>
|
|
4225
|
+
</ng-template>
|
|
4226
|
+
</co-simple-grid-column>
|
|
4227
|
+
<co-simple-grid-column *ngIf="articleFlat?.batch" [headerText]="'BATCH' | sharedLocalize" [field]="'batchNo'">
|
|
4228
|
+
<ng-template #editTemplate let-row="row">
|
|
4229
|
+
<co-input-text [model]="selectedArticleDetailsData.batchNo"
|
|
4230
|
+
[placeholder]="'BATCH' | sharedLocalize"
|
|
4231
|
+
(modelChange)="row['batchNo'] = $event"
|
|
4232
|
+
></co-input-text>
|
|
4233
|
+
</ng-template>
|
|
4234
|
+
</co-simple-grid-column>
|
|
4235
|
+
<co-simple-grid-column *ngIf="articleFlat?.serial" [headerText]="'SERIAL_NO' | sharedLocalize" [field]="'serialNo'">
|
|
4236
|
+
<ng-template #editTemplate let-row="row">
|
|
4237
|
+
<co-input-text [model]="selectedArticleDetailsData.serialNo"
|
|
4238
|
+
[placeholder]="'SERIAL_NO' | sharedLocalize"
|
|
4239
|
+
(modelChange)="row['serialNo'] = $event"
|
|
4240
|
+
></co-input-text>
|
|
4241
|
+
</ng-template>
|
|
4242
|
+
</co-simple-grid-column>
|
|
4243
|
+
<co-simple-grid-column [headerText]="'ALLOCATED' | sharedLocalize" [field]="'stockAssigned'">
|
|
4244
|
+
<ng-template #editTemplate let-row="row">
|
|
4245
|
+
<span [textContent]="row['stockAssigned']"></span>
|
|
4246
|
+
</ng-template>
|
|
4247
|
+
</co-simple-grid-column>
|
|
4248
|
+
<co-simple-grid-column [headerText]="'AVAILABLE_STOCK' | sharedLocalize" [field]="'amountInStockFree'">
|
|
4249
|
+
<ng-template #editTemplate let-row="row">
|
|
4250
|
+
<span [textContent]="row['amountInStockFree']"></span>
|
|
4251
|
+
</ng-template>
|
|
4252
|
+
</co-simple-grid-column>
|
|
4253
|
+
<co-simple-grid-column [headerText]="'VALUTA' | sharedLocalize" [field]="'currency'">
|
|
4254
|
+
<ng-template #editTemplate let-row="row">
|
|
4255
|
+
<span [textContent]="row['currency']"></span>
|
|
4256
|
+
</ng-template>
|
|
4257
|
+
</co-simple-grid-column>
|
|
4258
|
+
<co-simple-grid-column [headerText]="'PURCHASE_PRICE' | sharedLocalize" [field]="'purchasePrice'">
|
|
4259
|
+
<ng-template #editTemplate let-row="row">
|
|
4260
|
+
<span [textContent]="row['purchasePrice']"></span>
|
|
4261
|
+
</ng-template>
|
|
4262
|
+
</co-simple-grid-column>
|
|
4263
|
+
<co-simple-grid-column [headerText]="'SUPPLIERNR' | sharedLocalize" [field]="'supplierNo'">
|
|
4264
|
+
<ng-template #editTemplate let-row="row">
|
|
4265
|
+
<span [textContent]="row['supplierNo']"></span>
|
|
4266
|
+
</ng-template>
|
|
4267
|
+
</co-simple-grid-column>
|
|
4268
|
+
<co-simple-grid-column [readonly]="true" [headerText]="'TRANSFER' | sharedLocalize" [field]="'transfer'">
|
|
4269
|
+
<ng-template #template let-row="row">
|
|
4270
|
+
<co-icon class="menu-icon" [iconData]="iconCacheService.getIcon(icons.DeliveryTruck)"
|
|
4271
|
+
(click)="handleStockTransferClick(row)"></co-icon>
|
|
4272
|
+
</ng-template>
|
|
4273
|
+
<ng-template #editTemplate></ng-template>
|
|
4274
|
+
</co-simple-grid-column>
|
|
4275
|
+
<co-simple-grid-column [readonly]="true" [headerText]="'STICKER' | sharedLocalize" [field]="'sticker'">
|
|
4276
|
+
<ng-template #template let-row="row">
|
|
4277
|
+
<co-icon class="menu-icon" [iconData]="iconCacheService.getIcon(icons.Print)"
|
|
4278
|
+
(click)="openSendMethodDialog(row)"></co-icon>
|
|
4279
|
+
</ng-template>
|
|
4280
|
+
<ng-template #editTemplate></ng-template>
|
|
4281
|
+
</co-simple-grid-column>
|
|
4282
|
+
</co-simple-grid>
|
|
4283
|
+
</div>
|
|
4331
4284
|
`,
|
|
4332
4285
|
encapsulation: ViewEncapsulation.None
|
|
4333
4286
|
},] }
|
|
@@ -4338,36 +4291,44 @@ StockLocationComponent.ctorParameters = () => [
|
|
|
4338
4291
|
{ type: ChangeDetectorRef }
|
|
4339
4292
|
];
|
|
4340
4293
|
StockLocationComponent.propDecorators = {
|
|
4341
|
-
|
|
4294
|
+
warehouseNo: [{ type: Input }],
|
|
4342
4295
|
articleStockInformation: [{ type: Input }],
|
|
4343
4296
|
articleWarehouse: [{ type: Input }],
|
|
4344
4297
|
allWarehouses: [{ type: Input }],
|
|
4345
|
-
article: [{ type: Input }],
|
|
4346
4298
|
showStockTransfer: [{ type: Input }],
|
|
4347
4299
|
articleFlat: [{ type: Input }],
|
|
4348
4300
|
dataWareHouseCode: [{ type: Input }],
|
|
4349
4301
|
transferIconClicked: [{ type: Output }],
|
|
4350
4302
|
sendMethodDialogClicked: [{ type: Output }],
|
|
4351
4303
|
showStockTransferChange: [{ type: Output }],
|
|
4352
|
-
handleStickerClicked: [{ type: Output }]
|
|
4353
|
-
selectedWarehouse: [{ type: Input }],
|
|
4354
|
-
stockLocations: [{ type: Input }]
|
|
4304
|
+
handleStickerClicked: [{ type: Output }]
|
|
4355
4305
|
};
|
|
4356
4306
|
|
|
4357
|
-
class StockHistoryComponent {
|
|
4307
|
+
class StockHistoryComponent extends BaseStockComponent {
|
|
4358
4308
|
constructor(iconCacheService, _stockService) {
|
|
4309
|
+
super();
|
|
4359
4310
|
this.iconCacheService = iconCacheService;
|
|
4360
4311
|
this._stockService = _stockService;
|
|
4361
4312
|
this.icons = Icon;
|
|
4362
4313
|
this.stockHistoryInformation = [];
|
|
4363
|
-
this.
|
|
4314
|
+
this.data = [];
|
|
4315
|
+
}
|
|
4316
|
+
getData() {
|
|
4317
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4318
|
+
const stockHistoryInformation = new GetStockHistoryRequest();
|
|
4319
|
+
stockHistoryInformation.type = "V";
|
|
4320
|
+
stockHistoryInformation.goodId = this.goodId.toString();
|
|
4321
|
+
this._stockService.getStockHistory(stockHistoryInformation).then(result => {
|
|
4322
|
+
this.data = result;
|
|
4323
|
+
});
|
|
4324
|
+
});
|
|
4364
4325
|
}
|
|
4365
4326
|
}
|
|
4366
4327
|
StockHistoryComponent.decorators = [
|
|
4367
4328
|
{ type: Component, args: [{
|
|
4368
4329
|
selector: "co-stock-history",
|
|
4369
4330
|
template: `
|
|
4370
|
-
<co-simple-grid [data]="
|
|
4331
|
+
<co-simple-grid [data]="data"
|
|
4371
4332
|
class="simple-grid"
|
|
4372
4333
|
[rowsPerPage]="20"
|
|
4373
4334
|
>
|
|
@@ -4399,8 +4360,7 @@ StockHistoryComponent.ctorParameters = () => [
|
|
|
4399
4360
|
];
|
|
4400
4361
|
StockHistoryComponent.propDecorators = {
|
|
4401
4362
|
stockHistoryInformation: [{ type: Input }],
|
|
4402
|
-
articleGoodId: [{ type: Input }]
|
|
4403
|
-
stockHistory: [{ type: Input }]
|
|
4363
|
+
articleGoodId: [{ type: Input }]
|
|
4404
4364
|
};
|
|
4405
4365
|
|
|
4406
4366
|
class TabBarComponent {
|
|
@@ -4461,17 +4421,14 @@ TabBarComponent.decorators = [
|
|
|
4461
4421
|
<div class="tab-primary" *ngFor="let tab of tabs">
|
|
4462
4422
|
<co-button
|
|
4463
4423
|
[label]="tab.title"
|
|
4464
|
-
[screenConfigurationObject]="tab.cfg"
|
|
4465
4424
|
[class.active]="tab.active"
|
|
4466
4425
|
(click)="selectTab(tab)"
|
|
4467
4426
|
></co-button>
|
|
4468
4427
|
</div>
|
|
4469
|
-
|
|
4470
4428
|
</div>
|
|
4471
4429
|
<div class="secondary-tab-bar" *ngIf="ActivateSecondaryTabs">
|
|
4472
4430
|
<co-button *ngFor="let tab of secondaryTabs"
|
|
4473
4431
|
[label]="tab.title"
|
|
4474
|
-
[screenConfigurationObject]="tab.cfg"
|
|
4475
4432
|
[class.active]="tab.active"
|
|
4476
4433
|
(click)="selectSecondaryTab(tab)"
|
|
4477
4434
|
></co-button>
|
|
@@ -4514,181 +4471,213 @@ TabBarModule.decorators = [
|
|
|
4514
4471
|
},] }
|
|
4515
4472
|
];
|
|
4516
4473
|
|
|
4517
|
-
class OrderSupplyStockHistoryComponent {
|
|
4518
|
-
constructor(
|
|
4519
|
-
|
|
4474
|
+
class OrderSupplyStockHistoryComponent extends BaseStockComponent {
|
|
4475
|
+
constructor(_stockService) {
|
|
4476
|
+
super();
|
|
4477
|
+
this._stockService = _stockService;
|
|
4520
4478
|
this.icons = Icon;
|
|
4521
|
-
this.
|
|
4479
|
+
this.data = [];
|
|
4480
|
+
}
|
|
4481
|
+
getData() {
|
|
4482
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4483
|
+
const stockHistoryInformation = new GetStockHistoryRequest();
|
|
4484
|
+
stockHistoryInformation.type = 'O';
|
|
4485
|
+
stockHistoryInformation.goodId = this.goodId.toString();
|
|
4486
|
+
this._stockService.getStockHistory(stockHistoryInformation).then(result => {
|
|
4487
|
+
this.data = result;
|
|
4488
|
+
});
|
|
4489
|
+
});
|
|
4522
4490
|
}
|
|
4523
4491
|
}
|
|
4524
4492
|
OrderSupplyStockHistoryComponent.decorators = [
|
|
4525
4493
|
{ type: Component, args: [{
|
|
4526
|
-
selector:
|
|
4494
|
+
selector: 'co-order-supply-stock-history',
|
|
4527
4495
|
template: `
|
|
4528
|
-
|
|
4529
|
-
|
|
4530
|
-
|
|
4531
|
-
|
|
4532
|
-
|
|
4533
|
-
|
|
4534
|
-
|
|
4535
|
-
|
|
4536
|
-
|
|
4537
|
-
|
|
4538
|
-
|
|
4539
|
-
|
|
4540
|
-
|
|
4541
|
-
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
|
|
4547
|
-
|
|
4548
|
-
|
|
4549
|
-
|
|
4496
|
+
<co-simple-grid [data]="data"
|
|
4497
|
+
class="simple-grid"
|
|
4498
|
+
[rowsPerPage]="20"
|
|
4499
|
+
>
|
|
4500
|
+
<co-simple-grid-column [headerText]="'MUTATION_DATE' | sharedLocalize">
|
|
4501
|
+
<ng-template #template let-row="row">
|
|
4502
|
+
<span [textContent]="row.mutationDate | date:'dd-MM-yyyy'"></span>
|
|
4503
|
+
</ng-template>
|
|
4504
|
+
</co-simple-grid-column>
|
|
4505
|
+
<co-simple-grid-column [headerText]="'MUTATION_TIME' | sharedLocalize" [field]="'mutationTime'"></co-simple-grid-column>
|
|
4506
|
+
<co-simple-grid-column [headerText]="'AMOUNT' | sharedLocalize" [field]="'amount'"></co-simple-grid-column>
|
|
4507
|
+
<co-simple-grid-column [headerText]="'WAREHOUSE' | sharedLocalize" [field]="'wareHouseNr'"></co-simple-grid-column>
|
|
4508
|
+
<co-simple-grid-column [headerText]="'LOCATION' | sharedLocalize" [field]="'locationNr'"></co-simple-grid-column>
|
|
4509
|
+
<co-simple-grid-column [headerText]="'DOCUMENT_NUMBER' | sharedLocalize" [field]="'docNr'"></co-simple-grid-column>
|
|
4510
|
+
<co-simple-grid-column [headerText]="'LINE' | sharedLocalize" [field]="'transLineNr'"></co-simple-grid-column>
|
|
4511
|
+
<co-simple-grid-column [headerText]="'STOCK_STATE' | sharedLocalize" [field]="'stockStateId'"></co-simple-grid-column>
|
|
4512
|
+
<co-simple-grid-column [headerText]="'STOCK_REMARK' | sharedLocalize" [field]="'stockStateRemarkId'"></co-simple-grid-column>
|
|
4513
|
+
<co-simple-grid-column [headerText]="'VALUTA' | sharedLocalize" [field]="'currencyCode'"></co-simple-grid-column>
|
|
4514
|
+
<co-simple-grid-column [headerText]="'RELATION_NR' | sharedLocalize" [field]="'relationNr'"></co-simple-grid-column>
|
|
4515
|
+
<co-simple-grid-column [headerText]="'USER' | sharedLocalize" [field]="'user'"></co-simple-grid-column>
|
|
4516
|
+
<co-simple-grid-column [headerText]="'MUTATION_TYPE' | sharedLocalize" [field]="'mutationType'"></co-simple-grid-column>
|
|
4517
|
+
</co-simple-grid>
|
|
4550
4518
|
`,
|
|
4551
4519
|
encapsulation: ViewEncapsulation.None
|
|
4552
4520
|
},] }
|
|
4553
4521
|
];
|
|
4554
4522
|
OrderSupplyStockHistoryComponent.ctorParameters = () => [
|
|
4555
|
-
{ type:
|
|
4556
|
-
];
|
|
4557
|
-
OrderSupplyStockHistoryComponent.propDecorators = {
|
|
4558
|
-
orderSupplyStockHistory: [{ type: Input }]
|
|
4559
|
-
};
|
|
4523
|
+
{ type: StockService }
|
|
4524
|
+
];
|
|
4560
4525
|
|
|
4561
|
-
class OrderCommissionStockHistoryComponent {
|
|
4562
|
-
constructor(
|
|
4563
|
-
|
|
4526
|
+
class OrderCommissionStockHistoryComponent extends BaseStockComponent {
|
|
4527
|
+
constructor(_stockService) {
|
|
4528
|
+
super();
|
|
4529
|
+
this._stockService = _stockService;
|
|
4564
4530
|
this.icons = Icon;
|
|
4565
|
-
this.
|
|
4531
|
+
this.data = [];
|
|
4532
|
+
}
|
|
4533
|
+
getData() {
|
|
4534
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4535
|
+
const stockHistoryInformation = new GetStockHistoryRequest();
|
|
4536
|
+
stockHistoryInformation.type = "C";
|
|
4537
|
+
stockHistoryInformation.goodId = this.goodId.toString();
|
|
4538
|
+
this._stockService.getStockHistory(stockHistoryInformation).then(result => {
|
|
4539
|
+
this.data = result;
|
|
4540
|
+
});
|
|
4541
|
+
});
|
|
4566
4542
|
}
|
|
4567
4543
|
}
|
|
4568
4544
|
OrderCommissionStockHistoryComponent.decorators = [
|
|
4569
4545
|
{ type: Component, args: [{
|
|
4570
4546
|
selector: "co-order-stock-commission-history",
|
|
4571
4547
|
template: `
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4578
|
-
|
|
4579
|
-
|
|
4580
|
-
|
|
4581
|
-
|
|
4582
|
-
|
|
4583
|
-
|
|
4584
|
-
|
|
4585
|
-
|
|
4586
|
-
|
|
4587
|
-
|
|
4588
|
-
|
|
4589
|
-
|
|
4590
|
-
|
|
4591
|
-
|
|
4592
|
-
|
|
4593
|
-
|
|
4548
|
+
<co-simple-grid [data]="data"
|
|
4549
|
+
class="simple-grid"
|
|
4550
|
+
[rowsPerPage]="20"
|
|
4551
|
+
>
|
|
4552
|
+
<co-simple-grid-column [headerText]="'MUTATION_DATE' | sharedLocalize">
|
|
4553
|
+
<ng-template #template let-row="row">
|
|
4554
|
+
<span [textContent]="row.mutationDate | date:'dd-MM-yyyy'"></span>
|
|
4555
|
+
</ng-template>
|
|
4556
|
+
</co-simple-grid-column>
|
|
4557
|
+
<co-simple-grid-column [headerText]="'MUTATION_TIME' | sharedLocalize" [field]="'mutationTime'"></co-simple-grid-column>
|
|
4558
|
+
<co-simple-grid-column [headerText]="'AMOUNT' | sharedLocalize" [field]="'amount'"></co-simple-grid-column>
|
|
4559
|
+
<co-simple-grid-column [headerText]="'WAREHOUSE' | sharedLocalize" [field]="'wareHouseNr'"></co-simple-grid-column>
|
|
4560
|
+
<co-simple-grid-column [headerText]="'LOCATION' | sharedLocalize" [field]="'locationNr'"></co-simple-grid-column>
|
|
4561
|
+
<co-simple-grid-column [headerText]="'DOCUMENT_NUMBER' | sharedLocalize" [field]="'docNr'"></co-simple-grid-column>
|
|
4562
|
+
<co-simple-grid-column [headerText]="'LINE' | sharedLocalize" [field]="'transLineNr'"></co-simple-grid-column>
|
|
4563
|
+
<co-simple-grid-column [headerText]="'STOCK_STATE' | sharedLocalize" [field]="'stockStateId'"></co-simple-grid-column>
|
|
4564
|
+
<co-simple-grid-column [headerText]="'STOCK_REMARK' | sharedLocalize" [field]="'stockStateRemarkId'"></co-simple-grid-column>
|
|
4565
|
+
<co-simple-grid-column [headerText]="'VALUTA' | sharedLocalize" [field]="'currencyCode'"></co-simple-grid-column>
|
|
4566
|
+
<co-simple-grid-column [headerText]="'RELATION_NR' | sharedLocalize" [field]="'relationNr'"></co-simple-grid-column>
|
|
4567
|
+
<co-simple-grid-column [headerText]="'USER' | sharedLocalize" [field]="'user'"></co-simple-grid-column>
|
|
4568
|
+
<co-simple-grid-column [headerText]="'MUTATION_TYPE' | sharedLocalize" [field]="'mutationType'"></co-simple-grid-column>
|
|
4569
|
+
</co-simple-grid>
|
|
4594
4570
|
`,
|
|
4595
4571
|
encapsulation: ViewEncapsulation.None
|
|
4596
4572
|
},] }
|
|
4597
4573
|
];
|
|
4598
4574
|
OrderCommissionStockHistoryComponent.ctorParameters = () => [
|
|
4599
|
-
{ type:
|
|
4600
|
-
];
|
|
4601
|
-
OrderCommissionStockHistoryComponent.propDecorators = {
|
|
4602
|
-
orderStockCommissionHistory: [{ type: Input }]
|
|
4603
|
-
};
|
|
4575
|
+
{ type: StockService }
|
|
4576
|
+
];
|
|
4604
4577
|
|
|
4605
|
-
class OrderStockHistoryComponent {
|
|
4606
|
-
constructor(
|
|
4607
|
-
|
|
4578
|
+
class OrderStockHistoryComponent extends BaseStockComponent {
|
|
4579
|
+
constructor(_stockService) {
|
|
4580
|
+
super();
|
|
4581
|
+
this._stockService = _stockService;
|
|
4608
4582
|
this.icons = Icon;
|
|
4609
|
-
this.
|
|
4583
|
+
this.data = [];
|
|
4584
|
+
}
|
|
4585
|
+
getData() {
|
|
4586
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4587
|
+
const stockHistoryInformation = new GetStockHistoryRequest();
|
|
4588
|
+
stockHistoryInformation.type = 'B';
|
|
4589
|
+
stockHistoryInformation.goodId = this.goodId.toString();
|
|
4590
|
+
this._stockService.getStockHistory(stockHistoryInformation).then(result => {
|
|
4591
|
+
this.data = result;
|
|
4592
|
+
});
|
|
4593
|
+
});
|
|
4610
4594
|
}
|
|
4611
4595
|
}
|
|
4612
4596
|
OrderStockHistoryComponent.decorators = [
|
|
4613
4597
|
{ type: Component, args: [{
|
|
4614
|
-
selector:
|
|
4598
|
+
selector: 'co-order-stock-history',
|
|
4615
4599
|
template: `
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
|
|
4600
|
+
<co-simple-grid [data]="data"
|
|
4601
|
+
class="simple-grid"
|
|
4602
|
+
[rowsPerPage]="20"
|
|
4603
|
+
>
|
|
4604
|
+
<co-simple-grid-column [headerText]="'MUTATION_DATE' | sharedLocalize">
|
|
4605
|
+
<ng-template #template let-row="row">
|
|
4606
|
+
<span [textContent]="row.mutationDate | date:'dd-MM-yyyy'"></span>
|
|
4607
|
+
</ng-template>
|
|
4608
|
+
</co-simple-grid-column>
|
|
4609
|
+
<co-simple-grid-column [headerText]="'MUTATION_TIME' | sharedLocalize" [field]="'mutationTime'"></co-simple-grid-column>
|
|
4610
|
+
<co-simple-grid-column [headerText]="'AMOUNT' | sharedLocalize" [field]="'amount'"></co-simple-grid-column>
|
|
4611
|
+
<co-simple-grid-column [headerText]="'WAREHOUSE' | sharedLocalize" [field]="'wareHouseNr'"></co-simple-grid-column>
|
|
4612
|
+
<co-simple-grid-column [headerText]="'LOCATION' | sharedLocalize" [field]="'locationNr'"></co-simple-grid-column>
|
|
4613
|
+
<co-simple-grid-column [headerText]="'DOCUMENT_NUMBER' | sharedLocalize" [field]="'docNr'"></co-simple-grid-column>
|
|
4614
|
+
<co-simple-grid-column [headerText]="'LINE' | sharedLocalize" [field]="'transLineNr'"></co-simple-grid-column>
|
|
4615
|
+
<co-simple-grid-column [headerText]="'STOCK_STATE' | sharedLocalize" [field]="'stockStateId'"></co-simple-grid-column>
|
|
4616
|
+
<co-simple-grid-column [headerText]="'STOCK_REMARK' | sharedLocalize" [field]="'stockStateRemarkId'"></co-simple-grid-column>
|
|
4617
|
+
<co-simple-grid-column [headerText]="'VALUTA' | sharedLocalize" [field]="'currencyCode'"></co-simple-grid-column>
|
|
4618
|
+
<co-simple-grid-column [headerText]="'RELATION_NR' | sharedLocalize" [field]="'relationNr'"></co-simple-grid-column>
|
|
4619
|
+
<co-simple-grid-column [headerText]="'USER' | sharedLocalize" [field]="'user'"></co-simple-grid-column>
|
|
4620
|
+
<co-simple-grid-column [headerText]="'MUTATION_TYPE' | sharedLocalize" [field]="'mutationType'"></co-simple-grid-column>
|
|
4621
|
+
</co-simple-grid>
|
|
4638
4622
|
`,
|
|
4639
4623
|
encapsulation: ViewEncapsulation.None
|
|
4640
4624
|
},] }
|
|
4641
4625
|
];
|
|
4642
4626
|
OrderStockHistoryComponent.ctorParameters = () => [
|
|
4643
|
-
{ type:
|
|
4644
|
-
];
|
|
4645
|
-
OrderStockHistoryComponent.propDecorators = {
|
|
4646
|
-
orderStockHistory: [{ type: Input }]
|
|
4647
|
-
};
|
|
4627
|
+
{ type: StockService }
|
|
4628
|
+
];
|
|
4648
4629
|
|
|
4649
|
-
class AllocationStockHistoryComponent {
|
|
4650
|
-
constructor(
|
|
4651
|
-
|
|
4630
|
+
class AllocationStockHistoryComponent extends BaseStockComponent {
|
|
4631
|
+
constructor(_stockService) {
|
|
4632
|
+
super();
|
|
4633
|
+
this._stockService = _stockService;
|
|
4652
4634
|
this.icons = Icon;
|
|
4653
|
-
this.
|
|
4635
|
+
this.data = [];
|
|
4636
|
+
}
|
|
4637
|
+
getData() {
|
|
4638
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4639
|
+
const stockHistoryInformation = new GetStockHistoryRequest();
|
|
4640
|
+
stockHistoryInformation.type = 'T';
|
|
4641
|
+
stockHistoryInformation.goodId = this.goodId.toString();
|
|
4642
|
+
this._stockService.getStockHistory(stockHistoryInformation).then(result => {
|
|
4643
|
+
this.data = result;
|
|
4644
|
+
});
|
|
4645
|
+
});
|
|
4654
4646
|
}
|
|
4655
4647
|
}
|
|
4656
4648
|
AllocationStockHistoryComponent.decorators = [
|
|
4657
4649
|
{ type: Component, args: [{
|
|
4658
|
-
selector:
|
|
4650
|
+
selector: 'co-allocation-stock-history',
|
|
4659
4651
|
template: `
|
|
4660
|
-
|
|
4661
|
-
|
|
4662
|
-
|
|
4663
|
-
|
|
4664
|
-
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
|
|
4671
|
-
|
|
4672
|
-
|
|
4673
|
-
|
|
4674
|
-
|
|
4675
|
-
|
|
4676
|
-
|
|
4677
|
-
|
|
4678
|
-
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
|
|
4652
|
+
<co-simple-grid [data]="data"
|
|
4653
|
+
class="simple-grid"
|
|
4654
|
+
[rowsPerPage]="20"
|
|
4655
|
+
>
|
|
4656
|
+
<co-simple-grid-column [headerText]="'MUTATION_DATE' | sharedLocalize">
|
|
4657
|
+
<ng-template #template let-row="row">
|
|
4658
|
+
<span [textContent]="row.mutationDate | date:'dd-MM-yyyy'"></span>
|
|
4659
|
+
</ng-template>
|
|
4660
|
+
</co-simple-grid-column>
|
|
4661
|
+
<co-simple-grid-column [headerText]="'MUTATION_TIME' | sharedLocalize" [field]="'mutationTime'"></co-simple-grid-column>
|
|
4662
|
+
<co-simple-grid-column [headerText]="'AMOUNT' | sharedLocalize" [field]="'amount'"></co-simple-grid-column>
|
|
4663
|
+
<co-simple-grid-column [headerText]="'WAREHOUSE' | sharedLocalize" [field]="'wareHouseNr'"></co-simple-grid-column>
|
|
4664
|
+
<co-simple-grid-column [headerText]="'LOCATION' | sharedLocalize" [field]="'locationNr'"></co-simple-grid-column>
|
|
4665
|
+
<co-simple-grid-column [headerText]="'DOCUMENT_NUMBER' | sharedLocalize" [field]="'docNr'"></co-simple-grid-column>
|
|
4666
|
+
<co-simple-grid-column [headerText]="'LINE' | sharedLocalize" [field]="'transLineNr'"></co-simple-grid-column>
|
|
4667
|
+
<co-simple-grid-column [headerText]="'STOCK_STATE' | sharedLocalize" [field]="'stockStateId'"></co-simple-grid-column>
|
|
4668
|
+
<co-simple-grid-column [headerText]="'STOCK_REMARK' | sharedLocalize" [field]="'stockStateRemarkId'"></co-simple-grid-column>
|
|
4669
|
+
<co-simple-grid-column [headerText]="'VALUTA' | sharedLocalize" [field]="'currencyCode'"></co-simple-grid-column>
|
|
4670
|
+
<co-simple-grid-column [headerText]="'RELATION_NR' | sharedLocalize" [field]="'relationNr'"></co-simple-grid-column>
|
|
4671
|
+
<co-simple-grid-column [headerText]="'USER' | sharedLocalize" [field]="'user'"></co-simple-grid-column>
|
|
4672
|
+
<co-simple-grid-column [headerText]="'MUTATION_TYPE' | sharedLocalize" [field]="'mutationType'"></co-simple-grid-column>
|
|
4673
|
+
</co-simple-grid>
|
|
4682
4674
|
`,
|
|
4683
4675
|
encapsulation: ViewEncapsulation.None
|
|
4684
4676
|
},] }
|
|
4685
4677
|
];
|
|
4686
4678
|
AllocationStockHistoryComponent.ctorParameters = () => [
|
|
4687
|
-
{ type:
|
|
4688
|
-
];
|
|
4689
|
-
AllocationStockHistoryComponent.propDecorators = {
|
|
4690
|
-
allocationStockHistory: [{ type: Input }]
|
|
4691
|
-
};
|
|
4679
|
+
{ type: StockService }
|
|
4680
|
+
];
|
|
4692
4681
|
|
|
4693
4682
|
var GaugeColor$1;
|
|
4694
4683
|
(function (GaugeColor) {
|
|
@@ -5004,19 +4993,38 @@ StockStatusbarModule.decorators = [
|
|
|
5004
4993
|
},] }
|
|
5005
4994
|
];
|
|
5006
4995
|
|
|
5007
|
-
class StockPrognoseComponent {
|
|
4996
|
+
class StockPrognoseComponent extends BaseStockComponent {
|
|
5008
4997
|
constructor(iconCacheService, _stockService) {
|
|
4998
|
+
super();
|
|
5009
4999
|
this.iconCacheService = iconCacheService;
|
|
5010
5000
|
this._stockService = _stockService;
|
|
5011
5001
|
this.icons = Icon;
|
|
5012
|
-
this.
|
|
5002
|
+
this.data = [];
|
|
5003
|
+
}
|
|
5004
|
+
set warehouseNo(value) {
|
|
5005
|
+
if (this._warehouseNo !== value) {
|
|
5006
|
+
this._warehouseNo = value;
|
|
5007
|
+
this.getData();
|
|
5008
|
+
}
|
|
5009
|
+
}
|
|
5010
|
+
get warehouseNo() {
|
|
5011
|
+
return this._warehouseNo;
|
|
5012
|
+
}
|
|
5013
|
+
getData() {
|
|
5014
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
5015
|
+
if (this.goodId && this.warehouseNo !== undefined && this.warehouseNo !== null) {
|
|
5016
|
+
this._stockService.stockPrognose(this.goodId, this.warehouseNo).then(result => {
|
|
5017
|
+
this.data = result;
|
|
5018
|
+
});
|
|
5019
|
+
}
|
|
5020
|
+
});
|
|
5013
5021
|
}
|
|
5014
5022
|
}
|
|
5015
5023
|
StockPrognoseComponent.decorators = [
|
|
5016
5024
|
{ type: Component, args: [{
|
|
5017
5025
|
selector: "co-stock-prognose",
|
|
5018
5026
|
template: `
|
|
5019
|
-
<co-simple-grid [data]="
|
|
5027
|
+
<co-simple-grid [data]="data"
|
|
5020
5028
|
class="simple-grid"
|
|
5021
5029
|
[rowsPerPage]="20"
|
|
5022
5030
|
>
|
|
@@ -5049,7 +5057,7 @@ StockPrognoseComponent.ctorParameters = () => [
|
|
|
5049
5057
|
{ type: StockService }
|
|
5050
5058
|
];
|
|
5051
5059
|
StockPrognoseComponent.propDecorators = {
|
|
5052
|
-
|
|
5060
|
+
warehouseNo: [{ type: Input }]
|
|
5053
5061
|
};
|
|
5054
5062
|
|
|
5055
5063
|
class StockLocationPopupComponent {
|
|
@@ -15825,5 +15833,5 @@ TaskCreatorModule.decorators = [
|
|
|
15825
15833
|
* Generated bundle index. Do not edit.
|
|
15826
15834
|
*/
|
|
15827
15835
|
|
|
15828
|
-
export { ActivityListComponent, ActivityListModule, AgendaEvent, AgendaEventPerDay, CalendarView, CoLinearGaugeComponent, CoLinearGaugeModule, ComponentActivityListComponent, ComponentActivityListModule, DatePlanningComponent, DatePlanningModule, DocsignComponent, DocsignModule, FilesUploadComponent, FilesUploadModule, KeyPadComponent, KeyPadModule, LayoutSwitcherComponent, LayoutSwitcherModule, RoleEmailSelectorComponent, RoleEmailSelectorModule, SendMethodDialogComponent, SendMethodDialogModule, SharedComponentsDictionaryService, SharedComponentsTranslationModule, SharedService, SimpleTagsComponent, SimpleTagsFormComponent, SimpleTagsFormModule, SimpleTagsModule, StatusbarComponent, StatusbarModule, StockComponent, StockModule, TaskCreatorComponent, TaskCreatorModule, WorkflowInfoTilesComponent, WorkflowInfoTilesModule, sendMethodsWithIcon, SignatureComponent as ɵa, SignaturesComponent as ɵb, StockInformationComponent as ɵba, StockInformationGridComponent as ɵbb, StockTransferComponent as ɵbc, StockChangeAmountComponent as ɵbd, StockTabComponent as ɵbe, OrderTabComponent as ɵbf,
|
|
15836
|
+
export { ActivityListComponent, ActivityListModule, AgendaEvent, AgendaEventPerDay, CalendarView, CoLinearGaugeComponent, CoLinearGaugeModule, ComponentActivityListComponent, ComponentActivityListModule, DatePlanningComponent, DatePlanningModule, DocsignComponent, DocsignModule, FilesUploadComponent, FilesUploadModule, KeyPadComponent, KeyPadModule, LayoutSwitcherComponent, LayoutSwitcherModule, RoleEmailSelectorComponent, RoleEmailSelectorModule, SendMethodDialogComponent, SendMethodDialogModule, SharedComponentsDictionaryService, SharedComponentsTranslationModule, SharedService, SimpleTagsComponent, SimpleTagsFormComponent, SimpleTagsFormModule, SimpleTagsModule, StatusbarComponent, StatusbarModule, StockComponent, StockModule, TaskCreatorComponent, TaskCreatorModule, WorkflowInfoTilesComponent, WorkflowInfoTilesModule, sendMethodsWithIcon, SignatureComponent as ɵa, SignaturesComponent as ɵb, StockInformationComponent as ɵba, StockInformationGridComponent as ɵbb, StockTransferComponent as ɵbc, StockChangeAmountComponent as ɵbd, StockTabComponent as ɵbe, OrderTabComponent as ɵbf, BaseStockComponent as ɵbg, StockTabsComponent as ɵbh, StockHistoryTabsComponent as ɵbi, OrderStockTabComponent as ɵbj, StockLocationComponent as ɵbk, StockHistoryComponent as ɵbl, OrderSupplyStockHistoryComponent as ɵbm, OrderCommissionStockHistoryComponent as ɵbn, OrderStockHistoryComponent as ɵbo, AllocationStockHistoryComponent as ɵbp, StockPrognoseComponent as ɵbq, StockLocationPopupComponent as ɵbr, SendMethod as ɵbs, Icon as ɵbt, CalendarAllYearsComponent as ɵbu, CalendarAllMonthsComponent as ɵbv, CalendarHeaderComponent as ɵbw, CalendarComponent as ɵbx, CalendarViewComponent as ɵby, AgendaHeaderComponent as ɵbz, StockService as ɵc, AgendaViewComponent as ɵca, AgendaMonthViewComponent as ɵcb, AgendaBaseViewComponent as ɵcc, AgendaDayViewComponent as ɵcd, AgendaWeekViewComponent as ɵce, AgendaWeekSelectViewComponent as ɵcf, AgendaHourViewComponent as ɵcg, AgendaHourCellComponent as ɵch, AgendaHourViewLabelsComponent as ɵci, AgendaHalfHourCellComponent as ɵcj, AgendaEventsComponent as ɵck, AgendaEventComponent as ɵcl, ViewSelectComponent as ɵcm, AgendaSelectEventComponent as ɵcn, MASTER_PIPES as ɵco, ArrayNumberPipe as ɵcp, UCfirstPipe as ɵcq, FileTypeImagePipe as ɵcr, BaseFileUploadComponent as ɵcs, InputBoolean as ɵct, ImageDisplayModule as ɵcu, ImageDisplayComponent as ɵcv, FileUploadModule as ɵcw, TileRenderModule as ɵcx, TileRenderComponent as ɵcy, FileUploadComponent as ɵcz, SharedConnectorService as ɵd, FileUploadPopupModule as ɵda, MultiplePropertyTogglerModule as ɵdb, MultiplePropertyTogglerComponent as ɵdc, FileUploadPopupComponent as ɵdd, AppFileDropzoneModule as ɵde, AppFileDropzoneComponent as ɵdf, DragDropContainerComponent as ɵdg, DragDropService as ɵdh, BaseActivityListComponent as ɵdi, PersonalActivityOverviewComponent as ɵdj, BaseActivityOverviewComponent as ɵdk, TaskModifierComponent as ɵdl, ModifyTaskFormComponent as ɵdm, PersonalActivityOverviewModule as ɵdn, ComponentActivityOverviewModule as ɵdo, TaskModifyerModule as ɵdp, ModifyTaskFormModule as ɵdq, TaskDetailsModule as ɵdr, TaskDetailsComponent as ɵds, BaseActivitySummaryComponent as ɵdt, ExecutiveSummaryBlockModule as ɵdu, ActivitySummaryBlockModule as ɵdv, ActivitySummaryBlockComponent as ɵdw, ExecutiveSummaryBlockComponent as ɵdx, StatusSummaryBlockModule as ɵdy, StatusSummaryBlockComponent as ɵdz, OptionsService as ɵe, CreationSummaryBlockModule as ɵea, CreationSummaryBlockComponent as ɵeb, NotificationSummaryBlockModule as ɵec, EmailSelectorModule as ɵed, EmailSelectorComponent as ɵee, NotificationSummaryBlockComponent as ɵef, ComponentActivityOverviewComponent as ɵeg, ActivityListHeaderModule as ɵeh, WorkflowNotificationToggleModule as ɵei, DirectivesModule as ɵej, AbsoluteOverlayTemplateDirective as ɵek, AppAbsoluteOverlayOutletService as ɵel, AlignWithDirective as ɵem, ClickOutsideDirective as ɵen, WorkflowNotificationToggleComponent as ɵeo, WorkflowNotificationTogglePopupComponent as ɵep, PeriodFilterModule as ɵeq, PeriodFilterComponent as ɵer, PeriodFilterPopupComponent as ɵes, ActivityListHeaderComponent as ɵet, WorkflowInfoTileModule as ɵeu, WorkflowInfoTileComponent as ɵev, IconCacheService as ɵf, LanguageCode as ɵg, SendMethodService as ɵh, SendMethodEmailModule as ɵi, LayoutSelectionModule as ɵj, LayoutSelectionComponent as ɵk, SignatureButtonModule as ɵl, SignatureButtonComponent as ɵm, SendMethodEmailComponent as ɵn, SendMethodPrinterModule as ɵo, PrinterSelectionModule as ɵp, PrinterSelectionComponent as ɵq, SendMethodPrinterComponent as ɵr, SendMethodPdfModule as ɵs, SendMethodPdfComponent as ɵt, TabBarModule as ɵu, TabBarComponent as ɵv, StatusbarPopupComponent as ɵw, StockStatusbarModule as ɵx, StockStatusbarComponent as ɵy, SharedLocalizePipe as ɵz };
|
|
15829
15837
|
//# sourceMappingURL=colijnit-sharedcomponents.js.map
|