@colijnit/transaction 300.1.10 → 300.1.12

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
@@ -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>;
@@ -4192,6 +4193,7 @@ declare enum TransactionCfgName {
4192
4193
  StickerAmount = "stickerAmount",
4193
4194
  CollieAmount = "collieAmount",
4194
4195
  ReservedAmount = "reservedAmount",
4196
+ NoCC0ForReserveStickers = "noCC0ForReserveStickers",
4195
4197
  OrderedAmount = "orderedAmount",
4196
4198
  LineWarehouseLocationReceived = "lineWarehouseLocationReceived",
4197
4199
  ServiceMessage = "serviceMessage",
@@ -9552,6 +9554,7 @@ declare class TransactionSalesOrderQuotationLineModule {
9552
9554
  declare abstract class TransactionReserveGoodsLineBaseComponent extends TransactionLineBaseComponent implements OnInit, OnDestroy {
9553
9555
  readonly icons: typeof Icon;
9554
9556
  readonly transactionTypeCategory: typeof TransactionTypeCategory;
9557
+ noStickerForCC0: boolean;
9555
9558
  private _subscriptions;
9556
9559
  ngOnInit(): Promise<void>;
9557
9560
  ngOnDestroy(): void;
@@ -10066,7 +10069,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
10066
10069
  showCategories: boolean;
10067
10070
  constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
10068
10071
  currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
10069
- currentTitle(): "OVERVIEW" | "MARGINS";
10072
+ currentTitle(): "MARGINS" | "OVERVIEW";
10070
10073
  ngOnDestroy(): void;
10071
10074
  handleClickWrapper(event: MouseEvent): void;
10072
10075
  handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
@@ -10092,7 +10095,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
10092
10095
  constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
10093
10096
  ngOnDestroy(): void;
10094
10097
  currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
10095
- currentTitle(): "OVERVIEW" | "MARGINS";
10098
+ currentTitle(): "MARGINS" | "OVERVIEW";
10096
10099
  handleClickWrapper(event: MouseEvent): void;
10097
10100
  handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
10098
10101
  private handleDocumentClick;
@@ -10144,7 +10147,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
10144
10147
  showCategories: boolean;
10145
10148
  constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
10146
10149
  currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
10147
- currentTitle(): "OVERVIEW" | "MARGINS";
10150
+ currentTitle(): "MARGINS" | "OVERVIEW";
10148
10151
  ngOnDestroy(): void;
10149
10152
  handleClickWrapper(event: MouseEvent): void;
10150
10153
  handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
@@ -15172,17 +15175,20 @@ declare class TransactionQuickAccessReserveComponent extends TransactionQuickAcc
15172
15175
  protected dialogService: TransactionDialogService;
15173
15176
  protected relationService: TransactionRelationService;
15174
15177
  readonly icons: typeof Icon;
15178
+ readonly cfgNames: typeof TransactionCfgName;
15175
15179
  showClass(): boolean;
15176
15180
  reportDocumentEmailRequest: ReportingDocumentEmailSignDocBaseRequest;
15177
15181
  reportDocumentPrintRequest: ReportingDocumentPrintSignDocBaseRequest;
15178
15182
  reportDocumentPdfRequest: ReportingDocumentPdfBaseRequest;
15179
15183
  reportDocumentCombinedRequest: PrintPurchaseOrderForTransactionOrderWithoutLinesRequest;
15184
+ noCC0ForReserveStickers: boolean;
15180
15185
  layoutCode: LayoutCode;
15181
15186
  private _subs;
15182
15187
  constructor(searchService: TransactionSearchService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, transactionService: TransactionService, imageService: TransactionImageService, dictionaryService: DictionaryService, changeDetector: ChangeDetectorRef, dialogService: TransactionDialogService, relationService: TransactionRelationService);
15183
15188
  ngOnInit(): void;
15184
15189
  ngOnDestroy(): void;
15185
15190
  handleSelectAllLines(value: boolean): void;
15191
+ handleCCSelectionChanged(value: boolean): void;
15186
15192
  openSendDialog(): void;
15187
15193
  protected getDefaultEmailAddressList(): Promise<string[]>;
15188
15194
  protected getDefaultSendMethod(): Promise<number>;
@@ -15199,7 +15205,7 @@ declare class TransactionQuickAccessReserveComponent extends TransactionQuickAcc
15199
15205
 
15200
15206
  declare class TransactionQuickAccessReserveModule {
15201
15207
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionQuickAccessReserveModule, never>;
15202
- static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionQuickAccessReserveModule, [typeof TransactionQuickAccessReserveComponent], [typeof i2.CommonModule, typeof i6.SendMethodDialogModule, typeof PipeModule, typeof QuickSendButtonModule, typeof i3.InputCheckboxModule], [typeof TransactionQuickAccessReserveComponent]>;
15208
+ 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]>;
15203
15209
  static ɵinj: i0.ɵɵInjectorDeclaration<TransactionQuickAccessReserveModule>;
15204
15210
  }
15205
15211
 
@@ -17187,6 +17193,7 @@ declare class TransactionCashRegisterDialogModule {
17187
17193
  }
17188
17194
 
17189
17195
  declare class TransactionCreateService extends TransactionService {
17196
+ set activeRubric(value: TransactionTypeCategory);
17190
17197
  createServiceOrderWithTransactionLine(transId: number, lineNr: number): Promise<boolean>;
17191
17198
  createServiceOrderWithSourceGood(goodId: number): Promise<boolean>;
17192
17199
  createServiceOrderWithSLA(productName: string): Promise<boolean>;
@@ -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
- .select-all-wrapper {
5
+ .quick-access-content-wrapper {
6
6
  display: flex;
7
- align-items: center;
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": "300.1.10",
3
+ "version": "300.1.12",
4
4
  "description": "Colijn IT transaction module for Angular 20",
5
5
  "repository": "npm/npm",
6
6
  "author": "Colijn IT",
@@ -16,7 +16,7 @@
16
16
  "@colijnit/mainapi": ">=300.1.6",
17
17
  "@colijnit/product": ">=300.1.0",
18
18
  "@colijnit/relation": ">=300.1.0",
19
- "@colijnit/relationapi": ">=300.1.0",
19
+ "@colijnit/relationapi": ">=300.1.1",
20
20
  "@colijnit/sharedapi": ">=1.0.20",
21
21
  "@colijnit/sharedcomponents": ">=300.1.4",
22
22
  "@colijnit/transactionapi": ">=300.1.8"