@colijnit/transaction 262.1.16 → 262.1.17
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
|
@@ -3287,6 +3287,7 @@ declare class TransactionPaymentService implements OnDestroy {
|
|
|
3287
3287
|
private _clearPspTransactionData;
|
|
3288
3288
|
private _dataUriToBase64;
|
|
3289
3289
|
private _setCashDrawerIdIfValidDrawer;
|
|
3290
|
+
private _triggerCalculateAmountToPay;
|
|
3290
3291
|
private _handleCashLimitCheck;
|
|
3291
3292
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionPaymentService, never>;
|
|
3292
3293
|
static ɵprov: i0.ɵɵInjectableDeclaration<TransactionPaymentService>;
|
|
@@ -6187,6 +6188,7 @@ declare class TransactionHeaderPopupPaymentComponent extends TransactionHeaderPo
|
|
|
6187
6188
|
private _getPaymentMethodTypes;
|
|
6188
6189
|
private _getObjectConfiguration;
|
|
6189
6190
|
private _updateChosenAmountToPay;
|
|
6191
|
+
private _getCashOnDeliveryData;
|
|
6190
6192
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderPopupPaymentComponent, never>;
|
|
6191
6193
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderPopupPaymentComponent, "co-transaction-header-popup-payment", never, {}, {}, never, never, false, never>;
|
|
6192
6194
|
}
|
|
@@ -6201,7 +6203,7 @@ declare class CashOnDeliveryModalComponent extends TransactionInputLineFieldBase
|
|
|
6201
6203
|
changeAmountRequest: ChangeHeaderCashOnDeliveryAmountRequest;
|
|
6202
6204
|
readonly icons: typeof Icon;
|
|
6203
6205
|
cashOnDeliveryAmount: number;
|
|
6204
|
-
ngOnInit(): void
|
|
6206
|
+
ngOnInit(): Promise<void>;
|
|
6205
6207
|
updateCashOnDeliveryAmount(): void;
|
|
6206
6208
|
hideModal(): void;
|
|
6207
6209
|
onEnterKey(event: KeyboardEvent): void;
|
|
@@ -10886,7 +10888,10 @@ declare class DeliveryPlanningOverviewComponent implements OnInit, OnDestroy {
|
|
|
10886
10888
|
dragEnd(ev: DragEvent): void;
|
|
10887
10889
|
filterWeekArray(weekArray: PlanningTransportWeekDay[]): PlanningTransportWeekDay[];
|
|
10888
10890
|
handleDateRangeChange(newDate: Date): void;
|
|
10889
|
-
onChangeView(
|
|
10891
|
+
onChangeView(event: {
|
|
10892
|
+
view: CalendarView;
|
|
10893
|
+
date: Date;
|
|
10894
|
+
}): void;
|
|
10890
10895
|
handleDeleteOrder(deleteResult: {
|
|
10891
10896
|
order: PlanOrder;
|
|
10892
10897
|
transport: PlanningTransportWeekDay;
|
|
@@ -12446,6 +12451,11 @@ declare class TransactionPurchaseOrderFilterContentOrderComponent extends Transa
|
|
|
12446
12451
|
text: any;
|
|
12447
12452
|
value: any;
|
|
12448
12453
|
};
|
|
12454
|
+
withOrWithoutLines: FilterItemViewmodel[];
|
|
12455
|
+
withOrWithoutLinesFields: {
|
|
12456
|
+
text: any;
|
|
12457
|
+
value: any;
|
|
12458
|
+
};
|
|
12449
12459
|
transStartDate: Date;
|
|
12450
12460
|
transEndDate: Date;
|
|
12451
12461
|
deliveryStartDate: Date;
|
|
@@ -12463,6 +12473,7 @@ declare class TransactionPurchaseOrderFilterContentOrderComponent extends Transa
|
|
|
12463
12473
|
private _setWorkFlowStatusNames;
|
|
12464
12474
|
private _setAllProjectCodes;
|
|
12465
12475
|
private _setSuppliers;
|
|
12476
|
+
private _setWithOrWithoutLines;
|
|
12466
12477
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionPurchaseOrderFilterContentOrderComponent, never>;
|
|
12467
12478
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionPurchaseOrderFilterContentOrderComponent, "co-transaction-purchase-order-filter-content-order", never, {}, {}, never, never, false, never>;
|
|
12468
12479
|
}
|
|
@@ -15975,6 +15986,7 @@ declare class TransactionLinesSidePanelServiceOrderComponent extends Transaction
|
|
|
15975
15986
|
transactionSet(): Promise<void>;
|
|
15976
15987
|
handlePurchaseNavigation(): void;
|
|
15977
15988
|
handleTransactionNavigation(): void;
|
|
15989
|
+
handleRelationNavigation(): Promise<void>;
|
|
15978
15990
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLinesSidePanelServiceOrderComponent, never>;
|
|
15979
15991
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLinesSidePanelServiceOrderComponent, "co-transaction-lines-side-panel-service-order", never, {}, {}, never, never, false, never>;
|
|
15980
15992
|
}
|
|
@@ -194,6 +194,7 @@
|
|
|
194
194
|
height: auto;
|
|
195
195
|
.activity-tab-content {
|
|
196
196
|
overflow: visible;
|
|
197
|
+
flex-direction: column-reverse;
|
|
197
198
|
.activity-wrapper-inner {
|
|
198
199
|
order: 1;
|
|
199
200
|
&.bottom-task {
|
|
@@ -255,13 +256,11 @@
|
|
|
255
256
|
.activity-wrapper {
|
|
256
257
|
max-height: 388px;
|
|
257
258
|
overflow: auto;
|
|
258
|
-
|
|
259
|
-
min-width: 50%;
|
|
259
|
+
width: 100%;
|
|
260
260
|
padding: 10px 15px;
|
|
261
261
|
&.activity-status-change {
|
|
262
|
-
width:
|
|
263
|
-
|
|
264
|
-
background: #f8f8fa;
|
|
262
|
+
width: 100%;
|
|
263
|
+
background: #ececec;
|
|
265
264
|
padding: 10px 30px;
|
|
266
265
|
box-shadow: none;
|
|
267
266
|
.activity-display {
|