@colijnit/sharedcomponents 1.0.18 → 1.0.19
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/3rdpartylicenses.txt +1116 -0
- package/bundles/colijnit-sharedcomponents.umd.js +157 -96
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/layout-switcher/layout-switcher.component.js +74 -0
- package/esm2015/lib/components/layout-switcher/layout-switcher.module.js +21 -0
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +10 -11
- package/esm2015/lib/components/stock/stock-information/stock-information.component.js +1 -1
- package/esm2015/lib/components/stock/stock-information-grid/stock-information-grid.component.js +29 -37
- package/esm2015/lib/components/stock/stock-transfer/stock-transfer.component.js +1 -1
- package/esm2015/lib/components/stock/stock.component.js +2 -2
- package/esm2015/lib/enum/icon.enum.js +4 -1
- package/esm2015/lib/model/icon-svg.js +4 -1
- package/esm2015/lib/service/ione-connector-adapter.service.js +18 -32
- package/esm2015/lib/service/stock.service.js +10 -22
- package/esm2015/public-api.js +3 -1
- package/favicon.ico +0 -0
- package/fesm2015/colijnit-sharedcomponents.js +161 -101
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/index.html +12 -0
- package/lib/components/layout-switcher/layout-switcher.component.d.ts +16 -0
- package/lib/components/layout-switcher/layout-switcher.module.d.ts +2 -0
- package/lib/components/layout-switcher/style/_layout.scss +96 -0
- package/lib/components/layout-switcher/style/_material-definition.scss +16 -0
- package/lib/components/layout-switcher/style/_theme.scss +6 -0
- package/lib/components/layout-switcher/style/material.scss +5 -0
- package/lib/components/send-method-dialog/send-method-dialog.component.d.ts +3 -3
- package/lib/components/stock/stock-information/stock-information.component.d.ts +1 -1
- package/lib/components/stock/stock-information-grid/stock-information-grid.component.d.ts +6 -6
- package/lib/components/stock/stock-transfer/stock-transfer.component.d.ts +1 -1
- package/lib/components/stock/stock.component.d.ts +1 -1
- package/lib/components/stock/style/_layout.scss +0 -6
- package/lib/enum/icon.enum.d.ts +3 -0
- package/lib/service/ione-connector-adapter.service.d.ts +2 -4
- package/lib/service/stock.service.d.ts +3 -7
- package/main.5240c1941fea0abc7a9c.js +1 -0
- package/package.json +1 -1
- package/polyfills.4a44032b137d291298c3.js +1 -0
- package/public-api.d.ts +2 -0
- package/runtime.f2046bab7c02026dc21f.js +1 -0
- package/styles.b3b98643e0f0f94bdd12.css +110 -0
package/index.html
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head>
|
|
2
|
+
<meta charset="utf-8">
|
|
3
|
+
<title>Sharedcomponents</title>
|
|
4
|
+
<base href="/">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
7
|
+
<style>@charset "UTF-8";@import url(https://fonts.googleapis.com/css?family=Roboto:400,500);@import url(https://fonts.googleapis.com/css2?family=Public+Sans&display=swap);body,html{margin:0;overflow:hidden}body,html{width:100%;height:100%}</style><link rel="stylesheet" href="styles.b3b98643e0f0f94bdd12.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.b3b98643e0f0f94bdd12.css"></noscript></head>
|
|
8
|
+
<body>
|
|
9
|
+
<app-root></app-root>
|
|
10
|
+
<script src="runtime.f2046bab7c02026dc21f.js" defer></script><script src="polyfills.4a44032b137d291298c3.js" defer></script><script src="main.5240c1941fea0abc7a9c.js" defer></script>
|
|
11
|
+
|
|
12
|
+
</body></html>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { Icon } from "../../enum/icon.enum";
|
|
3
|
+
import { IconCacheService } from "../../service/icon-cache.service";
|
|
4
|
+
export declare class LayoutSwitcherComponent {
|
|
5
|
+
iconCacheService: IconCacheService;
|
|
6
|
+
readonly icon: typeof Icon;
|
|
7
|
+
showClass(): boolean;
|
|
8
|
+
layoutItems: string[];
|
|
9
|
+
layoutSwitchEmit: EventEmitter<string>;
|
|
10
|
+
get activeIndex(): number;
|
|
11
|
+
set activeIndex(index: number);
|
|
12
|
+
showMaskSidebar: boolean;
|
|
13
|
+
private _activeIndex;
|
|
14
|
+
constructor(iconCacheService: IconCacheService);
|
|
15
|
+
toggleMaskSidebar(): void;
|
|
16
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
@import "../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('layout-switcher-layout') {
|
|
4
|
+
.layout-switcher {
|
|
5
|
+
|
|
6
|
+
position: relative;
|
|
7
|
+
min-width: $layout-switcher-mask-min-width;
|
|
8
|
+
height: 100%;
|
|
9
|
+
.icon-wrapper {
|
|
10
|
+
cursor: pointer;
|
|
11
|
+
position: relative;
|
|
12
|
+
-webkit-user-select: none;
|
|
13
|
+
-moz-user-select: none;
|
|
14
|
+
-ms-user-select: none;
|
|
15
|
+
user-select: none;
|
|
16
|
+
display: flex;
|
|
17
|
+
flex-direction: row;
|
|
18
|
+
align-items: center;
|
|
19
|
+
justify-content: space-evenly;
|
|
20
|
+
width: $layout-switcher-mask-min-width;
|
|
21
|
+
height: $layout-switcher-mask-min-height;
|
|
22
|
+
|
|
23
|
+
.icon-mask {
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
position: absolute;
|
|
27
|
+
left: $layout-switcher-main-icon-left-position;
|
|
28
|
+
width: 30px;
|
|
29
|
+
height: 30px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.icon-mask-sidebar-handle {
|
|
33
|
+
position: absolute;
|
|
34
|
+
left: $layout-switcher-main-icon-active-left-position;
|
|
35
|
+
width: 30px;
|
|
36
|
+
height: 30px;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.mask-wrapper {
|
|
41
|
+
left: 6em;
|
|
42
|
+
display: flex;
|
|
43
|
+
flex-direction: row;
|
|
44
|
+
position: absolute;
|
|
45
|
+
min-height: $layout-switcher-mask-min-height;
|
|
46
|
+
min-width: $layout-switcher-mask-min-width;
|
|
47
|
+
background: white;
|
|
48
|
+
z-index: 10;
|
|
49
|
+
border-right: 1px solid $layout-switcher-color-border;
|
|
50
|
+
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.mask-wrapper-active {
|
|
54
|
+
border: $layout-switcher-border;
|
|
55
|
+
border-radius: 8px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.mask-content {
|
|
59
|
+
margin-top: 2rem;
|
|
60
|
+
margin-left: 2rem;
|
|
61
|
+
min-width: 350px;
|
|
62
|
+
background: white;
|
|
63
|
+
overflow: hidden;
|
|
64
|
+
display: flex;
|
|
65
|
+
flex-direction: column;
|
|
66
|
+
|
|
67
|
+
span {
|
|
68
|
+
padding: 1rem;
|
|
69
|
+
font-size: $layout-switcher-big-text-font-size;
|
|
70
|
+
font-weight: $layout-switcher-font-weight;
|
|
71
|
+
color: $layout-switcher-color-text-main;
|
|
72
|
+
text-decoration: none;
|
|
73
|
+
height: 50%;
|
|
74
|
+
width: 50%;
|
|
75
|
+
|
|
76
|
+
&.active {
|
|
77
|
+
background-color: #f0f5ff;
|
|
78
|
+
border: 1px solid #e5ebfa;
|
|
79
|
+
border-radius: 8px;
|
|
80
|
+
color: #3c7dff;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
p {
|
|
84
|
+
padding: 1rem;
|
|
85
|
+
margin-bottom: 1rem;
|
|
86
|
+
margin-right: 1rem;
|
|
87
|
+
font-size: $layout-switcher-big-text-font-size;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
}
|
|
96
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
$layout-switcher-mask-min-width: 120px !default;
|
|
2
|
+
$layout-switcher-mask-min-height: 120px !default;
|
|
3
|
+
|
|
4
|
+
$layout-switcher-big-text-font-size: 24px !default;
|
|
5
|
+
|
|
6
|
+
$layout-switcher-color-text-main: #171721 !default;
|
|
7
|
+
$layout-switcher-font-weight: bold !default;
|
|
8
|
+
|
|
9
|
+
$color-border: #e5ebfa !default;
|
|
10
|
+
|
|
11
|
+
$layout-switcher-border: 1px solid $color-border !default;
|
|
12
|
+
|
|
13
|
+
$layout-switcher-color-border: #e5ebfa !default;
|
|
14
|
+
|
|
15
|
+
$layout-switcher-main-icon-left-position: 10px;
|
|
16
|
+
$layout-switcher-main-icon-active-left-position: 65px;
|
|
@@ -8,7 +8,7 @@ import { StockStickersPrintLayoutsBo } from "@colijnit/sharedapi/build/model/rep
|
|
|
8
8
|
import { CoDropDownListFields } from "../stock/stock-transfer/co-drop-down-list-fields.interface";
|
|
9
9
|
export declare class SendMethodDialogComponent implements AfterViewInit {
|
|
10
10
|
iconCacheService: IconCacheService;
|
|
11
|
-
|
|
11
|
+
private _stockService;
|
|
12
12
|
readonly icons: typeof Icon;
|
|
13
13
|
readonly sendOption: typeof SendOption;
|
|
14
14
|
sendOptions: {
|
|
@@ -16,6 +16,7 @@ export declare class SendMethodDialogComponent implements AfterViewInit {
|
|
|
16
16
|
iconName: Icon;
|
|
17
17
|
}[];
|
|
18
18
|
activeSendOption: SendOption;
|
|
19
|
+
amountToPrint: number;
|
|
19
20
|
showStandardPrinterOptions: boolean;
|
|
20
21
|
showPrinterSelections: boolean;
|
|
21
22
|
showExitButton: boolean;
|
|
@@ -30,11 +31,10 @@ export declare class SendMethodDialogComponent implements AfterViewInit {
|
|
|
30
31
|
showDialog: boolean;
|
|
31
32
|
headerTitle: string;
|
|
32
33
|
printerList: Printer[];
|
|
33
|
-
articleData: any;
|
|
34
34
|
startSignatureClicked: EventEmitter<any>;
|
|
35
35
|
printButtonClicked: EventEmitter<any>;
|
|
36
36
|
showClass(): boolean;
|
|
37
|
-
constructor(iconCacheService: IconCacheService,
|
|
37
|
+
constructor(iconCacheService: IconCacheService, _stockService: StockService);
|
|
38
38
|
ngAfterViewInit(): void;
|
|
39
39
|
getPrinters(): Promise<void>;
|
|
40
40
|
closeDialogClick(): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ArticleStockBo } from "@colijnit/articleapi/build/model/article-stock.bo";
|
|
2
2
|
import { ArticleExtended } from "@colijnit/articleapi/build/model/article-extended.bo";
|
|
3
3
|
export declare class StockInformationComponent {
|
|
4
4
|
image: string;
|
|
@@ -2,14 +2,14 @@ import { EventEmitter } from "@angular/core";
|
|
|
2
2
|
import { StockService } from "../../../service/stock.service";
|
|
3
3
|
import { IconCacheService } from "../../../service/icon-cache.service";
|
|
4
4
|
import { Icon } from "../../../enum/icon.enum";
|
|
5
|
-
import {
|
|
5
|
+
import { ArticleStockBo } from "@colijnit/articleapi/build/model/article-stock.bo";
|
|
6
6
|
import { ArticleStock } from "@colijnit/articleapi/build/model/article-stock";
|
|
7
|
+
import { PrintStockStickers } from "@colijnit/sharedapi/build/model/print-stock-stickers";
|
|
7
8
|
import { StockHistoryBo } from "@colijnit/articleapi/build/model/stock-history.bo";
|
|
8
9
|
import { ArticleStockManagement } from "@colijnit/articleapi/build/model/article-stock-management";
|
|
9
10
|
import { ArticleDetailsBo } from "@colijnit/articleapi/build/model/article-details.bo";
|
|
10
11
|
import { StockManagementWarehouses } from "@colijnit/articleapi/build/model/stock-management-warehouses.bo";
|
|
11
12
|
import { CoDropDownListFields } from "../stock-transfer/co-drop-down-list-fields.interface";
|
|
12
|
-
import { ArticleTransaction as ArticleTransactionBo } from "@colijnit/articleapi/build/model/article-transaction.bo";
|
|
13
13
|
export declare class StockInformationGridComponent {
|
|
14
14
|
iconCacheService: IconCacheService;
|
|
15
15
|
private _stockService;
|
|
@@ -25,13 +25,14 @@ export declare class StockInformationGridComponent {
|
|
|
25
25
|
hideOrShowLocationTab: boolean;
|
|
26
26
|
showStockHistory: boolean;
|
|
27
27
|
showSendMethodDialog: boolean;
|
|
28
|
-
inOrderInformation:
|
|
29
|
-
orderInformation:
|
|
28
|
+
inOrderInformation: StockHistoryBo[];
|
|
29
|
+
orderInformation: StockHistoryBo[];
|
|
30
30
|
hideOrShowTabs: boolean;
|
|
31
31
|
dataWareHouseCode: StockManagementWarehouses[];
|
|
32
32
|
dataWareHouseFields: CoDropDownListFields;
|
|
33
33
|
selectedWarehouse: any;
|
|
34
34
|
articleStockSearchInfo: ArticleStock;
|
|
35
|
+
printSticker: PrintStockStickers;
|
|
35
36
|
articleDetails: ArticleDetailsBo[];
|
|
36
37
|
selectedArticleDetailsData: ArticleDetailsBo;
|
|
37
38
|
showChangeStockDetails: boolean;
|
|
@@ -46,7 +47,7 @@ export declare class StockInformationGridComponent {
|
|
|
46
47
|
backToStockInformation(): void;
|
|
47
48
|
handleStockTransferClick(event: any): void;
|
|
48
49
|
handleBackToStockClick(): Promise<void>;
|
|
49
|
-
openSendMethodDialog(
|
|
50
|
+
openSendMethodDialog(): void;
|
|
50
51
|
printStockStickers(): void;
|
|
51
52
|
onOkClick(): void;
|
|
52
53
|
onCancelClick(): void;
|
|
@@ -56,5 +57,4 @@ export declare class StockInformationGridComponent {
|
|
|
56
57
|
onSelectWarehouse(event: any): void;
|
|
57
58
|
getInOrderData(): Promise<void>;
|
|
58
59
|
getOrderData(): Promise<void>;
|
|
59
|
-
addNewRow(): void;
|
|
60
60
|
}
|
|
@@ -2,7 +2,7 @@ import { AfterViewInit, EventEmitter } from "@angular/core";
|
|
|
2
2
|
import { PrintStockStickers } from "@colijnit/articleapi/build/model/print-stock-stickers";
|
|
3
3
|
import { StockService } from "../../../service/stock.service";
|
|
4
4
|
import { CoDropDownListFields } from "./co-drop-down-list-fields.interface";
|
|
5
|
-
import {
|
|
5
|
+
import { ArticleStockBo } from "@colijnit/articleapi/build/model/article-stock.bo";
|
|
6
6
|
import { ArticleDetailsBo } from "@colijnit/articleapi/build/model/article-details.bo";
|
|
7
7
|
import { StockManagementWarehouses } from "@colijnit/articleapi/build/model/stock-management-warehouses.bo";
|
|
8
8
|
import { StockStatus } from "@colijnit/articleapi/build/model/stock-status.bo";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from "@angular/core";
|
|
2
2
|
import { StockService } from "../../service/stock.service";
|
|
3
|
-
import {
|
|
3
|
+
import { ArticleStockBo } from "@colijnit/articleapi/build/model/article-stock.bo";
|
|
4
4
|
import { ArticleExtended } from "@colijnit/articleapi/build/model/article-extended.bo";
|
|
5
5
|
import { ArticleStock } from "@colijnit/articleapi/build/model/article-stock";
|
|
6
6
|
import { StockHistoryBo } from "@colijnit/articleapi/build/model/stock-history.bo";
|
package/lib/enum/icon.enum.d.ts
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
/** AUTO GENERATED FILE. DO NOT CHANGE.. OR YOU WILL SUFFER THE CONSEQUENCES OF YOUR ACTIONS **/
|
|
2
2
|
export declare enum Icon {
|
|
3
|
+
AngleLeftSolid = "angle_left_solid",
|
|
4
|
+
AngleRightSolid = "angle_right_solid",
|
|
3
5
|
ArrowFatRight = "arrow_fat_right",
|
|
4
6
|
ArrowPointRight = "arrow_point_right",
|
|
7
|
+
BringForwardRegular = "bring_forward_regular",
|
|
5
8
|
DeleteLeftRegular = "delete_left_regular",
|
|
6
9
|
DeliveryTruck = "delivery_truck",
|
|
7
10
|
Email = "email",
|
|
@@ -5,7 +5,7 @@ import { ArticleExtended } from "@colijnit/articleapi/build/model/article-extend
|
|
|
5
5
|
import { DataServiceResponseData } from "@colijnit/articleapi/build/model/data-service-response-data";
|
|
6
6
|
import { PrintStockStickers } from "@colijnit/sharedapi/build/model/print-stock-stickers";
|
|
7
7
|
import { GetStockHistoryRequest } from "@colijnit/articleapi/build/model/get-stock-history-request";
|
|
8
|
-
import {
|
|
8
|
+
import { ArticleStockBo } from "@colijnit/articleapi/build/model/article-stock.bo";
|
|
9
9
|
import { ArticleStock } from "@colijnit/articleapi/build/model/article-stock";
|
|
10
10
|
import { StockHistoryBo } from "@colijnit/articleapi/build/model/stock-history.bo";
|
|
11
11
|
import { StockStickersPrintLayoutsBo } from "@colijnit/sharedapi/build/model/report/stock-stickers-print-layouts.bo";
|
|
@@ -14,8 +14,6 @@ import { ArticleDetailsBo } from "@colijnit/articleapi/build/model/article-detai
|
|
|
14
14
|
import { StockStatus } from "@colijnit/articleapi/build/model/stock-status.bo";
|
|
15
15
|
import { StockManagementWarehouses } from "@colijnit/articleapi/build/model/stock-management-warehouses.bo";
|
|
16
16
|
import { StockLocation } from "@colijnit/articleapi/build/model/stock-location.bo";
|
|
17
|
-
import { ArticleTransaction } from "@colijnit/articleapi/build/model/article-transaction";
|
|
18
|
-
import { ArticleTransaction as ArticleTransactionBo } from "@colijnit/articleapi/build/model/article-transaction.bo";
|
|
19
17
|
export declare class IoneConnectorAdapterService {
|
|
20
18
|
options: any;
|
|
21
19
|
connector: Articles;
|
|
@@ -26,6 +24,7 @@ export declare class IoneConnectorAdapterService {
|
|
|
26
24
|
disconnect(): Promise<void>;
|
|
27
25
|
getAllPrinters(showAll?: boolean): Promise<Printer[]>;
|
|
28
26
|
getPrintStockStickers(request: PrintStockStickers): Promise<PrintStockStickers>;
|
|
27
|
+
getStockStickerPrintLayouts(stockStickersPrintLayoutsBo: StockStickersPrintLayoutsBo): Promise<StockStickersPrintLayoutsBo[]>;
|
|
29
28
|
getArticleFullObject(goodId: number): Promise<ArticleExtended>;
|
|
30
29
|
getStockHistory(request: GetStockHistoryRequest): Promise<StockHistoryBo[]>;
|
|
31
30
|
getStockInformation(data: ArticleStock): Promise<ArticleStockBo[]>;
|
|
@@ -36,6 +35,5 @@ export declare class IoneConnectorAdapterService {
|
|
|
36
35
|
lockArticleDetails(data: ArticleStockManagement): Promise<boolean>;
|
|
37
36
|
getStockStatus(): Promise<StockStatus[]>;
|
|
38
37
|
getStockStickerTemplates(data: StockStickersPrintLayoutsBo): Promise<StockStickersPrintLayoutsBo[]>;
|
|
39
|
-
getArticleTransaction(data: ArticleTransaction): Promise<ArticleTransactionBo[]>;
|
|
40
38
|
commit(): Promise<DataServiceResponseData>;
|
|
41
39
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { IoneConnectorAdapterService } from "./ione-connector-adapter.service";
|
|
2
|
-
import { PrintStockStickers } from "@colijnit/
|
|
2
|
+
import { PrintStockStickers } from "@colijnit/articleapi/build/model/print-stock-stickers";
|
|
3
3
|
import { Printer } from "@colijnit/sharedapi/build/model/report/printer.bo";
|
|
4
4
|
import { GetStockHistoryRequest } from "@colijnit/articleapi/build/model/get-stock-history-request";
|
|
5
|
-
import {
|
|
5
|
+
import { ArticleStockBo } from "@colijnit/articleapi/build/model/article-stock.bo";
|
|
6
6
|
import { ArticleStock } from "@colijnit/articleapi/build/model/article-stock";
|
|
7
7
|
import { StockHistoryBo } from "@colijnit/articleapi/build/model/stock-history.bo";
|
|
8
8
|
import { StockStickersPrintLayoutsBo } from "@colijnit/sharedapi/build/model/report/stock-stickers-print-layouts.bo";
|
|
@@ -12,25 +12,21 @@ import { StockStatus } from "@colijnit/articleapi/build/model/stock-status.bo";
|
|
|
12
12
|
import { StockManagementWarehouses } from "@colijnit/articleapi/build/model/stock-management-warehouses.bo";
|
|
13
13
|
import { StockLocation } from "@colijnit/articleapi/build/model/stock-location.bo";
|
|
14
14
|
import { DataServiceResponseData } from "@colijnit/articleapi/build/model/data-service-response-data";
|
|
15
|
-
import { ArticleTransaction } from "@colijnit/articleapi/build/model/article-transaction";
|
|
16
|
-
import { ArticleTransaction as ArticleTransactionBo } from "@colijnit/articleapi/build/model/article-transaction.bo";
|
|
17
15
|
export declare class StockService {
|
|
18
16
|
private _connector;
|
|
19
17
|
stockStickers: PrintStockStickers;
|
|
20
|
-
printSticker: PrintStockStickers;
|
|
21
18
|
constructor(_connector: IoneConnectorAdapterService);
|
|
22
19
|
connectConnector(options: any): void;
|
|
23
|
-
getPrintStockStickers(data: PrintStockStickers): Promise<void>;
|
|
24
20
|
getAllPrinters(showAll?: boolean): Promise<Printer[]>;
|
|
25
21
|
getStockHistory(data: GetStockHistoryRequest): Promise<StockHistoryBo[]>;
|
|
26
22
|
getStockInformation(data: ArticleStock): Promise<ArticleStockBo[]>;
|
|
23
|
+
getStockStickerPrintLayouts(data: StockStickersPrintLayoutsBo): Promise<StockStickersPrintLayoutsBo[]>;
|
|
27
24
|
getArticleDetails(data: ArticleStockManagement): Promise<ArticleDetailsBo[]>;
|
|
28
25
|
updateArticleDetails(data: ArticleDetailsBo): Promise<boolean>;
|
|
29
26
|
getStockState(): Promise<StockStatus[]>;
|
|
30
27
|
getStockStickerTemplates(data: StockStickersPrintLayoutsBo): Promise<StockStickersPrintLayoutsBo[]>;
|
|
31
28
|
getStockManagementWarehouses(): Promise<StockManagementWarehouses[]>;
|
|
32
29
|
getStockManagementLocations(warehouseNo: number): Promise<StockLocation[]>;
|
|
33
|
-
getArticleTransaction(data: ArticleTransaction): Promise<ArticleTransactionBo[]>;
|
|
34
30
|
lockArticleDetails(data: ArticleStockManagement): Promise<boolean>;
|
|
35
31
|
commit(): Promise<DataServiceResponseData>;
|
|
36
32
|
}
|