@colijnit/transaction 261.20.65 → 261.20.67
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
|
@@ -810,6 +810,7 @@ declare class TransactionEventService {
|
|
|
810
810
|
readonly selectAllOrderLinesForReserveGoods: Subject<boolean>;
|
|
811
811
|
readonly selectAllOrderLinesForOrderingStickers: Subject<boolean>;
|
|
812
812
|
readonly setColliStickerAmount: Subject<boolean>;
|
|
813
|
+
readonly setNoStickerForCC0: Subject<boolean>;
|
|
813
814
|
readonly globalReceiveLocationSet: Subject<string>;
|
|
814
815
|
readonly updatingSalesOrderGeneratePurchaseOrders: Subject<boolean>;
|
|
815
816
|
readonly updatingSalesOrderConfirmation: Subject<boolean>;
|
|
@@ -963,6 +964,7 @@ declare class TransactionEventService {
|
|
|
963
964
|
readonly removeFromContainerRequested: Subject<void>;
|
|
964
965
|
readonly removeFromContainerSuccess: Subject<void>;
|
|
965
966
|
readonly requestFocusOnArticleField: Subject<void>;
|
|
967
|
+
readonly transportNotificationsSet: Subject<void>;
|
|
966
968
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionEventService, never>;
|
|
967
969
|
static ɵprov: i0.ɵɵInjectableDeclaration<TransactionEventService>;
|
|
968
970
|
}
|
|
@@ -4139,6 +4141,7 @@ declare enum TransactionCfgName {
|
|
|
4139
4141
|
StickerAmount = "stickerAmount",
|
|
4140
4142
|
CollieAmount = "collieAmount",
|
|
4141
4143
|
ReservedAmount = "reservedAmount",
|
|
4144
|
+
NoCC0ForReserveStickers = "noCC0ForReserveStickers",
|
|
4142
4145
|
OrderedAmount = "orderedAmount",
|
|
4143
4146
|
LineWarehouseLocationReceived = "lineWarehouseLocationReceived",
|
|
4144
4147
|
ServiceMessage = "serviceMessage",
|
|
@@ -9417,6 +9420,7 @@ declare class TransactionSalesOrderQuotationLineModule {
|
|
|
9417
9420
|
declare abstract class TransactionReserveGoodsLineBaseComponent extends TransactionLineBaseComponent implements OnInit, OnDestroy {
|
|
9418
9421
|
readonly icons: typeof Icon;
|
|
9419
9422
|
readonly transactionTypeCategory: typeof TransactionTypeCategory;
|
|
9423
|
+
noStickerForCC0: boolean;
|
|
9420
9424
|
private _subscriptions;
|
|
9421
9425
|
ngOnInit(): Promise<void>;
|
|
9422
9426
|
ngOnDestroy(): void;
|
|
@@ -9511,10 +9515,14 @@ declare abstract class TransactionPurchaseTransportLineBaseComponent extends Tra
|
|
|
9511
9515
|
}
|
|
9512
9516
|
|
|
9513
9517
|
declare class TransactionPurchaseTransportLineComponent extends TransactionPurchaseTransportLineBaseComponent {
|
|
9514
|
-
lineIndex: number;
|
|
9515
9518
|
showClass(): boolean;
|
|
9519
|
+
lineIndex: number;
|
|
9516
9520
|
totals: TransportNotificationTotals;
|
|
9521
|
+
private _sub;
|
|
9517
9522
|
handleVisibilityChange(visible: boolean): Promise<void>;
|
|
9523
|
+
addTranportNotificationSub(): void;
|
|
9524
|
+
removeTranportNotificationSub(): void;
|
|
9525
|
+
getTotals(): Promise<void>;
|
|
9518
9526
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionPurchaseTransportLineComponent, never>;
|
|
9519
9527
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionPurchaseTransportLineComponent, "co-transaction-purchase-transport-line", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; }, {}, never, never, false, never>;
|
|
9520
9528
|
}
|
|
@@ -9930,7 +9938,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
9930
9938
|
showCategories: boolean;
|
|
9931
9939
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
9932
9940
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9933
|
-
currentTitle(): "
|
|
9941
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
9934
9942
|
ngOnDestroy(): void;
|
|
9935
9943
|
handleClickWrapper(event: MouseEvent): void;
|
|
9936
9944
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -9956,7 +9964,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
9956
9964
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
9957
9965
|
ngOnDestroy(): void;
|
|
9958
9966
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9959
|
-
currentTitle(): "
|
|
9967
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
9960
9968
|
handleClickWrapper(event: MouseEvent): void;
|
|
9961
9969
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
9962
9970
|
private handleDocumentClick;
|
|
@@ -10008,7 +10016,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
10008
10016
|
showCategories: boolean;
|
|
10009
10017
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
10010
10018
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10011
|
-
currentTitle(): "
|
|
10019
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
10012
10020
|
ngOnDestroy(): void;
|
|
10013
10021
|
handleClickWrapper(event: MouseEvent): void;
|
|
10014
10022
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -14923,17 +14931,20 @@ declare class TransactionQuickAccessReserveComponent extends TransactionQuickAcc
|
|
|
14923
14931
|
protected dialogService: TransactionDialogService;
|
|
14924
14932
|
protected relationService: TransactionRelationService;
|
|
14925
14933
|
readonly icons: typeof Icon;
|
|
14934
|
+
readonly cfgNames: typeof TransactionCfgName;
|
|
14926
14935
|
showClass(): boolean;
|
|
14927
14936
|
reportDocumentEmailRequest: ReportingDocumentEmailSignDocBaseRequest;
|
|
14928
14937
|
reportDocumentPrintRequest: ReportingDocumentPrintSignDocBaseRequest;
|
|
14929
14938
|
reportDocumentPdfRequest: ReportingDocumentPdfBaseRequest;
|
|
14930
14939
|
reportDocumentCombinedRequest: PrintPurchaseOrderForTransactionOrderWithoutLinesRequest;
|
|
14940
|
+
noCC0ForReserveStickers: boolean;
|
|
14931
14941
|
layoutCode: LayoutCode;
|
|
14932
14942
|
private _subs;
|
|
14933
14943
|
constructor(searchService: TransactionSearchService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, transactionService: TransactionService, imageService: TransactionImageService, dictionaryService: DictionaryService, changeDetector: ChangeDetectorRef, dialogService: TransactionDialogService, relationService: TransactionRelationService);
|
|
14934
14944
|
ngOnInit(): void;
|
|
14935
14945
|
ngOnDestroy(): void;
|
|
14936
14946
|
handleSelectAllLines(value: boolean): void;
|
|
14947
|
+
handleCCSelectionChanged(value: boolean): void;
|
|
14937
14948
|
openSendDialog(): void;
|
|
14938
14949
|
protected getDefaultEmailAddressList(): Promise<string[]>;
|
|
14939
14950
|
protected getDefaultSendMethod(): Promise<number>;
|
|
@@ -14950,7 +14961,7 @@ declare class TransactionQuickAccessReserveComponent extends TransactionQuickAcc
|
|
|
14950
14961
|
|
|
14951
14962
|
declare class TransactionQuickAccessReserveModule {
|
|
14952
14963
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionQuickAccessReserveModule, never>;
|
|
14953
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionQuickAccessReserveModule, [typeof TransactionQuickAccessReserveComponent], [typeof i2.CommonModule, typeof i6.SendMethodDialogModule, typeof PipeModule, typeof QuickSendButtonModule, typeof i3.InputCheckboxModule], [typeof TransactionQuickAccessReserveComponent]>;
|
|
14964
|
+
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]>;
|
|
14954
14965
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionQuickAccessReserveModule>;
|
|
14955
14966
|
}
|
|
14956
14967
|
|
|
@@ -16911,6 +16922,7 @@ declare class TransactionCashRegisterDialogModule {
|
|
|
16911
16922
|
}
|
|
16912
16923
|
|
|
16913
16924
|
declare class TransactionCreateService extends TransactionService {
|
|
16925
|
+
set activeRubric(value: TransactionTypeCategory);
|
|
16914
16926
|
createServiceOrderWithTransactionLine(transId: number, lineNr: number): Promise<boolean>;
|
|
16915
16927
|
createServiceOrderWithSourceGood(goodId: number): Promise<boolean>;
|
|
16916
16928
|
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": "261.20.
|
|
3
|
+
"version": "261.20.67",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 20",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"@colijnit/catalog": ">=261.20.3",
|
|
14
14
|
"@colijnit/corecomponents_v12": ">=261.20.16",
|
|
15
15
|
"@colijnit/ioneconnector": ">=261.1.4",
|
|
16
|
-
"@colijnit/mainapi": ">=261.1.
|
|
16
|
+
"@colijnit/mainapi": ">=261.1.13",
|
|
17
17
|
"@colijnit/product": ">=261.20.0",
|
|
18
18
|
"@colijnit/relation": ">=261.20.0",
|
|
19
19
|
"@colijnit/relationapi": ">=261.1.1",
|