@colijnit/transaction 262.1.35 → 262.1.36

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>;
@@ -4162,6 +4163,7 @@ declare enum TransactionCfgName {
4162
4163
  StickerAmount = "stickerAmount",
4163
4164
  CollieAmount = "collieAmount",
4164
4165
  ReservedAmount = "reservedAmount",
4166
+ NoCC0ForReserveStickers = "noCC0ForReserveStickers",
4165
4167
  OrderedAmount = "orderedAmount",
4166
4168
  LineWarehouseLocationReceived = "lineWarehouseLocationReceived",
4167
4169
  ServiceMessage = "serviceMessage",
@@ -9467,6 +9469,7 @@ declare class TransactionSalesOrderQuotationLineModule {
9467
9469
  declare abstract class TransactionReserveGoodsLineBaseComponent extends TransactionLineBaseComponent implements OnInit, OnDestroy {
9468
9470
  readonly icons: typeof Icon;
9469
9471
  readonly transactionTypeCategory: typeof TransactionTypeCategory;
9472
+ noStickerForCC0: boolean;
9470
9473
  private _subscriptions;
9471
9474
  ngOnInit(): Promise<void>;
9472
9475
  ngOnDestroy(): void;
@@ -9981,7 +9984,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
9981
9984
  showCategories: boolean;
9982
9985
  constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
9983
9986
  currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
9984
- currentTitle(): "OVERVIEW" | "MARGINS";
9987
+ currentTitle(): "MARGINS" | "OVERVIEW";
9985
9988
  ngOnDestroy(): void;
9986
9989
  handleClickWrapper(event: MouseEvent): void;
9987
9990
  handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
@@ -10007,7 +10010,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
10007
10010
  constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
10008
10011
  ngOnDestroy(): void;
10009
10012
  currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
10010
- currentTitle(): "OVERVIEW" | "MARGINS";
10013
+ currentTitle(): "MARGINS" | "OVERVIEW";
10011
10014
  handleClickWrapper(event: MouseEvent): void;
10012
10015
  handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
10013
10016
  private handleDocumentClick;
@@ -10059,7 +10062,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
10059
10062
  showCategories: boolean;
10060
10063
  constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
10061
10064
  currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
10062
- currentTitle(): "OVERVIEW" | "MARGINS";
10065
+ currentTitle(): "MARGINS" | "OVERVIEW";
10063
10066
  ngOnDestroy(): void;
10064
10067
  handleClickWrapper(event: MouseEvent): void;
10065
10068
  handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
@@ -15012,17 +15015,20 @@ declare class TransactionQuickAccessReserveComponent extends TransactionQuickAcc
15012
15015
  protected dialogService: TransactionDialogService;
15013
15016
  protected relationService: TransactionRelationService;
15014
15017
  readonly icons: typeof Icon;
15018
+ readonly cfgNames: typeof TransactionCfgName;
15015
15019
  showClass(): boolean;
15016
15020
  reportDocumentEmailRequest: ReportingDocumentEmailSignDocBaseRequest;
15017
15021
  reportDocumentPrintRequest: ReportingDocumentPrintSignDocBaseRequest;
15018
15022
  reportDocumentPdfRequest: ReportingDocumentPdfBaseRequest;
15019
15023
  reportDocumentCombinedRequest: PrintPurchaseOrderForTransactionOrderWithoutLinesRequest;
15024
+ noCC0ForReserveStickers: boolean;
15020
15025
  layoutCode: LayoutCode;
15021
15026
  private _subs;
15022
15027
  constructor(searchService: TransactionSearchService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, transactionService: TransactionService, imageService: TransactionImageService, dictionaryService: DictionaryService, changeDetector: ChangeDetectorRef, dialogService: TransactionDialogService, relationService: TransactionRelationService);
15023
15028
  ngOnInit(): void;
15024
15029
  ngOnDestroy(): void;
15025
15030
  handleSelectAllLines(value: boolean): void;
15031
+ handleCCSelectionChanged(value: boolean): void;
15026
15032
  openSendDialog(): void;
15027
15033
  protected getDefaultEmailAddressList(): Promise<string[]>;
15028
15034
  protected getDefaultSendMethod(): Promise<number>;
@@ -15039,7 +15045,7 @@ declare class TransactionQuickAccessReserveComponent extends TransactionQuickAcc
15039
15045
 
15040
15046
  declare class TransactionQuickAccessReserveModule {
15041
15047
  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]>;
15048
+ 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
15049
  static ɵinj: i0.ɵɵInjectorDeclaration<TransactionQuickAccessReserveModule>;
15044
15050
  }
15045
15051
 
@@ -17026,6 +17032,7 @@ declare class TransactionCashRegisterDialogModule {
17026
17032
  }
17027
17033
 
17028
17034
  declare class TransactionCreateService extends TransactionService {
17035
+ set activeRubric(value: TransactionTypeCategory);
17029
17036
  createServiceOrderWithTransactionLine(transId: number, lineNr: number): Promise<boolean>;
17030
17037
  createServiceOrderWithSourceGood(goodId: number): Promise<boolean>;
17031
17038
  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": "262.1.35",
3
+ "version": "262.1.36",
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": ">=262.1.12",
17
17
  "@colijnit/product": ">=262.1.0",
18
18
  "@colijnit/relation": ">=262.1.0",
19
- "@colijnit/relationapi": ">=262.1.0",
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"