@colijnit/transaction 262.1.31 → 300.1.0
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 +276 -277
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/package.json +11 -11
package/index.d.ts
CHANGED
|
@@ -2380,7 +2380,6 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
|
|
|
2380
2380
|
resetCurrentTransaction(): void;
|
|
2381
2381
|
saveTransaction(rememberTransaction?: boolean): Promise<TransactionInfoResponse>;
|
|
2382
2382
|
commit(): Promise<boolean>;
|
|
2383
|
-
commitGeneral(): Promise<boolean>;
|
|
2384
2383
|
rollback(refresh?: boolean, force?: boolean): Promise<boolean>;
|
|
2385
2384
|
rollbackBeacon(): Promise<void>;
|
|
2386
2385
|
searchTransactions(request: TransactionSearchViewRequest): Promise<TransactionSearchResult>;
|
|
@@ -9972,7 +9971,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
9972
9971
|
showCategories: boolean;
|
|
9973
9972
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
9974
9973
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9975
|
-
currentTitle(): "
|
|
9974
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
9976
9975
|
ngOnDestroy(): void;
|
|
9977
9976
|
handleClickWrapper(event: MouseEvent): void;
|
|
9978
9977
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -9998,7 +9997,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
9998
9997
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
9999
9998
|
ngOnDestroy(): void;
|
|
10000
9999
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10001
|
-
currentTitle(): "
|
|
10000
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
10002
10001
|
handleClickWrapper(event: MouseEvent): void;
|
|
10003
10002
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
10004
10003
|
private handleDocumentClick;
|
|
@@ -10050,7 +10049,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
10050
10049
|
showCategories: boolean;
|
|
10051
10050
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
10052
10051
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10053
|
-
currentTitle(): "
|
|
10052
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
10054
10053
|
ngOnDestroy(): void;
|
|
10055
10054
|
handleClickWrapper(event: MouseEvent): void;
|
|
10056
10055
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -14901,6 +14900,7 @@ declare class TransactionQuickAccessPlanningComponent extends TransactionHeaderB
|
|
|
14901
14900
|
protected changeDetector: ChangeDetectorRef;
|
|
14902
14901
|
private _connector;
|
|
14903
14902
|
private _deliveryPlanningService;
|
|
14903
|
+
private _dialogService;
|
|
14904
14904
|
sendDocumentsComponent: TransactionSendDocumentsComponent;
|
|
14905
14905
|
readonly buttonType: typeof AppPopupButtonType;
|
|
14906
14906
|
showLspPopup: boolean;
|
|
@@ -14909,7 +14909,7 @@ declare class TransactionQuickAccessPlanningComponent extends TransactionHeaderB
|
|
|
14909
14909
|
get lspMode(): boolean;
|
|
14910
14910
|
set lspMode(lspMode: boolean);
|
|
14911
14911
|
showClass(): boolean;
|
|
14912
|
-
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef, _connector: TransactionConnectorService, _deliveryPlanningService: DeliveryPlanningService);
|
|
14912
|
+
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef, _connector: TransactionConnectorService, _deliveryPlanningService: DeliveryPlanningService, _dialogService: DialogService);
|
|
14913
14913
|
ngOnInit(): void;
|
|
14914
14914
|
handleSelectAllLines(value: boolean): void;
|
|
14915
14915
|
toggleLspMode(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "300.1.0",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 20",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -9,17 +9,17 @@
|
|
|
9
9
|
"peerDependencies": {
|
|
10
10
|
"@angular/common": ">=20.3.16",
|
|
11
11
|
"@angular/core": ">=20.3.16",
|
|
12
|
-
"@colijnit/articleapi": ">=
|
|
13
|
-
"@colijnit/catalog": ">=
|
|
14
|
-
"@colijnit/corecomponents_v12": ">=
|
|
15
|
-
"@colijnit/ioneconnector": ">=
|
|
16
|
-
"@colijnit/mainapi": ">=
|
|
17
|
-
"@colijnit/product": ">=
|
|
18
|
-
"@colijnit/relation": ">=
|
|
19
|
-
"@colijnit/relationapi": ">=
|
|
12
|
+
"@colijnit/articleapi": ">=300.1.0",
|
|
13
|
+
"@colijnit/catalog": ">=300.1.0",
|
|
14
|
+
"@colijnit/corecomponents_v12": ">=300.1.0",
|
|
15
|
+
"@colijnit/ioneconnector": ">=300.1.0",
|
|
16
|
+
"@colijnit/mainapi": ">=300.1.0",
|
|
17
|
+
"@colijnit/product": ">=300.1.0",
|
|
18
|
+
"@colijnit/relation": ">=300.1.0",
|
|
19
|
+
"@colijnit/relationapi": ">=300.1.0",
|
|
20
20
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
21
|
-
"@colijnit/sharedcomponents": ">=
|
|
22
|
-
"@colijnit/transactionapi": ">=
|
|
21
|
+
"@colijnit/sharedcomponents": ">=300.1.0",
|
|
22
|
+
"@colijnit/transactionapi": ">=300.1.0"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"tslib": "^2.8.1"
|