@colijnit/transaction 300.1.22 → 300.1.23
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
|
@@ -3211,6 +3211,12 @@ declare class CheckoutOverviewRelationEditComponent implements OnInit, AfterView
|
|
|
3211
3211
|
handleDeliveryLocalHashChange(localHash: string): void;
|
|
3212
3212
|
checkSameAddress(checked: boolean): void;
|
|
3213
3213
|
handleRelationNumberChange(relationNumber: string): void;
|
|
3214
|
+
/**
|
|
3215
|
+
* When the relation has both an active delivery (A) and billing (F) address and the invoice
|
|
3216
|
+
* address hasn't been explicitly decoupled from the delivery address yet, link the billing
|
|
3217
|
+
* address to the order as its invoice address and uncheck "same as delivery" accordingly.
|
|
3218
|
+
*/
|
|
3219
|
+
private _autoSelectBillingAddressAsInvoice;
|
|
3214
3220
|
private _getFirstActiveAddressOrCreateNew;
|
|
3215
3221
|
private _getFirstAddress;
|
|
3216
3222
|
private _getFirstAddressOfType;
|
|
@@ -6172,6 +6178,12 @@ declare class TransactionHeaderPopupRelationComponent extends TransactionHeaderP
|
|
|
6172
6178
|
setIndexDeliveryAddress(nawNr: number): Promise<void>;
|
|
6173
6179
|
setLocalHashDeliveryAddress(localHash: string): Promise<void>;
|
|
6174
6180
|
setIndexInvoiceAddress(nawNr: number): Promise<void>;
|
|
6181
|
+
/**
|
|
6182
|
+
* When the relation has both an active delivery (A) and billing (F) address and no invoice
|
|
6183
|
+
* address has already been explicitly chosen for this transaction, link the billing address
|
|
6184
|
+
* to the order as its invoice address and uncheck "same as delivery" accordingly.
|
|
6185
|
+
*/
|
|
6186
|
+
private _autoSelectBillingAddressAsInvoice;
|
|
6175
6187
|
setLocalHashInvoiceAddress(localHash: string): Promise<void>;
|
|
6176
6188
|
checkSameAddress(checked: boolean): void;
|
|
6177
6189
|
handleInputChange(request: RelationSuggestionsRequest): void;
|
|
@@ -10127,7 +10139,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
10127
10139
|
showCategories: boolean;
|
|
10128
10140
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
10129
10141
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10130
|
-
currentTitle(): "
|
|
10142
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
10131
10143
|
ngOnDestroy(): void;
|
|
10132
10144
|
handleClickWrapper(event: MouseEvent): void;
|
|
10133
10145
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -10153,7 +10165,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
10153
10165
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
10154
10166
|
ngOnDestroy(): void;
|
|
10155
10167
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10156
|
-
currentTitle(): "
|
|
10168
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
10157
10169
|
handleClickWrapper(event: MouseEvent): void;
|
|
10158
10170
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
10159
10171
|
private handleDocumentClick;
|
|
@@ -10205,7 +10217,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
10205
10217
|
showCategories: boolean;
|
|
10206
10218
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
10207
10219
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10208
|
-
currentTitle(): "
|
|
10220
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
10209
10221
|
ngOnDestroy(): void;
|
|
10210
10222
|
handleClickWrapper(event: MouseEvent): void;
|
|
10211
10223
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|