@colijnit/transaction 261.20.44 → 261.20.45
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 +387 -357
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +9 -6
- package/lib/component/payment/style/_layout.scss +6 -0
- package/lib/component/transaction-search/transaction-search-result/style/_layout.scss +1 -1
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -301,7 +301,7 @@ import { Relation } from '@colijnit/relationapi/build/model/relation.bo';
|
|
|
301
301
|
import { RelationSmallObject as RelationSmallObject$1 } from '@colijnit/relationapi/build/model/relation-small-object.bo';
|
|
302
302
|
import { DocDeliveryBatch } from '@colijnit/transactionapi/build/model/doc-delivery-batch.bo';
|
|
303
303
|
import * as i3 from '@colijnit/corecomponents_v12';
|
|
304
|
-
import { BaseModuleScreenConfigService, BaseModuleService, FormMasterService, ScreenConfigAdapterComponent, OverlayService, FormComponent, FilterItemViewmodel, InputTextComponent, InputTextareaComponent, InputCheckboxComponent, InputDatePickerComponent, ContentViewMode, ColumnAlign, ColorSequenceService, SimpleGridColumnTemplateType, SimpleGridColumnDirective, ButtonComponent, OverlayParentDirective, HourSchedulingExpandableComponent, FilterItemComponent, FilterItemMode, InputScannerComponent, CoreComponentsIcon } from '@colijnit/corecomponents_v12';
|
|
304
|
+
import { BaseModuleScreenConfigService, BaseModuleService, FormMasterService, ScreenConfigAdapterComponent, OverlayService, FormComponent, FilterItemViewmodel, InputTextComponent, InputTextareaComponent, InputCheckboxComponent, InputDatePickerComponent, ContentViewMode, ColumnAlign, ColorSequenceService, SimpleGridColumnTemplateType, SimpleGridColumnDirective, ButtonComponent, OverlayParentDirective, PromptService, HourSchedulingExpandableComponent, FilterItemComponent, FilterItemMode, InputScannerComponent, CoreComponentsIcon } from '@colijnit/corecomponents_v12';
|
|
305
305
|
import * as i5 from '@colijnit/relation';
|
|
306
306
|
import { RelationService } from '@colijnit/relation';
|
|
307
307
|
import * as i6 from '@colijnit/sharedcomponents';
|
|
@@ -3225,6 +3225,7 @@ declare class TransactionPaymentService implements OnDestroy {
|
|
|
3225
3225
|
voucher: Voucher;
|
|
3226
3226
|
details: DoPaymentBookingDetail[];
|
|
3227
3227
|
paymentDate: Date;
|
|
3228
|
+
showPaymentMethodMessage: boolean;
|
|
3228
3229
|
set currentPaymentMethod(value: PaymentMethod);
|
|
3229
3230
|
get currentPaymentMethod(): PaymentMethod;
|
|
3230
3231
|
set cashRegisterDrawerNr(value: string);
|
|
@@ -9841,7 +9842,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
9841
9842
|
showCategories: boolean;
|
|
9842
9843
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
9843
9844
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9844
|
-
currentTitle(): "
|
|
9845
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
9845
9846
|
ngOnDestroy(): void;
|
|
9846
9847
|
handleClickWrapper(event: MouseEvent): void;
|
|
9847
9848
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -9867,7 +9868,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
9867
9868
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
9868
9869
|
ngOnDestroy(): void;
|
|
9869
9870
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9870
|
-
currentTitle(): "
|
|
9871
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
9871
9872
|
handleClickWrapper(event: MouseEvent): void;
|
|
9872
9873
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
9873
9874
|
private handleDocumentClick;
|
|
@@ -9919,7 +9920,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
9919
9920
|
showCategories: boolean;
|
|
9920
9921
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
9921
9922
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9922
|
-
currentTitle(): "
|
|
9923
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
9923
9924
|
ngOnDestroy(): void;
|
|
9924
9925
|
handleClickWrapper(event: MouseEvent): void;
|
|
9925
9926
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -10545,6 +10546,7 @@ declare class DeliveryPlanningMainComponent implements OnInit, OnDestroy {
|
|
|
10545
10546
|
private _transaction;
|
|
10546
10547
|
private _transactionEventService;
|
|
10547
10548
|
private _changeDetector;
|
|
10549
|
+
private _promptService;
|
|
10548
10550
|
private _subs;
|
|
10549
10551
|
planning: Planning;
|
|
10550
10552
|
hasLoaded: boolean;
|
|
@@ -10554,12 +10556,13 @@ declare class DeliveryPlanningMainComponent implements OnInit, OnDestroy {
|
|
|
10554
10556
|
set currentStartDate(date: Date);
|
|
10555
10557
|
fullscreenEvent: EventEmitter<void>;
|
|
10556
10558
|
showClass(): boolean;
|
|
10557
|
-
constructor(_deliveryPlanningService: DeliveryPlanningService, _viewModeService: SearchViewModeService, _transactionConn: TransactionConnectorService, _transaction: TransactionService, _transactionEventService: TransactionEventService, _changeDetector: ChangeDetectorRef);
|
|
10559
|
+
constructor(_deliveryPlanningService: DeliveryPlanningService, _viewModeService: SearchViewModeService, _transactionConn: TransactionConnectorService, _transaction: TransactionService, _transactionEventService: TransactionEventService, _changeDetector: ChangeDetectorRef, _promptService: PromptService);
|
|
10558
10560
|
ngOnInit(): Promise<void>;
|
|
10559
10561
|
ngOnDestroy(): void;
|
|
10560
10562
|
planningChanged(planning: Planning): Promise<void>;
|
|
10561
10563
|
updatePlanTransportWeek(updateData: {
|
|
10562
10564
|
oldWeek: PlanningTransportWeekDay[];
|
|
10565
|
+
oldWeekTransportId: number;
|
|
10563
10566
|
week: PlanningTransportWeekDay[];
|
|
10564
10567
|
action: DeliveryPlanningUpdateActions;
|
|
10565
10568
|
resolve?: () => void;
|
|
@@ -10809,6 +10812,7 @@ declare class DeliveryPlanningOverviewComponent implements OnInit, OnDestroy {
|
|
|
10809
10812
|
currentPlanningViewMode: DeliveryPlanningViewModes;
|
|
10810
10813
|
updatePlanningTransportEvent: EventEmitter<{
|
|
10811
10814
|
oldWeek: PlanningTransportWeekDay[];
|
|
10815
|
+
oldWeekTransportId: number;
|
|
10812
10816
|
week: PlanningTransportWeekDay[];
|
|
10813
10817
|
action: DeliveryPlanningUpdateActions;
|
|
10814
10818
|
resolve?: () => void;
|
|
@@ -13894,7 +13898,6 @@ declare class TransactionInternalComponent implements OnInit, OnDestroy {
|
|
|
13894
13898
|
private _hideArticleTextOverviewDialog;
|
|
13895
13899
|
private updateTransactionLine;
|
|
13896
13900
|
handleViewModeChange(mode: ContentViewMode): void;
|
|
13897
|
-
getPlanOrderForTransaction(transaction: TransactionInfoResponse): Promise<void>;
|
|
13898
13901
|
handleShowSalesPersonInput(event: MouseEvent): Promise<void>;
|
|
13899
13902
|
handleCancelUserForm(): void;
|
|
13900
13903
|
handleUserFormError(error: string): Promise<void>;
|
|
@@ -92,6 +92,12 @@
|
|
|
92
92
|
align-items: center;
|
|
93
93
|
row-gap: 10px;
|
|
94
94
|
column-gap: 10px;
|
|
95
|
+
margin-bottom: 10px;
|
|
96
|
+
}
|
|
97
|
+
.payment-method-message {
|
|
98
|
+
margin-bottom: 15px;
|
|
99
|
+
font-weight: bold;
|
|
100
|
+
color: $tp-payment-error-font-color;
|
|
95
101
|
}
|
|
96
102
|
.payment-to-pay-total {
|
|
97
103
|
display: flex;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "261.20.
|
|
3
|
+
"version": "261.20.45",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 20",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@colijnit/relationapi": ">=261.1.1",
|
|
20
20
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
21
21
|
"@colijnit/sharedcomponents": ">=261.20.5",
|
|
22
|
-
"@colijnit/transactionapi": ">=261.1.
|
|
22
|
+
"@colijnit/transactionapi": ">=261.1.23"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"tslib": "^2.8.1"
|