@colijnit/sharedcomponents 1.0.42 → 1.0.44
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 +163 -80
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.d.ts +27 -26
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/colijnit-sharedcomponents.js +28 -27
- package/esm2015/lib/components/stock/components/stock-location/stock-location.component.js +2 -25
- package/esm2015/lib/components/stock/components/stock-prognose/stock-prognose.component.js +42 -0
- package/esm2015/lib/components/stock/stock-tabs/stock-tabs.component.js +49 -13
- package/esm2015/lib/components/stock/stock.component.js +1 -2
- package/esm2015/lib/components/stock/stock.module.js +5 -4
- package/esm2015/lib/components/tab-bar/tab-bar.component.js +12 -15
- package/esm2015/lib/service/shared-connector.service.js +17 -1
- package/esm2015/lib/service/stock.service.js +6 -1
- package/esm2015/public-api.js +2 -1
- package/fesm2015/colijnit-sharedcomponents.js +121 -53
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/stock/components/stock-location/stock-location.component.d.ts +2 -1
- package/lib/components/stock/components/stock-prognose/stock-prognose.component.d.ts +11 -0
- package/lib/components/stock/stock-tabs/stock-tabs.component.d.ts +10 -0
- package/lib/components/tab-bar/tab-bar.component.d.ts +3 -6
- package/lib/service/shared-connector.service.d.ts +2 -0
- package/lib/service/stock.service.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -888,6 +888,22 @@ class SharedConnectorService {
|
|
|
888
888
|
});
|
|
889
889
|
});
|
|
890
890
|
}
|
|
891
|
+
getStockPrognose(goodId, warehouseNumber) {
|
|
892
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
893
|
+
return new Promise((resolve, reject) => {
|
|
894
|
+
return this.articleConnector.getStockForecast(goodId, warehouseNumber).then((result) => {
|
|
895
|
+
if (result.validationResult && result.validationResult.success) {
|
|
896
|
+
if (result.resultObjects) {
|
|
897
|
+
resolve(result.resultObjects);
|
|
898
|
+
}
|
|
899
|
+
}
|
|
900
|
+
else {
|
|
901
|
+
reject(result.validationMessagesAsString);
|
|
902
|
+
}
|
|
903
|
+
});
|
|
904
|
+
});
|
|
905
|
+
});
|
|
906
|
+
}
|
|
891
907
|
commit() {
|
|
892
908
|
return this.articleConnector.commit();
|
|
893
909
|
}
|
|
@@ -972,6 +988,11 @@ class StockService {
|
|
|
972
988
|
return yield this._sharedService.getArticleTransaction(data);
|
|
973
989
|
});
|
|
974
990
|
}
|
|
991
|
+
stockPrognose(goodId, warehouseNumber) {
|
|
992
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
993
|
+
return yield this._sharedService.getStockPrognose(goodId, warehouseNumber);
|
|
994
|
+
});
|
|
995
|
+
}
|
|
975
996
|
lockArticleDetails(data) {
|
|
976
997
|
return __awaiter(this, void 0, void 0, function* () {
|
|
977
998
|
return yield this._sharedService.lockArticleDetails(data);
|
|
@@ -1119,7 +1140,6 @@ class StockComponent {
|
|
|
1119
1140
|
}
|
|
1120
1141
|
handleSendMethodClick(event) {
|
|
1121
1142
|
this.showSendMethodDialog = true;
|
|
1122
|
-
console.log(event);
|
|
1123
1143
|
}
|
|
1124
1144
|
backToStock() {
|
|
1125
1145
|
this.showStockTransfer = !this.showStockTransfer;
|
|
@@ -2774,12 +2794,15 @@ class StockTabsComponent {
|
|
|
2774
2794
|
this.icons = Icon;
|
|
2775
2795
|
this.transferIconClicked = new EventEmitter();
|
|
2776
2796
|
this.sendMethodDialogClicked = new EventEmitter();
|
|
2797
|
+
this.articleDetailsInformation = new ArticleStockManagement();
|
|
2798
|
+
this.showWarehouseSelection = false;
|
|
2777
2799
|
this.tabs = [];
|
|
2778
2800
|
this.historyTabs = [];
|
|
2779
2801
|
}
|
|
2780
2802
|
ngOnInit() {
|
|
2781
2803
|
this.tabs = [
|
|
2782
2804
|
{ title: this._localizeService.get('OVERVIEW'), active: true },
|
|
2805
|
+
{ title: this._localizeService.get('STOCK_FORECAST'), active: false },
|
|
2783
2806
|
{ title: this._localizeService.get('STOCK_DETAILS'), active: false },
|
|
2784
2807
|
{ title: this._localizeService.get('ALREADY_IN_ORDER'), active: false, clickHandler: () => this.getInOrderData() },
|
|
2785
2808
|
{ title: this._localizeService.get('IN_ORDER'), active: false, clickHandler: () => this.getOrderData() },
|
|
@@ -2792,11 +2815,13 @@ class StockTabsComponent {
|
|
|
2792
2815
|
{ title: this._localizeService.get('ORDER'), active: false, clickHandler: () => this.getOrderStockHistory() },
|
|
2793
2816
|
{ title: this._localizeService.get('ALLOCATION'), active: false, clickHandler: () => this.getAllocationStockHistory() },
|
|
2794
2817
|
];
|
|
2818
|
+
console.log(this.tabs[0]);
|
|
2819
|
+
console.log(this.historyTabs[5]);
|
|
2795
2820
|
}
|
|
2796
2821
|
handleLocationClicked(data) {
|
|
2797
2822
|
this.selectedLocation = data.warehouseNo;
|
|
2798
2823
|
this.tabs[0].active = false;
|
|
2799
|
-
this.tabs[
|
|
2824
|
+
this.tabs[2].active = true;
|
|
2800
2825
|
}
|
|
2801
2826
|
getStockHistory() {
|
|
2802
2827
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2868,20 +2893,50 @@ class StockTabsComponent {
|
|
|
2868
2893
|
}
|
|
2869
2894
|
});
|
|
2870
2895
|
}
|
|
2896
|
+
getStockPrognose(warehouseNo) {
|
|
2897
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2898
|
+
this.stockPrognose = yield this._stockService.stockPrognose(this.article.goodId, warehouseNo);
|
|
2899
|
+
});
|
|
2900
|
+
}
|
|
2901
|
+
handleWarehouseSelected(event) {
|
|
2902
|
+
this.selectedWarehouse = event;
|
|
2903
|
+
if (this.tabs[1].active) {
|
|
2904
|
+
this.getStockPrognose(this.selectedWarehouse.warehouseNo);
|
|
2905
|
+
}
|
|
2906
|
+
if (this.tabs[2].active) {
|
|
2907
|
+
this.articleDetailsInformation.warehouseNumber = event.warehouseNo;
|
|
2908
|
+
this.articleDetailsInformation.goodId = this.article.goodId;
|
|
2909
|
+
this._stockService.getArticleDetails(this.articleDetailsInformation).then((details) => {
|
|
2910
|
+
this.articleDetails = details;
|
|
2911
|
+
});
|
|
2912
|
+
}
|
|
2913
|
+
}
|
|
2871
2914
|
}
|
|
2872
2915
|
StockTabsComponent.decorators = [
|
|
2873
2916
|
{ type: Component, args: [{
|
|
2874
2917
|
selector: "co-stock-tabs",
|
|
2875
2918
|
template: `
|
|
2876
|
-
<co-tab-bar [wareHouseLabel]="'CHOICES' | localize"
|
|
2877
|
-
[
|
|
2919
|
+
<co-tab-bar [wareHouseLabel]="'CHOICES' | localize"
|
|
2920
|
+
[wareHouseSearchLabel]="'SEARCH' | localize"
|
|
2921
|
+
[tabs]="tabs"
|
|
2922
|
+
[dataWareHouseCode]="warehouses"
|
|
2923
|
+
[secondaryTabs]="historyTabs"
|
|
2924
|
+
[ActivateSecondaryTabs]="tabs[5].active"
|
|
2925
|
+
[showWarehouseSelection]="tabs[1].active || tabs[2].active"
|
|
2926
|
+
(warehouseSelected)="handleWarehouseSelected($event)"
|
|
2927
|
+
></co-tab-bar>
|
|
2878
2928
|
|
|
2879
2929
|
<co-stock-tab *ngIf="tabs[0].active"
|
|
2880
2930
|
[articleStockInformation]="stockInformation"
|
|
2881
2931
|
(locationClicked)="handleLocationClicked($event)"
|
|
2882
2932
|
></co-stock-tab>
|
|
2883
2933
|
|
|
2884
|
-
<co-stock-
|
|
2934
|
+
<co-stock-prognose *ngIf="tabs[1].active"
|
|
2935
|
+
[stockPrognose]="stockPrognose"
|
|
2936
|
+
></co-stock-prognose>
|
|
2937
|
+
|
|
2938
|
+
<co-stock-location *ngIf="tabs[2].active"
|
|
2939
|
+
[articleStockInfo]="articleDetails"
|
|
2885
2940
|
[articleStockInformation]="stockInformation"
|
|
2886
2941
|
[article]="article"
|
|
2887
2942
|
[clickedLocation]="selectedLocation"
|
|
@@ -2890,34 +2945,34 @@ StockTabsComponent.decorators = [
|
|
|
2890
2945
|
(sendMethodDialogClicked)="sendMethodDialogClicked.emit($event)"
|
|
2891
2946
|
></co-stock-location>
|
|
2892
2947
|
|
|
2893
|
-
<co-order-tab *ngIf="tabs[
|
|
2948
|
+
<co-order-tab *ngIf="tabs[3].active"
|
|
2894
2949
|
[articleStockInformation]="stockInformation"
|
|
2895
2950
|
[inOrderInformation]="inOrderInformation"
|
|
2896
2951
|
(transferIconClicked)="transferIconClicked.emit($event)"
|
|
2897
2952
|
(sendMethodDialogClicked)="sendMethodDialogClicked.emit($event)"
|
|
2898
2953
|
></co-order-tab>
|
|
2899
2954
|
|
|
2900
|
-
<co-order-stock-tab *ngIf="tabs[
|
|
2955
|
+
<co-order-stock-tab *ngIf="tabs[4].active"
|
|
2901
2956
|
[orderInformation]="orderInformation"
|
|
2902
2957
|
></co-order-stock-tab>
|
|
2903
2958
|
|
|
2904
|
-
<co-stock-history *ngIf="historyTabs[0].active && tabs[
|
|
2959
|
+
<co-stock-history *ngIf="historyTabs[0].active && tabs[5].active"
|
|
2905
2960
|
[stockHistory]="stockHistory"
|
|
2906
2961
|
></co-stock-history>
|
|
2907
2962
|
|
|
2908
|
-
<co-order-supply-stock-history *ngIf="historyTabs[1].active && tabs[
|
|
2909
|
-
|
|
2963
|
+
<co-order-supply-stock-history *ngIf="historyTabs[1].active && tabs[5].active"
|
|
2964
|
+
[orderSupplyStockHistory]="orderSupplyStockHistory"
|
|
2910
2965
|
></co-order-supply-stock-history>
|
|
2911
2966
|
|
|
2912
|
-
<co-order-stock-commission-history *ngIf="historyTabs[2].active && tabs[
|
|
2967
|
+
<co-order-stock-commission-history *ngIf="historyTabs[2].active && tabs[5].active"
|
|
2913
2968
|
[orderStockCommissionHistory]="orderCommissionStockHistory"
|
|
2914
2969
|
></co-order-stock-commission-history>
|
|
2915
2970
|
|
|
2916
|
-
<co-order-stock-history *ngIf="historyTabs[3].active && tabs[
|
|
2971
|
+
<co-order-stock-history *ngIf="historyTabs[3].active && tabs[5].active"
|
|
2917
2972
|
[orderStockHistory]="orderStockHistory"
|
|
2918
2973
|
></co-order-stock-history>
|
|
2919
2974
|
|
|
2920
|
-
<co-allocation-stock-history *ngIf="historyTabs[4].active && tabs[
|
|
2975
|
+
<co-allocation-stock-history *ngIf="historyTabs[4].active && tabs[5].active"
|
|
2921
2976
|
[allocationStockHistory]="orderAllocationStockHistory"
|
|
2922
2977
|
></co-allocation-stock-history>
|
|
2923
2978
|
|
|
@@ -3077,30 +3132,6 @@ StockLocationComponent.decorators = [
|
|
|
3077
3132
|
selector: "co-stock-location",
|
|
3078
3133
|
template: `
|
|
3079
3134
|
<div class="stock-grid">
|
|
3080
|
-
<div class="stock-location-group">
|
|
3081
|
-
<div class="stock-location-right-group">
|
|
3082
|
-
<co-drop-down-list [(model)]="selectedWarehouse"
|
|
3083
|
-
[collection]="dataWareHouseCode"
|
|
3084
|
-
[fields]="dataWareHouseFields"
|
|
3085
|
-
[placeholder]="'WAREHOUSE' | localize"
|
|
3086
|
-
(modelChange)="onSelectWarehouse($event)"
|
|
3087
|
-
[required]="true"
|
|
3088
|
-
></co-drop-down-list>
|
|
3089
|
-
<co-list-of-values [label]="'CHOICES' | localize"
|
|
3090
|
-
[displayField]="'warehouseDescription'"
|
|
3091
|
-
[collection]="dataWareHouseCode"
|
|
3092
|
-
[model]="selectedWarehouseModel"
|
|
3093
|
-
[multiselect]="false"
|
|
3094
|
-
[required]="false"
|
|
3095
|
-
[readonly]="true"
|
|
3096
|
-
[customCssClass]="'mini-scrollbar'"
|
|
3097
|
-
[searchPlaceholder]="'SEARCH' | localize"
|
|
3098
|
-
(modelChange)="onSelectWarehouse($event)"
|
|
3099
|
-
>
|
|
3100
|
-
</co-list-of-values>
|
|
3101
|
-
</div>
|
|
3102
|
-
</div>
|
|
3103
|
-
|
|
3104
3135
|
<co-simple-grid [data]="articleDetails"
|
|
3105
3136
|
class="simple-grid"
|
|
3106
3137
|
[rowsPerPage]="20"
|
|
@@ -3193,6 +3224,7 @@ StockLocationComponent.ctorParameters = () => [
|
|
|
3193
3224
|
{ type: ChangeDetectorRef }
|
|
3194
3225
|
];
|
|
3195
3226
|
StockLocationComponent.propDecorators = {
|
|
3227
|
+
articleStockInfo: [{ type: Input }],
|
|
3196
3228
|
articleStockInformation: [{ type: Input }],
|
|
3197
3229
|
article: [{ type: Input }],
|
|
3198
3230
|
clickedLocation: [{ type: Input }],
|
|
@@ -3252,8 +3284,8 @@ class TabBarComponent {
|
|
|
3252
3284
|
constructor(_stockService) {
|
|
3253
3285
|
this._stockService = _stockService;
|
|
3254
3286
|
this.ActivateSecondaryTabs = false;
|
|
3255
|
-
this.
|
|
3256
|
-
this.
|
|
3287
|
+
this.showWarehouseSelection = false;
|
|
3288
|
+
this.warehouseSelected = new EventEmitter();
|
|
3257
3289
|
}
|
|
3258
3290
|
selectTab(tab) {
|
|
3259
3291
|
if (tab.clickHandler) {
|
|
@@ -3270,13 +3302,7 @@ class TabBarComponent {
|
|
|
3270
3302
|
secondaryTab.active = true;
|
|
3271
3303
|
}
|
|
3272
3304
|
onSelectWarehouse(event) {
|
|
3273
|
-
this.
|
|
3274
|
-
this.articleDetailsInformation.goodId = this.article.goodId;
|
|
3275
|
-
if (this.selectedWarehouse || this.selectedWarehouse === 0) {
|
|
3276
|
-
this._stockService.getArticleDetails(this.articleDetailsInformation).then((details) => {
|
|
3277
|
-
this.articleDetails = details;
|
|
3278
|
-
});
|
|
3279
|
-
}
|
|
3305
|
+
this.warehouseSelected.emit(event);
|
|
3280
3306
|
}
|
|
3281
3307
|
}
|
|
3282
3308
|
TabBarComponent.decorators = [
|
|
@@ -3287,14 +3313,16 @@ TabBarComponent.decorators = [
|
|
|
3287
3313
|
<div class="tab-bar-warehouse-wrapper">
|
|
3288
3314
|
<div class="stock-location-group">
|
|
3289
3315
|
<div class="stock-location-right-group">
|
|
3290
|
-
<co-list-of-values
|
|
3316
|
+
<co-list-of-values *ngIf="showWarehouseSelection"
|
|
3317
|
+
[label]="wareHouseLabel"
|
|
3291
3318
|
[displayField]="'warehouseDescription'"
|
|
3292
3319
|
[collection]="dataWareHouseCode"
|
|
3293
3320
|
[multiselect]="false"
|
|
3294
3321
|
[required]="false"
|
|
3295
|
-
[readonly]="
|
|
3322
|
+
[readonly]="false"
|
|
3296
3323
|
[customCssClass]="'mini-scrollbar'"
|
|
3297
3324
|
[searchPlaceholder]="wareHouseSearchLabel"
|
|
3325
|
+
[model]="selectedWarehouse"
|
|
3298
3326
|
(modelChange)="onSelectWarehouse($event)"
|
|
3299
3327
|
>
|
|
3300
3328
|
</co-list-of-values>
|
|
@@ -3328,7 +3356,9 @@ TabBarComponent.propDecorators = {
|
|
|
3328
3356
|
secondaryTabs: [{ type: Input }],
|
|
3329
3357
|
ActivateSecondaryTabs: [{ type: Input }],
|
|
3330
3358
|
dataWareHouseCode: [{ type: Input }],
|
|
3331
|
-
article: [{ type: Input }]
|
|
3359
|
+
article: [{ type: Input }],
|
|
3360
|
+
showWarehouseSelection: [{ type: Input }],
|
|
3361
|
+
warehouseSelected: [{ type: Output }]
|
|
3332
3362
|
};
|
|
3333
3363
|
|
|
3334
3364
|
class TabBarModule {
|
|
@@ -3911,6 +3941,44 @@ StockStatusbarModule.decorators = [
|
|
|
3911
3941
|
},] }
|
|
3912
3942
|
];
|
|
3913
3943
|
|
|
3944
|
+
class StockPrognoseComponent {
|
|
3945
|
+
constructor(iconCacheService, _stockService) {
|
|
3946
|
+
this.iconCacheService = iconCacheService;
|
|
3947
|
+
this._stockService = _stockService;
|
|
3948
|
+
this.icons = Icon;
|
|
3949
|
+
}
|
|
3950
|
+
}
|
|
3951
|
+
StockPrognoseComponent.decorators = [
|
|
3952
|
+
{ type: Component, args: [{
|
|
3953
|
+
selector: "co-stock-prognose",
|
|
3954
|
+
template: `
|
|
3955
|
+
<co-simple-grid [data]="stockPrognose"
|
|
3956
|
+
class="simple-grid"
|
|
3957
|
+
[rowsPerPage]="20"
|
|
3958
|
+
>
|
|
3959
|
+
<co-simple-grid-column [headerText]="'AVAILABILITY'" [field]="'available'"></co-simple-grid-column>
|
|
3960
|
+
<co-simple-grid-column [headerText]="'FREE_STOCK'" [field]="'freeStock'"></co-simple-grid-column>
|
|
3961
|
+
<co-simple-grid-column [headerText]="'IN_ORDER'" [field]="'inOrder'"></co-simple-grid-column>
|
|
3962
|
+
<co-simple-grid-column [headerText]="'PURCHASE_ORDER'" [field]="'transNr'"></co-simple-grid-column>
|
|
3963
|
+
<co-simple-grid-column [headerText]="'PURCHASE_ORDER_DATE'" [field]="'transactionDate'"></co-simple-grid-column>
|
|
3964
|
+
<co-simple-grid-column [headerText]="'DELIVERY_DATE'" [field]="'docNr'"></co-simple-grid-column>
|
|
3965
|
+
<co-simple-grid-column [headerText]="'REFERENCE'" [field]="'reference'"></co-simple-grid-column>
|
|
3966
|
+
<co-simple-grid-column [headerText]="'DELIVERY_DATE_CONFIRMED'" [field]="'transConfirmedDate'"></co-simple-grid-column>
|
|
3967
|
+
<co-simple-grid-column [headerText]="'DATE_DELIVERED'" [field]="'transDeliveryDate'"></co-simple-grid-column>
|
|
3968
|
+
<co-simple-grid-column [headerText]="'FUTURE_FREE_STOCK'" [field]="'laterAvailable'"></co-simple-grid-column>
|
|
3969
|
+
</co-simple-grid>
|
|
3970
|
+
`,
|
|
3971
|
+
encapsulation: ViewEncapsulation.None
|
|
3972
|
+
},] }
|
|
3973
|
+
];
|
|
3974
|
+
StockPrognoseComponent.ctorParameters = () => [
|
|
3975
|
+
{ type: IconCacheService },
|
|
3976
|
+
{ type: StockService }
|
|
3977
|
+
];
|
|
3978
|
+
StockPrognoseComponent.propDecorators = {
|
|
3979
|
+
stockPrognose: [{ type: Input }]
|
|
3980
|
+
};
|
|
3981
|
+
|
|
3914
3982
|
class LocalizePipe {
|
|
3915
3983
|
constructor(_localizeService) {
|
|
3916
3984
|
this._localizeService = _localizeService;
|
|
@@ -3977,11 +4045,11 @@ StockModule.decorators = [
|
|
|
3977
4045
|
OrderCommissionStockHistoryComponent,
|
|
3978
4046
|
OrderStockHistoryComponent,
|
|
3979
4047
|
AllocationStockHistoryComponent,
|
|
3980
|
-
LocalizePipe
|
|
4048
|
+
LocalizePipe,
|
|
4049
|
+
StockPrognoseComponent
|
|
3981
4050
|
],
|
|
3982
4051
|
exports: [
|
|
3983
|
-
StockComponent
|
|
3984
|
-
LocalizePipe
|
|
4052
|
+
StockComponent
|
|
3985
4053
|
],
|
|
3986
4054
|
providers: [
|
|
3987
4055
|
StockService,
|
|
@@ -6230,5 +6298,5 @@ DatePlanningModule.decorators = [
|
|
|
6230
6298
|
* Generated bundle index. Do not edit.
|
|
6231
6299
|
*/
|
|
6232
6300
|
|
|
6233
|
-
export { CoCircularGaugeComponent, CoCircularGaugeModule, CoLinearGaugeComponent, CoLinearGaugeModule, DatePlanningComponent, DatePlanningModule, DocsignComponent, DocsignModule, KeyPadComponent, KeyPadModule, LayoutSwitcherComponent, LayoutSwitcherModule, SendMethodDialogComponent, SendMethodDialogModule, SharedService, StatusbarComponent, StatusbarModule, StockComponent, StockModule, sendMethodsWithIcon, SignatureComponent as ɵa, SignaturesComponent as ɵb, StockTabComponent as ɵba, OrderTabComponent as ɵbb, StockTabsComponent as ɵbc, StockHistoryTabsComponent as ɵbd, OrderStockTabComponent as ɵbe, StockLocationComponent as ɵbf, StockHistoryComponent as ɵbg, OrderSupplyStockHistoryComponent as ɵbh, OrderCommissionStockHistoryComponent as ɵbi, OrderStockHistoryComponent as ɵbj, AllocationStockHistoryComponent as ɵbk, LocalizePipe as ɵbl,
|
|
6301
|
+
export { CoCircularGaugeComponent, CoCircularGaugeModule, CoLinearGaugeComponent, CoLinearGaugeModule, DatePlanningComponent, DatePlanningModule, DocsignComponent, DocsignModule, KeyPadComponent, KeyPadModule, LayoutSwitcherComponent, LayoutSwitcherModule, SendMethodDialogComponent, SendMethodDialogModule, SharedService, StatusbarComponent, StatusbarModule, StockComponent, StockModule, Translation, sendMethodsWithIcon, SignatureComponent as ɵa, SignaturesComponent as ɵb, StockTabComponent as ɵba, OrderTabComponent as ɵbb, StockTabsComponent as ɵbc, StockHistoryTabsComponent as ɵbd, OrderStockTabComponent as ɵbe, StockLocationComponent as ɵbf, StockHistoryComponent as ɵbg, OrderSupplyStockHistoryComponent as ɵbh, OrderCommissionStockHistoryComponent as ɵbi, OrderStockHistoryComponent as ɵbj, AllocationStockHistoryComponent as ɵbk, LocalizePipe as ɵbl, StockPrognoseComponent as ɵbm, SendMethod as ɵbn, Icon as ɵbo, CalendarAllYearsComponent as ɵbp, CalendarAllMonthsComponent as ɵbq, CalendarHeaderComponent as ɵbr, CalendarComponent as ɵbs, CalendarViewComponent as ɵbt, LanguageCode as ɵbu, AgendaHeaderComponent as ɵbv, AgendaViewComponent as ɵbw, AgendaMonthViewComponent as ɵbx, AgendaBaseViewComponent as ɵby, AgendaDayViewComponent as ɵbz, StockService as ɵc, AgendaWeekViewComponent as ɵca, AgendaWeekSelectViewComponent as ɵcb, AgendaHourViewComponent as ɵcc, AgendaHourCellComponent as ɵcd, AgendaHourViewLabelsComponent as ɵce, AgendaHalfHourCellComponent as ɵcf, AgendaEventsComponent as ɵcg, AgendaEventComponent as ɵch, ViewSelectComponent as ɵci, AgendaSelectEventComponent as ɵcj, MASTER_PIPES as ɵck, ArrayNumberPipe as ɵcl, UCfirstPipe as ɵcm, SharedConnectorService as ɵd, OptionsService as ɵe, DictionaryService as ɵf, LocalizeService as ɵg, IconCacheService as ɵh, SendMethodService as ɵi, SendMethodEmailModule as ɵj, LayoutSelectionModule as ɵk, LayoutSelectionComponent as ɵl, SendMethodEmailComponent as ɵm, SendMethodPrinterModule as ɵn, PrinterSelectionModule as ɵo, PrinterSelectionComponent as ɵp, SendMethodPrinterComponent as ɵq, TabBarModule as ɵr, TabBarComponent as ɵs, StatusbarPopupComponent as ɵt, StockStatusbarModule as ɵu, StockStatusbarComponent as ɵv, StockInformationComponent as ɵw, StockInformationGridComponent as ɵx, StockTransferComponent as ɵy, StockChangeAmountComponent as ɵz };
|
|
6234
6302
|
//# sourceMappingURL=colijnit-sharedcomponents.js.map
|