@colijnit/transaction 12.1.223 → 12.1.225
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/bundles/colijnit-transaction.umd.js +70 -48
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/delivery-planning/service/delivery-planning.service.js +14 -12
- package/esm2015/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-popup/delivery-planning-overview-popup.component.js +9 -8
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-sales-overview-button-bar-button.component.js +15 -4
- package/esm2015/lib/component/transaction-internal/transaction-internal.component.js +10 -8
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-invoice/transaction-quick-access-invoice.component.js +10 -2
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.component.js +11 -2
- package/esm2015/lib/component/transaction-search/transaction-search.module.js +2 -2
- package/esm2015/lib/res/dictionary/dictionaries.js +2 -2
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +66 -34
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-popup/delivery-planning-overview-popup.component.d.ts +1 -1
- package/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-sales-overview-button-bar-button.component.d.ts +5 -2
- package/package.json +1 -1
|
@@ -21,7 +21,7 @@ export declare class DeliveryPlanningOverviewPopupComponent implements OnDestroy
|
|
|
21
21
|
showClass(): boolean;
|
|
22
22
|
constructor(iconCacheService: IconCacheService, _transaction: TransactionService, _deliveryPlanningService: DeliveryPlanningService);
|
|
23
23
|
ngOnDestroy(): void;
|
|
24
|
-
totalAssemblyTime(
|
|
24
|
+
totalAssemblyTime(planOrder: PlanOrder): number;
|
|
25
25
|
closePopup(): void;
|
|
26
26
|
handleCommitClick(): void;
|
|
27
27
|
startTimeForOrder(): Date;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnDestroy } from "@angular/core";
|
|
1
|
+
import { ElementRef, OnDestroy, Renderer2 } from "@angular/core";
|
|
2
2
|
import { TransactionButtonBarButtonBaseComponent } from "./transaction-button-bar-button-base.component";
|
|
3
3
|
import { IconCacheService } from "../../../service/icon-cache.service";
|
|
4
4
|
import { TransactionEventService } from "../../../service/transaction-event.service";
|
|
@@ -16,16 +16,19 @@ export declare class TransactionSalesOverviewButtonBarButtonComponent extends Tr
|
|
|
16
16
|
private _dictionaryService;
|
|
17
17
|
private _screenConfigService;
|
|
18
18
|
private _transactionService;
|
|
19
|
+
private _elementRef;
|
|
20
|
+
private _renderer;
|
|
19
21
|
readonly icons: typeof Icon;
|
|
20
22
|
readonly category: typeof TransactionTypeCategory;
|
|
21
23
|
readonly cfgNames: typeof TransactionCfgName;
|
|
22
24
|
showClass: boolean;
|
|
23
25
|
private _subs;
|
|
24
26
|
showCategories: boolean;
|
|
25
|
-
constructor(iconCacheService: IconCacheService, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService);
|
|
27
|
+
constructor(iconCacheService: IconCacheService, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2);
|
|
26
28
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
27
29
|
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
28
30
|
ngOnDestroy(): void;
|
|
29
31
|
handleClickWrapper(event: MouseEvent): void;
|
|
30
32
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
33
|
+
private handleDocumentClick;
|
|
31
34
|
}
|