@colijnit/transaction 300.1.5 → 300.1.7
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 +376 -337
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +5 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -6135,7 +6135,6 @@ declare class TransactionHeaderPopupRelationComponent extends TransactionHeaderP
|
|
|
6135
6135
|
handleNavigationClick(nav: string): void;
|
|
6136
6136
|
handleChangeCustomGroup(group: string): void;
|
|
6137
6137
|
navigateToRelation(): void;
|
|
6138
|
-
titleNameForTitleId(titleId: number): string;
|
|
6139
6138
|
private _setFirstAddress;
|
|
6140
6139
|
private _lockRelation;
|
|
6141
6140
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderPopupRelationComponent, never>;
|
|
@@ -8798,6 +8797,7 @@ declare class DeliveryPlanningService {
|
|
|
8798
8797
|
districtAvailabilityCheck(planOrder: PlanOrder, transportDay: PlanningTransportWeekDay): Promise<boolean>;
|
|
8799
8798
|
filterTransactionsForDeliveryPlanning(transactions: TransactionSearchView[], transportDay: PlanningTransportWeekDay): Promise<TransactionSearchView[]>;
|
|
8800
8799
|
syncPlanOrderTimesWithTransportDate(planOrder: PlanOrder, transport: PlanningTransportWeekDay): Promise<void>;
|
|
8800
|
+
getFirstDayOfCurrentWeek(): Date;
|
|
8801
8801
|
static ɵfac: i0.ɵɵFactoryDeclaration<DeliveryPlanningService, never>;
|
|
8802
8802
|
static ɵprov: i0.ɵɵInjectableDeclaration<DeliveryPlanningService>;
|
|
8803
8803
|
}
|
|
@@ -10711,6 +10711,7 @@ declare class DeliveryPlanningComponent implements OnDestroy {
|
|
|
10711
10711
|
constructor(_deliveryPlanningService: DeliveryPlanningService);
|
|
10712
10712
|
ngOnDestroy(): void;
|
|
10713
10713
|
fullscreenToggle(): void;
|
|
10714
|
+
setRelationViewValues(): void;
|
|
10714
10715
|
static ɵfac: i0.ɵɵFactoryDeclaration<DeliveryPlanningComponent, never>;
|
|
10715
10716
|
static ɵcmp: i0.ɵɵComponentDeclaration<DeliveryPlanningComponent, "co-delivery-planning", never, { "employeeView": { "alias": "employeeView"; "required": false; }; "relationId": { "alias": "relationId"; "required": false; }; "triptychMode": { "alias": "triptychMode"; "required": false; }; "currentPlanningViewMode": { "alias": "currentPlanningViewMode"; "required": false; }; "currentPlanningMode": { "alias": "currentPlanningMode"; "required": false; }; "calendarViewMode": { "alias": "calendarViewMode"; "required": false; }; }, { "fullscreenEvent": "fullscreenEvent"; }, never, never, false, never>;
|
|
10716
10717
|
}
|
|
@@ -14833,6 +14834,9 @@ declare class TransactionQuickAccessInvoiceComponent extends TransactionQuickAcc
|
|
|
14833
14834
|
protected combinedDocument(request: PrintPurchaseOrderForTransactionOrderWithoutLinesRequest, localPrint: boolean): void;
|
|
14834
14835
|
transactionSet(): void;
|
|
14835
14836
|
_prepareRequest(request: EmailInvoiceRequest | PrintInvoiceRequest | PdfInvoiceRequest): boolean;
|
|
14837
|
+
openSendMethodDialogForNewInvoice(): void;
|
|
14838
|
+
private _isHistoricReportSelected;
|
|
14839
|
+
private _showNoInvoiceLinesError;
|
|
14836
14840
|
filterLinesForRequest(): TransactionLineInfo[];
|
|
14837
14841
|
historicDocuments(): boolean;
|
|
14838
14842
|
handleSendDocument(defaultSendMethod: string): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "300.1.
|
|
3
|
+
"version": "300.1.7",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 20",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"@colijnit/relation": ">=300.1.0",
|
|
19
19
|
"@colijnit/relationapi": ">=300.1.0",
|
|
20
20
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
21
|
-
"@colijnit/sharedcomponents": ">=300.1.
|
|
22
|
-
"@colijnit/transactionapi": ">=300.1.
|
|
21
|
+
"@colijnit/sharedcomponents": ">=300.1.4",
|
|
22
|
+
"@colijnit/transactionapi": ">=300.1.6"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"tslib": "^2.8.1"
|