@colijnit/transaction 262.1.35 → 262.1.37
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/fesm2022/colijnit-transaction.mjs +357 -285
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +14 -2
- package/lib/component/transaction-line/transaction-receive-goods-line/style/_layout.scss +0 -1
- package/lib/component/transaction-quick-access/transaction-quick-access-reserve/style/_layout.scss +11 -2
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -814,6 +814,7 @@ declare class TransactionEventService {
|
|
|
814
814
|
readonly selectAllOrderLinesForReserveGoods: Subject<boolean>;
|
|
815
815
|
readonly selectAllOrderLinesForOrderingStickers: Subject<boolean>;
|
|
816
816
|
readonly setColliStickerAmount: Subject<boolean>;
|
|
817
|
+
readonly setNoStickerForCC0: Subject<boolean>;
|
|
817
818
|
readonly globalReceiveLocationSet: Subject<string>;
|
|
818
819
|
readonly updatingSalesOrderGeneratePurchaseOrders: Subject<boolean>;
|
|
819
820
|
readonly updatingSalesOrderConfirmation: Subject<boolean>;
|
|
@@ -967,6 +968,7 @@ declare class TransactionEventService {
|
|
|
967
968
|
readonly removeFromContainerRequested: Subject<void>;
|
|
968
969
|
readonly removeFromContainerSuccess: Subject<void>;
|
|
969
970
|
readonly requestFocusOnArticleField: Subject<void>;
|
|
971
|
+
readonly transportNotificationsSet: Subject<void>;
|
|
970
972
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionEventService, never>;
|
|
971
973
|
static ɵprov: i0.ɵɵInjectableDeclaration<TransactionEventService>;
|
|
972
974
|
}
|
|
@@ -4162,6 +4164,7 @@ declare enum TransactionCfgName {
|
|
|
4162
4164
|
StickerAmount = "stickerAmount",
|
|
4163
4165
|
CollieAmount = "collieAmount",
|
|
4164
4166
|
ReservedAmount = "reservedAmount",
|
|
4167
|
+
NoCC0ForReserveStickers = "noCC0ForReserveStickers",
|
|
4165
4168
|
OrderedAmount = "orderedAmount",
|
|
4166
4169
|
LineWarehouseLocationReceived = "lineWarehouseLocationReceived",
|
|
4167
4170
|
ServiceMessage = "serviceMessage",
|
|
@@ -9467,6 +9470,7 @@ declare class TransactionSalesOrderQuotationLineModule {
|
|
|
9467
9470
|
declare abstract class TransactionReserveGoodsLineBaseComponent extends TransactionLineBaseComponent implements OnInit, OnDestroy {
|
|
9468
9471
|
readonly icons: typeof Icon;
|
|
9469
9472
|
readonly transactionTypeCategory: typeof TransactionTypeCategory;
|
|
9473
|
+
noStickerForCC0: boolean;
|
|
9470
9474
|
private _subscriptions;
|
|
9471
9475
|
ngOnInit(): Promise<void>;
|
|
9472
9476
|
ngOnDestroy(): void;
|
|
@@ -9561,10 +9565,14 @@ declare abstract class TransactionPurchaseTransportLineBaseComponent extends Tra
|
|
|
9561
9565
|
}
|
|
9562
9566
|
|
|
9563
9567
|
declare class TransactionPurchaseTransportLineComponent extends TransactionPurchaseTransportLineBaseComponent {
|
|
9564
|
-
lineIndex: number;
|
|
9565
9568
|
showClass(): boolean;
|
|
9569
|
+
lineIndex: number;
|
|
9566
9570
|
totals: TransportNotificationTotals;
|
|
9571
|
+
private _sub;
|
|
9567
9572
|
handleVisibilityChange(visible: boolean): Promise<void>;
|
|
9573
|
+
addTranportNotificationSub(): void;
|
|
9574
|
+
removeTranportNotificationSub(): void;
|
|
9575
|
+
getTotals(): Promise<void>;
|
|
9568
9576
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionPurchaseTransportLineComponent, never>;
|
|
9569
9577
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionPurchaseTransportLineComponent, "co-transaction-purchase-transport-line", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; }, {}, never, never, false, never>;
|
|
9570
9578
|
}
|
|
@@ -15012,17 +15020,20 @@ declare class TransactionQuickAccessReserveComponent extends TransactionQuickAcc
|
|
|
15012
15020
|
protected dialogService: TransactionDialogService;
|
|
15013
15021
|
protected relationService: TransactionRelationService;
|
|
15014
15022
|
readonly icons: typeof Icon;
|
|
15023
|
+
readonly cfgNames: typeof TransactionCfgName;
|
|
15015
15024
|
showClass(): boolean;
|
|
15016
15025
|
reportDocumentEmailRequest: ReportingDocumentEmailSignDocBaseRequest;
|
|
15017
15026
|
reportDocumentPrintRequest: ReportingDocumentPrintSignDocBaseRequest;
|
|
15018
15027
|
reportDocumentPdfRequest: ReportingDocumentPdfBaseRequest;
|
|
15019
15028
|
reportDocumentCombinedRequest: PrintPurchaseOrderForTransactionOrderWithoutLinesRequest;
|
|
15029
|
+
noCC0ForReserveStickers: boolean;
|
|
15020
15030
|
layoutCode: LayoutCode;
|
|
15021
15031
|
private _subs;
|
|
15022
15032
|
constructor(searchService: TransactionSearchService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, transactionService: TransactionService, imageService: TransactionImageService, dictionaryService: DictionaryService, changeDetector: ChangeDetectorRef, dialogService: TransactionDialogService, relationService: TransactionRelationService);
|
|
15023
15033
|
ngOnInit(): void;
|
|
15024
15034
|
ngOnDestroy(): void;
|
|
15025
15035
|
handleSelectAllLines(value: boolean): void;
|
|
15036
|
+
handleCCSelectionChanged(value: boolean): void;
|
|
15026
15037
|
openSendDialog(): void;
|
|
15027
15038
|
protected getDefaultEmailAddressList(): Promise<string[]>;
|
|
15028
15039
|
protected getDefaultSendMethod(): Promise<number>;
|
|
@@ -15039,7 +15050,7 @@ declare class TransactionQuickAccessReserveComponent extends TransactionQuickAcc
|
|
|
15039
15050
|
|
|
15040
15051
|
declare class TransactionQuickAccessReserveModule {
|
|
15041
15052
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionQuickAccessReserveModule, never>;
|
|
15042
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionQuickAccessReserveModule, [typeof TransactionQuickAccessReserveComponent], [typeof i2.CommonModule, typeof i6.SendMethodDialogModule, typeof PipeModule, typeof QuickSendButtonModule, typeof i3.InputCheckboxModule], [typeof TransactionQuickAccessReserveComponent]>;
|
|
15053
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionQuickAccessReserveModule, [typeof TransactionQuickAccessReserveComponent], [typeof i2.CommonModule, typeof i6.SendMethodDialogModule, typeof PipeModule, typeof QuickSendButtonModule, typeof i3.InputCheckboxModule, typeof i3.ScreenConfigurationModule], [typeof TransactionQuickAccessReserveComponent]>;
|
|
15043
15054
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionQuickAccessReserveModule>;
|
|
15044
15055
|
}
|
|
15045
15056
|
|
|
@@ -17026,6 +17037,7 @@ declare class TransactionCashRegisterDialogModule {
|
|
|
17026
17037
|
}
|
|
17027
17038
|
|
|
17028
17039
|
declare class TransactionCreateService extends TransactionService {
|
|
17040
|
+
set activeRubric(value: TransactionTypeCategory);
|
|
17029
17041
|
createServiceOrderWithTransactionLine(transId: number, lineNr: number): Promise<boolean>;
|
|
17030
17042
|
createServiceOrderWithSourceGood(goodId: number): Promise<boolean>;
|
|
17031
17043
|
createServiceOrderWithSLA(productName: string): Promise<boolean>;
|
package/lib/component/transaction-quick-access/transaction-quick-access-reserve/style/_layout.scss
CHANGED
|
@@ -2,9 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
@include export-module('cc-transaction-quick-access-reserve-layout') {
|
|
4
4
|
.co-transaction-quick-access-reserve {
|
|
5
|
-
.
|
|
5
|
+
.quick-access-content-wrapper {
|
|
6
6
|
display: flex;
|
|
7
|
-
|
|
7
|
+
row-gap: 10px;
|
|
8
|
+
align-items: start;
|
|
9
|
+
flex-direction: column;
|
|
10
|
+
|
|
11
|
+
.sub-section {
|
|
12
|
+
display: flex;
|
|
13
|
+
align-items: center;
|
|
14
|
+
flex-direction: row;
|
|
15
|
+
column-gap: 10px;
|
|
16
|
+
}
|
|
8
17
|
}
|
|
9
18
|
}
|
|
10
19
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "262.1.
|
|
3
|
+
"version": "262.1.37",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 20",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"@colijnit/catalog": ">=262.1.0",
|
|
14
14
|
"@colijnit/corecomponents_v12": ">=262.1.10",
|
|
15
15
|
"@colijnit/ioneconnector": ">=262.1.0",
|
|
16
|
-
"@colijnit/mainapi": ">=262.1.
|
|
16
|
+
"@colijnit/mainapi": ">=262.1.14",
|
|
17
17
|
"@colijnit/product": ">=262.1.0",
|
|
18
18
|
"@colijnit/relation": ">=262.1.0",
|
|
19
|
-
"@colijnit/relationapi": ">=262.1.
|
|
19
|
+
"@colijnit/relationapi": ">=262.1.1",
|
|
20
20
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
21
21
|
"@colijnit/sharedcomponents": ">=262.1.11",
|
|
22
22
|
"@colijnit/transactionapi": ">=262.1.15"
|