@colijnit/sharedcomponents 262.1.14 → 262.1.15
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/index.d.ts
CHANGED
|
@@ -735,8 +735,6 @@ declare class OrderTabComponent extends BaseStockComponent {
|
|
|
735
735
|
readonly icons: typeof Icon;
|
|
736
736
|
protected readonly SimpleGridColumnTemplateType: typeof SimpleGridColumnTemplateType;
|
|
737
737
|
stockLocations: StockLocation[];
|
|
738
|
-
hasSerie: boolean;
|
|
739
|
-
hasBatch: boolean;
|
|
740
738
|
warehouseNo: number;
|
|
741
739
|
showStockTransfer: boolean;
|
|
742
740
|
allWarehouses: any[];
|
|
@@ -974,17 +972,22 @@ declare class StockLocationPopupComponent {
|
|
|
974
972
|
private _changeDetector;
|
|
975
973
|
readonly icons: typeof Icon;
|
|
976
974
|
private _selectedLocationNo;
|
|
975
|
+
selectedArticleDetailsData: ArticleDetailsBo;
|
|
976
|
+
entryDate: Date;
|
|
977
|
+
disabled: boolean;
|
|
978
|
+
articleStockInfo: ArticleDetailsBo[];
|
|
979
|
+
articleFlat: ArticleFlat;
|
|
977
980
|
editingRow: boolean;
|
|
978
981
|
showConfirmationDialog: boolean;
|
|
979
982
|
newStockLine: boolean;
|
|
980
983
|
deleteStockLine: boolean;
|
|
981
|
-
|
|
982
|
-
|
|
984
|
+
set setSelectedArticleDetailsData(articleDetails: ArticleDetailsBo);
|
|
985
|
+
set setArticleFlat(article: ArticleFlat);
|
|
983
986
|
articleDetailsInformation: ArticleStockManagement;
|
|
984
987
|
selectedWarehouse: StockManagementWarehouses;
|
|
985
988
|
set selectedLocationNo(locationNo: string);
|
|
986
989
|
get selectedLocationNo(): string;
|
|
987
|
-
articleStockInfo: ArticleDetailsBo[];
|
|
990
|
+
set setArticleStockInfo(articleStockInfo: ArticleDetailsBo[]);
|
|
988
991
|
togglePopupEvent: EventEmitter<void>;
|
|
989
992
|
saveEvent: EventEmitter<boolean>;
|
|
990
993
|
updateGridData: EventEmitter<ArticleDetailsBo[]>;
|
|
@@ -993,21 +996,20 @@ declare class StockLocationPopupComponent {
|
|
|
993
996
|
stockBelow: boolean;
|
|
994
997
|
validationMessage: string;
|
|
995
998
|
constructor(iconCacheService: IconCacheService, _stockService: StockService, _changeDetector: ChangeDetectorRef);
|
|
996
|
-
statusForId(id: number):
|
|
999
|
+
statusForId(id: number): StockStatus | 0;
|
|
997
1000
|
handleStockStatusChange(status: StockStatus): void;
|
|
998
1001
|
handleStockStatusRemarkChange(remark: string): void;
|
|
999
1002
|
amountInStockChanged(data: any): void;
|
|
1000
|
-
disabled(): boolean;
|
|
1001
1003
|
handleOkClick(): void;
|
|
1002
1004
|
togglePopup(): void;
|
|
1003
1005
|
getStockLocations(): void;
|
|
1004
|
-
locationForNumber(number: string):
|
|
1006
|
+
locationForNumber(number: string): StockLocation | "";
|
|
1005
1007
|
locationChanged(event: StockLocation): void;
|
|
1006
1008
|
handleStockChange(): void;
|
|
1007
1009
|
newDate(): Date;
|
|
1008
1010
|
private validateForm;
|
|
1009
1011
|
static ɵfac: i0.ɵɵFactoryDeclaration<StockLocationPopupComponent, never>;
|
|
1010
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StockLocationPopupComponent, "co-stock-location-popup", never, { "editingRow": { "alias": "editingRow"; "required": false; }; "showConfirmationDialog": { "alias": "showConfirmationDialog"; "required": false; }; "newStockLine": { "alias": "newStockLine"; "required": false; }; "deleteStockLine": { "alias": "deleteStockLine"; "required": false; }; "
|
|
1012
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StockLocationPopupComponent, "co-stock-location-popup", never, { "editingRow": { "alias": "editingRow"; "required": false; }; "showConfirmationDialog": { "alias": "showConfirmationDialog"; "required": false; }; "newStockLine": { "alias": "newStockLine"; "required": false; }; "deleteStockLine": { "alias": "deleteStockLine"; "required": false; }; "setSelectedArticleDetailsData": { "alias": "setSelectedArticleDetailsData"; "required": false; }; "setArticleFlat": { "alias": "setArticleFlat"; "required": false; }; "articleDetailsInformation": { "alias": "articleDetailsInformation"; "required": false; }; "selectedWarehouse": { "alias": "selectedWarehouse"; "required": false; }; "selectedLocationNo": { "alias": "selectedLocationNo"; "required": false; }; "setArticleStockInfo": { "alias": "setArticleStockInfo"; "required": false; }; "stockLocations": { "alias": "stockLocations"; "required": false; }; "stockStatus": { "alias": "stockStatus"; "required": false; }; }, { "togglePopupEvent": "togglePopupEvent"; "saveEvent": "saveEvent"; "updateGridData": "updateGridData"; }, never, never, false, never>;
|
|
1011
1013
|
}
|
|
1012
1014
|
|
|
1013
1015
|
declare class StockTransferAllocatedComponent implements AfterViewInit {
|