@colijnit/transaction 262.1.28 → 262.1.29
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 +139 -59
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +20 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1163,6 +1163,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1163
1163
|
changeTransactionLineGoodDescription(uuid: string, lineUuid: string, goodDescription: string): Promise<TransactionInfoResponse>;
|
|
1164
1164
|
changeHeaderTransactionDefinitive(uuid: string, definitive: boolean): Promise<TransactionInfoResponse>;
|
|
1165
1165
|
changeHeaderDiscountOnOrderLine(uuid: string, discount: boolean): Promise<TransactionInfoResponse>;
|
|
1166
|
+
changeHeaderPrintDiscount(uuid: string, discount: boolean): Promise<TransactionInfoResponse>;
|
|
1166
1167
|
changeHeaderDeliveryAddress(uuid: string, newNawNr: number): Promise<TransactionInfoResponse>;
|
|
1167
1168
|
changeHeaderInvoiceAddress(uuid: string, newNawNr: number): Promise<TransactionInfoResponse>;
|
|
1168
1169
|
changeHeaderRelationTransactionDate(request: ChangeHeaderRelationTransactionDateRequest): Promise<TransactionInfoResponse>;
|
|
@@ -1674,6 +1675,7 @@ declare class TransactionConnectorService {
|
|
|
1674
1675
|
changeTransactionLineCollectionCode(uuid: string, lineUuid: string, code: string): Promise<TransactionInfoResponse>;
|
|
1675
1676
|
changeHeaderTransactionDefinitive(uuid: string, definitive: boolean): Promise<TransactionInfoResponse>;
|
|
1676
1677
|
changeHeaderDiscountOnOrderLine(uuid: string, discount: boolean): Promise<TransactionInfoResponse>;
|
|
1678
|
+
changeHeaderPrintDiscount(uuid: string, discount: boolean): Promise<TransactionInfoResponse>;
|
|
1677
1679
|
changeHeaderDeliveryAddress(uuid: string, newNawNr: number): Promise<TransactionInfoResponse>;
|
|
1678
1680
|
changeHeaderInvoiceAddress(uuid: string, newNawNr: number): Promise<TransactionInfoResponse>;
|
|
1679
1681
|
changeHeaderRelationTransactionDate(request: ChangeHeaderRelationTransactionDateRequest): Promise<TransactionInfoResponse>;
|
|
@@ -2460,6 +2462,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2460
2462
|
cancelCashRegisterOrder(): Promise<void>;
|
|
2461
2463
|
updateHeaderTransactionDefinitive(uuid: string, definitive: boolean, saveTransaction: boolean): Promise<boolean>;
|
|
2462
2464
|
updateHeaderDiscountOnOrderLine(uuid: string, discount: boolean, saveTransaction: boolean): Promise<boolean>;
|
|
2465
|
+
changeHeaderPrintDiscount(uuid: string, discount: boolean, saveTransaction: boolean): Promise<boolean>;
|
|
2463
2466
|
updateHeaderDeliveryAddress(uuid: string, newNawNr: number, saveTransaction?: boolean): Promise<boolean>;
|
|
2464
2467
|
updateHeaderInvoiceAddress(uuid: string, newNawNr: number, saveTransaction?: boolean): Promise<boolean>;
|
|
2465
2468
|
updateHeaderTransactionDeliveryDate(uuid: string, date: Date, saveTransaction: boolean): Promise<boolean>;
|
|
@@ -9929,7 +9932,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
9929
9932
|
showCategories: boolean;
|
|
9930
9933
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
9931
9934
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9932
|
-
currentTitle(): "
|
|
9935
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
9933
9936
|
ngOnDestroy(): void;
|
|
9934
9937
|
handleClickWrapper(event: MouseEvent): void;
|
|
9935
9938
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -9955,7 +9958,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
9955
9958
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
9956
9959
|
ngOnDestroy(): void;
|
|
9957
9960
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9958
|
-
currentTitle(): "
|
|
9961
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
9959
9962
|
handleClickWrapper(event: MouseEvent): void;
|
|
9960
9963
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
9961
9964
|
private handleDocumentClick;
|
|
@@ -10007,7 +10010,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
10007
10010
|
showCategories: boolean;
|
|
10008
10011
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
10009
10012
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10010
|
-
currentTitle(): "
|
|
10013
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
10011
10014
|
ngOnDestroy(): void;
|
|
10012
10015
|
handleClickWrapper(event: MouseEvent): void;
|
|
10013
10016
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -13527,6 +13530,7 @@ declare class DialogTransactionHeaderDiscountComponent extends DialogTransaction
|
|
|
13527
13530
|
showDiscountCode: boolean;
|
|
13528
13531
|
showDistributeDiscountLoader: boolean;
|
|
13529
13532
|
canEditDiscountPercentage: boolean;
|
|
13533
|
+
editingDiscounts: boolean;
|
|
13530
13534
|
activeDiscountReason: string;
|
|
13531
13535
|
activeDiscountCode: string;
|
|
13532
13536
|
activeDiscountType: DiscountType;
|
|
@@ -13537,6 +13541,8 @@ declare class DialogTransactionHeaderDiscountComponent extends DialogTransaction
|
|
|
13537
13541
|
newDiscountReason: string;
|
|
13538
13542
|
}): void;
|
|
13539
13543
|
onDiscountPercentChange(event: MouseEvent): void;
|
|
13544
|
+
onEditDone(): void;
|
|
13545
|
+
onFocus(event: boolean): void;
|
|
13540
13546
|
redistributeDiscount(): Promise<void>;
|
|
13541
13547
|
private _detectChanges;
|
|
13542
13548
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogTransactionHeaderDiscountComponent, never>;
|
|
@@ -13547,10 +13553,13 @@ declare class TransactionHeaderDiscountPercentageComponent extends TransactionIn
|
|
|
13547
13553
|
set child(content: any);
|
|
13548
13554
|
newDiscountReason: string;
|
|
13549
13555
|
newDiscountCode: string;
|
|
13556
|
+
EditDone: EventEmitter<void>;
|
|
13557
|
+
onFocus: EventEmitter<boolean>;
|
|
13550
13558
|
input: InputTextComponent;
|
|
13559
|
+
onBlur(): void;
|
|
13551
13560
|
commit(amount: number): Promise<boolean>;
|
|
13552
13561
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderDiscountPercentageComponent, never>;
|
|
13553
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDiscountPercentageComponent, "co-transaction-header-discount-percentage", never, { "newDiscountReason": { "alias": "newDiscountReason"; "required": false; }; "newDiscountCode": { "alias": "newDiscountCode"; "required": false; }; }, {}, never, never, false, never>;
|
|
13562
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDiscountPercentageComponent, "co-transaction-header-discount-percentage", never, { "newDiscountReason": { "alias": "newDiscountReason"; "required": false; }; "newDiscountCode": { "alias": "newDiscountCode"; "required": false; }; }, { "EditDone": "EditDone"; "onFocus": "onFocus"; }, never, never, false, never>;
|
|
13554
13563
|
}
|
|
13555
13564
|
|
|
13556
13565
|
declare class TransactionHeaderDiscountPercentageModule {
|
|
@@ -13563,10 +13572,13 @@ declare class TransactionHeaderDiscountAmountComponent extends TransactionInputH
|
|
|
13563
13572
|
set child(content: any);
|
|
13564
13573
|
newDiscountReason: string;
|
|
13565
13574
|
newDiscountCode: string;
|
|
13575
|
+
EditDone: EventEmitter<void>;
|
|
13576
|
+
onFocus: EventEmitter<boolean>;
|
|
13566
13577
|
input: InputTextComponent;
|
|
13578
|
+
onBlur(): void;
|
|
13567
13579
|
commit(amount: number): Promise<boolean>;
|
|
13568
13580
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderDiscountAmountComponent, never>;
|
|
13569
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDiscountAmountComponent, "co-transaction-header-discount-amount", never, { "newDiscountReason": { "alias": "newDiscountReason"; "required": false; }; "newDiscountCode": { "alias": "newDiscountCode"; "required": false; }; }, {}, never, never, false, never>;
|
|
13581
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDiscountAmountComponent, "co-transaction-header-discount-amount", never, { "newDiscountReason": { "alias": "newDiscountReason"; "required": false; }; "newDiscountCode": { "alias": "newDiscountCode"; "required": false; }; }, { "EditDone": "EditDone"; "onFocus": "onFocus"; }, never, never, false, never>;
|
|
13570
13582
|
}
|
|
13571
13583
|
|
|
13572
13584
|
declare class TransactionHeaderDiscountAmountModule {
|
|
@@ -13581,12 +13593,13 @@ declare class TransactionHeaderDiscountTransactionTotalComponent extends Transac
|
|
|
13581
13593
|
newDiscountCode: string;
|
|
13582
13594
|
inputLabel: boolean;
|
|
13583
13595
|
EditDone: EventEmitter<void>;
|
|
13596
|
+
onFocus: EventEmitter<boolean>;
|
|
13584
13597
|
input: InputTextComponent;
|
|
13585
13598
|
transactionTotalAmount: number;
|
|
13586
13599
|
onBlur(): void;
|
|
13587
13600
|
commit(amount: number): Promise<boolean>;
|
|
13588
13601
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderDiscountTransactionTotalComponent, never>;
|
|
13589
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDiscountTransactionTotalComponent, "co-transaction-header-discount-transaction-total", never, { "newDiscountReason": { "alias": "newDiscountReason"; "required": false; }; "newDiscountCode": { "alias": "newDiscountCode"; "required": false; }; "inputLabel": { "alias": "inputLabel"; "required": false; }; }, { "EditDone": "EditDone"; }, never, never, false, never>;
|
|
13602
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDiscountTransactionTotalComponent, "co-transaction-header-discount-transaction-total", never, { "newDiscountReason": { "alias": "newDiscountReason"; "required": false; }; "newDiscountCode": { "alias": "newDiscountCode"; "required": false; }; "inputLabel": { "alias": "inputLabel"; "required": false; }; }, { "EditDone": "EditDone"; "onFocus": "onFocus"; }, never, never, false, never>;
|
|
13590
13603
|
}
|
|
13591
13604
|
|
|
13592
13605
|
declare class TransactionHeaderDiscountTransactionTotalModule {
|
|
@@ -14861,7 +14874,7 @@ declare class TransactionQuickAccessPlanningComponent extends TransactionHeaderB
|
|
|
14861
14874
|
toggleLspMode(): void;
|
|
14862
14875
|
get selectedLines(): TransactionLineInfo[];
|
|
14863
14876
|
togglePopup(): void;
|
|
14864
|
-
openPlanningSidePanel(): void
|
|
14877
|
+
openPlanningSidePanel(): Promise<void>;
|
|
14865
14878
|
allowPartialDelivery(): boolean;
|
|
14866
14879
|
isOrderFullyPlanned(): boolean;
|
|
14867
14880
|
handleCreatedTrackAndTrace(deliveryMethodCode: string): void;
|