@colijnit/transaction 258.1.37 → 258.1.39
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-transaction.umd.js +96 -18
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/transaction-header/transaction-header-popup/transaction-header-popup-payment.component.js +3 -3
- package/esm2015/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line-base.component.js +27 -3
- package/esm2015/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.component.js +30 -7
- package/esm2015/lib/component/transaction-line-purchase-receive-goods/transaction-line-purchase-receive-goods.component.js +67 -3
- package/esm2015/lib/component/transaction-line-purchase-receive-goods/transaction-line-purchase-receive-goods.module.js +10 -3
- package/esm2015/lib/component/transaction-print-package-sticker/transaction-print-package-sticker.component.js +11 -9
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.js +28 -26
- package/esm2015/lib/enum/transaction-cfg-name.enum.js +2 -1
- package/esm2015/lib/service/transaction-event.service.js +2 -1
- package/esm2015/lib/service/transaction.service.js +5 -3
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +172 -50
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line-base.component.d.ts +1 -0
- package/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.component.d.ts +3 -0
- package/lib/component/transaction-line-purchase-receive-goods/style/_layout.scss +11 -0
- package/lib/component/transaction-line-purchase-receive-goods/transaction-line-purchase-receive-goods.component.d.ts +4 -1
- package/lib/component/transaction-print-package-sticker/transaction-print-package-sticker.component.d.ts +2 -1
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/style/_layout.scss +7 -6
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.d.ts +1 -0
- package/lib/enum/transaction-cfg-name.enum.d.ts +1 -0
- package/lib/service/transaction-event.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ export declare abstract class TransactionReceiveGoodsLineBaseComponent extends T
|
|
|
12
12
|
ngOnInit(): void;
|
|
13
13
|
ngOnDestroy(): void;
|
|
14
14
|
changeLineAmount(amount: number): void;
|
|
15
|
+
calcStickerAmount(): void;
|
|
15
16
|
protected transactionLineSet(): void;
|
|
16
17
|
private _handleTransactionLineSet;
|
|
17
18
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { TransactionReceiveGoodsLineBaseComponent } from './transaction-receive-goods-line-base.component';
|
|
3
3
|
import { StatusBarCfgNames } from '../../../interface/status-bar-cfg-names.interface';
|
|
4
|
+
import { TransactionCfgName } from "../../../enum/transaction-cfg-name.enum";
|
|
4
5
|
export declare class TransactionReceiveGoodsLineComponent extends TransactionReceiveGoodsLineBaseComponent implements OnInit {
|
|
6
|
+
readonly cfgNames: typeof TransactionCfgName;
|
|
5
7
|
showClass(): boolean;
|
|
6
8
|
statusBarConfigNames: StatusBarCfgNames;
|
|
9
|
+
changeNrPackagesNotAllowed(): boolean;
|
|
7
10
|
}
|
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
display: flex;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
+
.co-input-number-picker {
|
|
8
|
+
width: 140px;
|
|
9
|
+
}
|
|
10
|
+
|
|
7
11
|
.details-column {
|
|
8
12
|
width: 45%;
|
|
9
13
|
display: flex;
|
|
@@ -63,5 +67,12 @@
|
|
|
63
67
|
.clickable {
|
|
64
68
|
cursor: pointer;
|
|
65
69
|
}
|
|
70
|
+
|
|
71
|
+
.warehouse-buttons {
|
|
72
|
+
width: 100%;
|
|
73
|
+
.co-transaction-button {
|
|
74
|
+
width: 100%;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
66
77
|
}
|
|
67
78
|
}
|
|
@@ -21,7 +21,7 @@ export declare class TransactionLinePurchaseReceiveGoodsComponent extends Transa
|
|
|
21
21
|
service: TransactionService;
|
|
22
22
|
iconCacheService: IconCacheService;
|
|
23
23
|
transactionScreenConfigurationService: TransactionScreenConfigurationService;
|
|
24
|
-
|
|
24
|
+
dictionaryService: DictionaryService;
|
|
25
25
|
protected imageService: TransactionImageService;
|
|
26
26
|
protected changeDetector: ChangeDetectorRef;
|
|
27
27
|
private _formMaster;
|
|
@@ -34,6 +34,7 @@ export declare class TransactionLinePurchaseReceiveGoodsComponent extends Transa
|
|
|
34
34
|
selectedLocation: string;
|
|
35
35
|
returnStockMode: boolean;
|
|
36
36
|
availableStockCollection: AvailableStock[];
|
|
37
|
+
warehouseLocationButtonDisabled: boolean;
|
|
37
38
|
private _subs;
|
|
38
39
|
private _defaultReportId;
|
|
39
40
|
constructor(transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _formMaster: FormMasterService);
|
|
@@ -44,6 +45,8 @@ export declare class TransactionLinePurchaseReceiveGoodsComponent extends Transa
|
|
|
44
45
|
handleSaveDetailsEdit(): void;
|
|
45
46
|
handleDeleteSelectedRow(row: LogisticalStateDetail): Promise<void>;
|
|
46
47
|
handleSelectStock(availableStock: AvailableStock): void;
|
|
48
|
+
calcStickerAmount(): void;
|
|
49
|
+
changeNrPackagesNotAllowed(): boolean;
|
|
47
50
|
protected transactionLineSet(): void;
|
|
48
51
|
private _handleTransactionLineSet;
|
|
49
52
|
private _getAvailableStock;
|
|
@@ -8,8 +8,9 @@ import { ReportingDocumentPrintSignDocBaseRequest } from '@colijnit/mainapi/buil
|
|
|
8
8
|
export declare class TransactionPrintPackageStickerComponent extends TransactionQuickAccessSendMethodBaseComponent {
|
|
9
9
|
readonly icons: typeof Icon;
|
|
10
10
|
inputLabel: boolean;
|
|
11
|
+
forceReadonly: boolean;
|
|
12
|
+
stickerAmount: number;
|
|
11
13
|
showClass(): boolean;
|
|
12
|
-
tempModel: number;
|
|
13
14
|
reportDocumentEmailRequest: ReportingDocumentEmailSignDocBaseRequest;
|
|
14
15
|
reportDocumentPrintRequest: ReportingDocumentPrintSignDocBaseRequest;
|
|
15
16
|
reportDocumentPdfRequest: ReportingDocumentPdfBaseRequest;
|
|
@@ -5,10 +5,16 @@
|
|
|
5
5
|
|
|
6
6
|
.quick-access-wrapper {
|
|
7
7
|
display: flex;
|
|
8
|
-
flex-direction:
|
|
8
|
+
flex-direction: row;
|
|
9
9
|
column-gap: 10px;
|
|
10
10
|
align-items: start;
|
|
11
11
|
|
|
12
|
+
.sub-section-input {
|
|
13
|
+
display: flex;
|
|
14
|
+
flex-direction: column;
|
|
15
|
+
gap: 10px;
|
|
16
|
+
}
|
|
17
|
+
|
|
12
18
|
.sub-section {
|
|
13
19
|
display: flex;
|
|
14
20
|
flex-direction: row;
|
|
@@ -61,11 +67,6 @@
|
|
|
61
67
|
margin-top: 3px;
|
|
62
68
|
}
|
|
63
69
|
}
|
|
64
|
-
.sub-section-input {
|
|
65
|
-
display: flex;
|
|
66
|
-
flex-direction: column;
|
|
67
|
-
gap: 10px;
|
|
68
|
-
}
|
|
69
70
|
}
|
|
70
71
|
}
|
|
71
72
|
}
|
|
@@ -28,6 +28,7 @@ export declare class TransactionQuickAccessReceivedGoodsComponent extends Transa
|
|
|
28
28
|
ngOnDestroy(): void;
|
|
29
29
|
handleCommitEvent(): Promise<void>;
|
|
30
30
|
handleSelectAllLines(value: boolean): void;
|
|
31
|
+
handleNoColliStickers(value: boolean): void;
|
|
31
32
|
handleGlobalLocationChange(location: string): void;
|
|
32
33
|
checkForLocationButtonVisibility(): void;
|
|
33
34
|
handleSendMethodOkClick(method: string): Promise<void>;
|
|
@@ -159,6 +159,7 @@ export declare enum TransactionCfgName {
|
|
|
159
159
|
LineConfirmedDate = "lineConfirmedDate",
|
|
160
160
|
LineQuantityToReceive = "lineQuantityToReceive",
|
|
161
161
|
StickerAmount = "stickerAmount",
|
|
162
|
+
CollieAmount = "collieAmount",
|
|
162
163
|
LineWarehouseLocationReceived = "lineWarehouseLocationReceived",
|
|
163
164
|
ServiceMessage = "serviceMessage",
|
|
164
165
|
ServiceWizardMessage = "serviceWizardMessage",
|
|
@@ -91,6 +91,7 @@ export declare class TransactionEventService {
|
|
|
91
91
|
readonly selectedTransportDay: Subject<PlanningTransportWeekDay>;
|
|
92
92
|
readonly resetTransportDayFilteredOrders: Subject<void>;
|
|
93
93
|
readonly selectAllPurchaseOrderLinesForReceiveGoods: Subject<boolean>;
|
|
94
|
+
readonly setColliStickerAmount: Subject<boolean>;
|
|
94
95
|
readonly updatingSalesOrderGeneratePurchaseOrders: Subject<boolean>;
|
|
95
96
|
readonly updatingSalesOrderConfirmation: Subject<boolean>;
|
|
96
97
|
readonly updatingSalesOrderGoodsToBePicked: Subject<boolean>;
|