@colijnit/transaction 262.1.7 → 262.1.9
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 +3821 -3446
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +64 -12
- package/lib/component/payment/style/_layout.scss +24 -0
- package/lib/component/payment/style/_material-definition.scss +2 -0
- package/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/style/_layout.scss +17 -0
- package/lib/component/transaction-cash-register-order/transaction-cash-register-payment-dialog/style/_material-definition.scss +1 -0
- package/lib/component/transaction-line-interbranch-receive-goods/style/_layout.scss +78 -78
- package/lib/component/transaction-line-interbranch-receive-goods/style/_material-definition.scss +2 -2
- package/lib/component/transaction-line-interbranch-receive-goods/style/_theme.scss +4 -4
- package/lib/component/transaction-line-interbranch-receive-goods/style/material.scss +4 -4
- package/lib/component/transaction-line-planning-tasks/style/_layout.scss +10 -0
- package/lib/component/transaction-line-planning-tasks/style/_material-definition.scss +0 -0
- package/lib/component/transaction-line-planning-tasks/style/_theme.scss +4 -0
- package/lib/component/transaction-line-planning-tasks/style/material.scss +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_layout.scss +27 -27
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_material-definition.scss +1 -1
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_theme.scss +4 -4
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/material.scss +4 -4
- package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_layout.scss +73 -73
- package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_theme.scss +6 -6
- package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/material.scss +4 -4
- package/lib/component/transaction-quick-access/transaction-quick-access-planning/style/_layout.scss +24 -1
- package/lib/component/transaction-quick-access/transaction-quick-access-planning/style/_material-definition.scss +3 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -350,6 +350,7 @@ import { ServiceWizardAnswer } from '@colijnit/transactionapi/build/model/servic
|
|
|
350
350
|
import { PriorityType } from '@colijnit/mainapi/build/enum/priority-type.enum';
|
|
351
351
|
import { SupplierStockForecast } from '@colijnit/transactionapi/build/model/supplier-stock-forecast';
|
|
352
352
|
import { PurchaseReservationSalesLine } from '@colijnit/transactionapi/build/model/purchase-reservation-sales-line.bo';
|
|
353
|
+
import { Task } from '@colijnit/mainapi/build/model/task.bo';
|
|
353
354
|
import { SendMethodType } from '@colijnit/mainapi/build/enum/send-method-type.enum';
|
|
354
355
|
import { ReportingDocumentPdfBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-pdf-base-request';
|
|
355
356
|
import { ReportingDocumentEmailSignDocBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-email-sign-doc-base-request';
|
|
@@ -365,6 +366,7 @@ import { QuantityInHistoricState } from '@colijnit/transactionapi/build/enum/qua
|
|
|
365
366
|
import { LogisticStickerRequest } from '@colijnit/transactionapi/build/model/logistic-sticker-request';
|
|
366
367
|
import { Payment } from '@colijnit/transactionapi/build/model/payment.bo';
|
|
367
368
|
import { WorkflowCategoryType } from '@colijnit/mainapi/build/enum/workflow-category.enum';
|
|
369
|
+
import { ActivityViewModel } from '@colijnit/mainapi/build/model/activity-view-model';
|
|
368
370
|
|
|
369
371
|
declare class Version {
|
|
370
372
|
name: string;
|
|
@@ -1490,6 +1492,8 @@ declare class TransactionConnectorAdapterService {
|
|
|
1490
1492
|
getWorkOrderDefaultSendMethod(relationId: number, showLoader?: boolean): Promise<number>;
|
|
1491
1493
|
getDefaultEmailAddressListForWorkOrder(transactionUUID: string, showLoader?: boolean): Promise<string[]>;
|
|
1492
1494
|
previewWorkOrder(pdfWorkOrderRequest: PdfWorkOrderRequest, showLoader?: boolean): Promise<PdfWorkOrderResponse>;
|
|
1495
|
+
cancelPspTransaction(pspTransactionUuid: string): Promise<boolean>;
|
|
1496
|
+
createQRCode(width: number, height: number, data: string): Promise<string>;
|
|
1493
1497
|
private _openPdfContent;
|
|
1494
1498
|
private _handleLocalPrintFile;
|
|
1495
1499
|
private _handleExceptionFromResponse;
|
|
@@ -1962,6 +1966,8 @@ declare class TransactionConnectorService {
|
|
|
1962
1966
|
getWorkOrderDefaultSendMethod(relationId: number, showLoader?: boolean): Promise<number>;
|
|
1963
1967
|
getDefaultEmailAddressListForWorkOrder(transactionUUID: string, showLoader?: boolean): Promise<string[]>;
|
|
1964
1968
|
previewWorkOrder(pdfWorkOrderRequest: PdfWorkOrderRequest, showLoader?: boolean): Promise<PdfWorkOrderResponse>;
|
|
1969
|
+
cancelPspTransaction(pspTransactionUuid: string): Promise<boolean>;
|
|
1970
|
+
createQRCode(width: number, height: number, data: string): Promise<string>;
|
|
1965
1971
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionConnectorService, never>;
|
|
1966
1972
|
static ɵprov: i0.ɵɵInjectableDeclaration<TransactionConnectorService>;
|
|
1967
1973
|
}
|
|
@@ -2030,6 +2036,7 @@ declare enum Icon {
|
|
|
2030
2036
|
AtSolid = "at_solid",
|
|
2031
2037
|
BarcodeRegular = "barcode_regular",
|
|
2032
2038
|
BarcodeSolid = "barcode_solid",
|
|
2039
|
+
Bars = "bars",
|
|
2033
2040
|
BarsFilter = "bars_filter",
|
|
2034
2041
|
BoxesPackingRegular = "boxes_packing_regular",
|
|
2035
2042
|
BoxOpenFullRegular = "box_open_full_regular",
|
|
@@ -2812,6 +2819,8 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2812
2819
|
getDefaultEmailAddressListForWorkOrder(transactionUUID: string, showLoader?: boolean): Promise<string[]>;
|
|
2813
2820
|
previewWorkOrder(pdfWorkOrderRequest: PdfWorkOrderRequest, showLoader?: boolean): Promise<PdfWorkOrderResponse>;
|
|
2814
2821
|
sendPackageInformationToLSP(request: TransactionLspInformationRequest): Promise<TransactionInfoResponse>;
|
|
2822
|
+
cancelPspTransaction(pspTransactionUuid: string): Promise<boolean>;
|
|
2823
|
+
createQRCode(width: number, height: number, data: string): Promise<string>;
|
|
2815
2824
|
protected _handleBeforeRememberCurrentTransaction(transactionInfoResponse: TransactionInfoResponse): Promise<void>;
|
|
2816
2825
|
protected _handleAfterRememberCurrentTransaction(): Promise<void>;
|
|
2817
2826
|
private _checkAndSaveLinesForAIConfirmation;
|
|
@@ -2992,6 +3001,7 @@ declare class TransactionHeaderService {
|
|
|
2992
3001
|
lineOperationStatuses: LineOperationStatus[];
|
|
2993
3002
|
transactionTotal: TransactionTotal;
|
|
2994
3003
|
transactionMarginInfo: TransactionMarginInfo;
|
|
3004
|
+
showPlanningTasks: boolean;
|
|
2995
3005
|
showingMargins: boolean;
|
|
2996
3006
|
orderLineSets: OrderLineSetInfo[];
|
|
2997
3007
|
fullyInvoiced: boolean;
|
|
@@ -3226,6 +3236,7 @@ declare class TransactionPaymentService implements OnDestroy {
|
|
|
3226
3236
|
voucher: Voucher;
|
|
3227
3237
|
details: DoPaymentBookingDetail[];
|
|
3228
3238
|
paymentDate: Date;
|
|
3239
|
+
showPaymentMethodMessage: boolean;
|
|
3229
3240
|
set currentPaymentMethod(value: PaymentMethod);
|
|
3230
3241
|
get currentPaymentMethod(): PaymentMethod;
|
|
3231
3242
|
set cashRegisterDrawerNr(value: string);
|
|
@@ -3241,8 +3252,11 @@ declare class TransactionPaymentService implements OnDestroy {
|
|
|
3241
3252
|
qrCodeImage: string;
|
|
3242
3253
|
qrCodeUrl: string;
|
|
3243
3254
|
showPspQrCode: boolean;
|
|
3255
|
+
showPspActions: boolean;
|
|
3244
3256
|
getDepositAmount: boolean;
|
|
3245
3257
|
cancelUrl: string;
|
|
3258
|
+
paymentUrl: string;
|
|
3259
|
+
pspTransactionUuid: string;
|
|
3246
3260
|
shouldContinue: boolean;
|
|
3247
3261
|
payed: Subject<void>;
|
|
3248
3262
|
paymentFailed: Subject<void>;
|
|
@@ -3261,12 +3275,13 @@ declare class TransactionPaymentService implements OnDestroy {
|
|
|
3261
3275
|
constructor(_transactionEventService: TransactionEventService, _paymentConnectorService: TransactionPaymentConnectorService, _dictionaryService: DictionaryService, _dialogService: TransactionDialogService, _transactionService: TransactionService, _datePipe: DatePipe);
|
|
3262
3276
|
ngOnDestroy(): void;
|
|
3263
3277
|
handlePayment(): Promise<void>;
|
|
3264
|
-
cancelPayment(): void
|
|
3278
|
+
cancelPayment(): Promise<void>;
|
|
3265
3279
|
preparePaymentInfo(): Promise<void>;
|
|
3266
3280
|
private _waitForPinPaymentStatus;
|
|
3267
3281
|
private _handlePayment;
|
|
3268
3282
|
private _handlePaymentFailed;
|
|
3269
3283
|
private _clearInterval;
|
|
3284
|
+
private _clearPspTransactionData;
|
|
3270
3285
|
private _dataUriToBase64;
|
|
3271
3286
|
private _setCashDrawerIdIfValidDrawer;
|
|
3272
3287
|
private _handleCashLimitCheck;
|
|
@@ -3370,8 +3385,12 @@ declare abstract class TransactionPaymentBaseComponent implements OnInit, OnDest
|
|
|
3370
3385
|
declare class PaymentComponent extends TransactionPaymentBaseComponent {
|
|
3371
3386
|
showClass: boolean;
|
|
3372
3387
|
depositAmount: number;
|
|
3388
|
+
qrCodeImageSrc: string;
|
|
3373
3389
|
cashRegisterSelected(cashRegister: CashRegister, index: number): Promise<void>;
|
|
3374
3390
|
onDepositPaymentFetched(depositAmount: number): void;
|
|
3391
|
+
handlePaymentUrlClicked(): void;
|
|
3392
|
+
handleShowQrCode(): Promise<void>;
|
|
3393
|
+
private _dataUriToBase64;
|
|
3375
3394
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaymentComponent, never>;
|
|
3376
3395
|
static ɵcmp: i0.ɵɵComponentDeclaration<PaymentComponent, "co-payment", never, {}, {}, never, never, false, never>;
|
|
3377
3396
|
}
|
|
@@ -6560,7 +6579,6 @@ declare class TransactionHeaderTypeModule {
|
|
|
6560
6579
|
declare class TransactionHeaderPaymentConditionComponent extends TransactionFilterPopupHeaderBaseComponent<PaymentCondition> implements OnInit {
|
|
6561
6580
|
fields: Object;
|
|
6562
6581
|
paymentConditionModel: PaymentCondition;
|
|
6563
|
-
defaultValue: ObjectConfigurationDefaultValueType;
|
|
6564
6582
|
ngOnInit(): void;
|
|
6565
6583
|
commitTransactionPaymentCondition(condition: PaymentCondition): Promise<boolean>;
|
|
6566
6584
|
private _setPaymentConditionModel;
|
|
@@ -8579,6 +8597,7 @@ declare class DeliveryPlanningService {
|
|
|
8579
8597
|
currentTransId: number;
|
|
8580
8598
|
deletingOrder: PlanOrder;
|
|
8581
8599
|
linesPlanOrder: PlanOrder;
|
|
8600
|
+
planningTask: Task;
|
|
8582
8601
|
availabilityCheckEvent: EventEmitter<PlanOrder>;
|
|
8583
8602
|
availabilityResetEvent: EventEmitter<void>;
|
|
8584
8603
|
showPlanningPopup: EventEmitter<void>;
|
|
@@ -10864,10 +10883,10 @@ declare class DeliveryPlanningOverviewComponent implements OnInit, OnDestroy {
|
|
|
10864
10883
|
}, weekDay: PlanningTransportWeekDay, transportWeekRow: PlanningTransportWeekDay[]): void;
|
|
10865
10884
|
getOrderLinesPlanned(order: PlanOrder): Promise<void>;
|
|
10866
10885
|
getTransportOrders(transportDay: PlanningTransportWeekDay): Promise<void>;
|
|
10867
|
-
planOrderLines(order: PlanOrder, transportDay: PlanningTransportWeekDay, week: PlanningTransportWeekDay[]): Promise<void>;
|
|
10886
|
+
planOrderLines(order: PlanOrder, transportDay: PlanningTransportWeekDay, week: PlanningTransportWeekDay[], withTasks?: boolean): Promise<void>;
|
|
10868
10887
|
planSelectedLines(transportDay: PlanningTransportWeekDay, week: PlanningTransportWeekDay[]): Promise<void>;
|
|
10869
10888
|
getSequenceOrderValue(order: PlanOrder): Promise<void>;
|
|
10870
|
-
handlePopupPlanEvent(event: [PlanOrder, PlanningTransportWeekDay, PlanningTransportWeekDay[]]): Promise<void>;
|
|
10889
|
+
handlePopupPlanEvent(event: [PlanOrder, PlanningTransportWeekDay, PlanningTransportWeekDay[]], withTasks?: boolean): Promise<void>;
|
|
10871
10890
|
handleSettingsReset(): void;
|
|
10872
10891
|
handleSettingsSaved(): Promise<void>;
|
|
10873
10892
|
openSettingsDialog(transportDay: PlanningTransportWeekDay): void;
|
|
@@ -10902,6 +10921,7 @@ declare class DeliveryPlanningOverviewComponent implements OnInit, OnDestroy {
|
|
|
10902
10921
|
transId: number;
|
|
10903
10922
|
insertIndex: number;
|
|
10904
10923
|
}, planningTransportWeek: PlanningTransportWeekDay[], transportDay: PlanningTransportWeekDay): void;
|
|
10924
|
+
handlePlanTask(task: Task, planningTransportWeekDay: PlanningTransportWeekDay, week: PlanningTransportWeekDay[]): Promise<void>;
|
|
10905
10925
|
private _planCalendar;
|
|
10906
10926
|
static ɵfac: i0.ɵɵFactoryDeclaration<DeliveryPlanningOverviewComponent, never>;
|
|
10907
10927
|
static ɵcmp: i0.ɵɵComponentDeclaration<DeliveryPlanningOverviewComponent, "co-delivery-planning-overview", never, { "employeeView": { "alias": "employeeView"; "required": false; }; "currentMode": { "alias": "currentMode"; "required": false; }; "currentViewMode": { "alias": "currentViewMode"; "required": false; }; "currentPlanningViewMode": { "alias": "currentPlanningViewMode"; "required": false; }; }, { "updatePlanningTransportEvent": "updatePlanningTransportEvent"; "resetPlanningTransportEvent": "resetPlanningTransportEvent"; }, never, never, false, never>;
|
|
@@ -13303,7 +13323,7 @@ declare class TransactionLineInterbranchReceiveGoodsComponent extends Transactio
|
|
|
13303
13323
|
ngOnDestroy(): void;
|
|
13304
13324
|
updateQuantityToReceive(): void;
|
|
13305
13325
|
submit(): boolean;
|
|
13306
|
-
getGoodsReceiptHistory(): Promise<void>;
|
|
13326
|
+
getGoodsReceiptHistory(transactionId: number, lineNr: number): Promise<void>;
|
|
13307
13327
|
handleSaveDetailsEdit(): void;
|
|
13308
13328
|
handleSelectStock(availableStock: AvailableStock): void;
|
|
13309
13329
|
handleAmountToReceiveChanged(): void;
|
|
@@ -14743,7 +14763,6 @@ declare class TransactionQuickAccessPlanningComponent extends TransactionHeaderB
|
|
|
14743
14763
|
protected dictionaryService: DictionaryService;
|
|
14744
14764
|
protected transactionService: TransactionService;
|
|
14745
14765
|
protected changeDetector: ChangeDetectorRef;
|
|
14746
|
-
private _purchaseConfirmationService;
|
|
14747
14766
|
private _connector;
|
|
14748
14767
|
private _deliveryPlanningService;
|
|
14749
14768
|
sendDocumentsComponent: TransactionSendDocumentsComponent;
|
|
@@ -14754,7 +14773,7 @@ declare class TransactionQuickAccessPlanningComponent extends TransactionHeaderB
|
|
|
14754
14773
|
get lspMode(): boolean;
|
|
14755
14774
|
set lspMode(lspMode: boolean);
|
|
14756
14775
|
showClass(): boolean;
|
|
14757
|
-
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef,
|
|
14776
|
+
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef, _connector: TransactionConnectorService, _deliveryPlanningService: DeliveryPlanningService);
|
|
14758
14777
|
ngOnInit(): void;
|
|
14759
14778
|
handleSelectAllLines(value: boolean): void;
|
|
14760
14779
|
toggleLspMode(): void;
|
|
@@ -14818,6 +14837,7 @@ declare class TransactionQuickAccessPlanningPopupComponent implements OnInit, On
|
|
|
14818
14837
|
closeEvent(): void;
|
|
14819
14838
|
handleSendMethodOkClick(request: any): void;
|
|
14820
14839
|
getPrintLayouts(): Promise<void>;
|
|
14840
|
+
private _clearData;
|
|
14821
14841
|
private _getPrinters;
|
|
14822
14842
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionQuickAccessPlanningPopupComponent, never>;
|
|
14823
14843
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionQuickAccessPlanningPopupComponent, "co-transaction-quick-access-planning-popup", never, { "lspDialogType": { "alias": "lspDialogType"; "required": false; }; "autoPrint": { "alias": "autoPrint"; "required": false; }; "packageLSP": { "alias": "packageLSP"; "required": false; }; "deliveryMethods": { "alias": "deliveryMethods"; "required": false; }; }, { "close": "close"; "autoPrinted": "autoPrinted"; "createdTrackAndTrace": "createdTrackAndTrace"; }, never, never, false, never>;
|
|
@@ -15652,6 +15672,9 @@ declare class TransactionCashRegisterPaymentDialogComponent extends TransactionP
|
|
|
15652
15672
|
private _changePaymentState;
|
|
15653
15673
|
handleVoucherValidated(voucher: Voucher): void;
|
|
15654
15674
|
handleVoucherPopupClose(): void;
|
|
15675
|
+
handlePaymentUrlClicked(): void;
|
|
15676
|
+
handleShowQrCode(): Promise<void>;
|
|
15677
|
+
private _dataUriToBase64;
|
|
15655
15678
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionCashRegisterPaymentDialogComponent, never>;
|
|
15656
15679
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionCashRegisterPaymentDialogComponent, "co-transaction-cash-register-payment-dialog", never, { "relation": { "alias": "relation"; "required": false; }; "transactionNr": { "alias": "transactionNr"; "required": false; }; "paymentViewModel": { "alias": "paymentViewModel"; "required": false; }; }, { "closeDialog": "closeDialog"; "posOrderPayed": "posOrderPayed"; }, never, never, false, never>;
|
|
15657
15680
|
}
|
|
@@ -15678,7 +15701,7 @@ declare class TransactionCashRegisterPaymentButtonsComponent {
|
|
|
15678
15701
|
toCashRegisterOrderClicked: EventEmitter<void>;
|
|
15679
15702
|
changePaymentMethodClicked: EventEmitter<void>;
|
|
15680
15703
|
constructor(paymentService: TransactionPaymentService);
|
|
15681
|
-
handleCancelPayment(): void
|
|
15704
|
+
handleCancelPayment(): Promise<void>;
|
|
15682
15705
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionCashRegisterPaymentButtonsComponent, never>;
|
|
15683
15706
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionCashRegisterPaymentButtonsComponent, "co-transaction-cash-register-payment-buttons", never, {}, { "toCashRegisterOrderClicked": "toCashRegisterOrderClicked"; "changePaymentMethodClicked": "changePaymentMethodClicked"; }, never, never, false, never>;
|
|
15684
15707
|
}
|
|
@@ -16388,13 +16411,22 @@ declare class TransactionHeaderHandledByModule {
|
|
|
16388
16411
|
|
|
16389
16412
|
declare class TransactionLineActivitiesComponent implements OnInit {
|
|
16390
16413
|
transactionService: TransactionService;
|
|
16414
|
+
private _changeDetector;
|
|
16391
16415
|
readonly tableNames: typeof TableName;
|
|
16416
|
+
readonly cfgNames: typeof TransactionCfgName;
|
|
16417
|
+
readonly WorkflowCategoryType: typeof WorkflowCategoryType;
|
|
16392
16418
|
activities: Activity[];
|
|
16393
|
-
|
|
16419
|
+
user: RelationSmallObject$1;
|
|
16420
|
+
transactionInfo: TransactionInfo;
|
|
16394
16421
|
transactionId: number;
|
|
16395
|
-
|
|
16422
|
+
openActivities: ComponentActivityListComponent;
|
|
16423
|
+
constructor(transactionService: TransactionService, _changeDetector: ChangeDetectorRef);
|
|
16396
16424
|
showClass(): boolean;
|
|
16397
16425
|
ngOnInit(): void;
|
|
16426
|
+
finishedActivitiesRefreshRequested(): Promise<void>;
|
|
16427
|
+
fullActivitiesRefreshRequested(): void;
|
|
16428
|
+
getActivities(): Promise<void>;
|
|
16429
|
+
openCreatedTask(taskId: number): Promise<void>;
|
|
16398
16430
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineActivitiesComponent, never>;
|
|
16399
16431
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineActivitiesComponent, "co-transaction-line-activities", never, { "transactionId": { "alias": "transactionId"; "required": false; }; }, {}, never, never, false, never>;
|
|
16400
16432
|
}
|
|
@@ -16415,8 +16447,9 @@ declare class TransactionLineActivitiesContactMomentsComponent implements OnInit
|
|
|
16415
16447
|
ngOnDestroy(): void;
|
|
16416
16448
|
handleDialogClose(event: void): void;
|
|
16417
16449
|
handleSaveContactMoment(contactMoment: ContactMoment): void;
|
|
16418
|
-
makeRequest(): MergeContactMomentsRequest;
|
|
16419
16450
|
handleEditContactMoment(contactMoment: ContactMoment): void;
|
|
16451
|
+
handleDeleteContactMoment(contactMoment: ContactMoment): Promise<void>;
|
|
16452
|
+
private _makeRequest;
|
|
16420
16453
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineActivitiesContactMomentsComponent, never>;
|
|
16421
16454
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineActivitiesContactMomentsComponent, "co-transaction-line-activities-contact-moments", never, { "table": { "alias": "table"; "required": false; }; "key": { "alias": "key"; "required": false; }; }, {}, never, never, true, never>;
|
|
16422
16455
|
}
|
|
@@ -16455,9 +16488,28 @@ declare class TransactionLineConversionAssistantModule {
|
|
|
16455
16488
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineConversionAssistantModule>;
|
|
16456
16489
|
}
|
|
16457
16490
|
|
|
16491
|
+
declare class TransactionLinePlanningTasksComponent {
|
|
16492
|
+
transactionService: TransactionService;
|
|
16493
|
+
deliveryPlanningService: DeliveryPlanningService;
|
|
16494
|
+
readonly tableNames: typeof TableName;
|
|
16495
|
+
transactionId: string;
|
|
16496
|
+
showClass(): boolean;
|
|
16497
|
+
constructor(transactionService: TransactionService, deliveryPlanningService: DeliveryPlanningService);
|
|
16498
|
+
ngOnInit(): void;
|
|
16499
|
+
handleDragStarted(activity: ActivityViewModel): void;
|
|
16500
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLinePlanningTasksComponent, never>;
|
|
16501
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLinePlanningTasksComponent, "co-transaction-line-planning-tasks", never, {}, {}, never, never, false, never>;
|
|
16502
|
+
}
|
|
16503
|
+
|
|
16504
|
+
declare class TransactionLinePlanningTasksModule {
|
|
16505
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLinePlanningTasksModule, never>;
|
|
16506
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLinePlanningTasksModule, [typeof TransactionLinePlanningTasksComponent], [typeof i2.CommonModule, typeof i6.ComponentActivityListModule], [typeof TransactionLinePlanningTasksComponent]>;
|
|
16507
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLinePlanningTasksModule>;
|
|
16508
|
+
}
|
|
16509
|
+
|
|
16458
16510
|
declare class TransactionInternalModule {
|
|
16459
16511
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInternalModule, never>;
|
|
16460
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionInternalModule, [typeof TransactionInternalComponent, typeof TransactionSalesReservationPopupComponent], [typeof i2.CommonModule, typeof TransactionHeaderModule, typeof TransactionQuickAccessModule, typeof TransactionButtonBarModule, typeof AvatarModule, typeof i3.ViewModeButtonsModule, typeof TransactionCardModule, typeof TransactionLinesModule, typeof AddProductModule, typeof TransactionTotalsModule, typeof TransactionLineSidePanelModule, typeof TransactionArticleTextOverviewModule, typeof TransactionArticleTextModule, typeof PipeModule, typeof TransactionCopyOrderModule, typeof i13.DragDropModule, typeof TransactionLinesSidePanelModule, typeof i3.ButtonModule, typeof i3.IconModule, typeof TransactionButtonModule, typeof i3.ScreenConfigurationModule, typeof TransactionServiceOverviewModule, typeof TransactionCardsModule, typeof TransactionMarginModule, typeof ClickBlockModule, typeof DialogTransactionLineWarehouseCcModule, typeof DialogTransactionHeaderBranchModule, typeof DialogBranchModule, typeof TransactionPurchaseReservationOrderTileModule, typeof i3.CoDialogModule, typeof i6.StockModule, typeof TransactionArticleStockModule, typeof TransactionOrderTileModule, typeof TransactionHeaderCustomerPortalModule, typeof TransactionSalesPersonInputModule, typeof TransactionHeaderSalesPersonModule, typeof i3.ClickoutsideModule, typeof i3.OverlayModule, typeof TransactionHeaderHandledByModule, typeof i6.FormBuilderUserFormModule, typeof DeliveryPlanningOverviewModule, typeof TransactionLineActivitiesModule, typeof TransactionLineConversionAssistantModule], [typeof TransactionInternalComponent, typeof TransactionSalesReservationPopupComponent]>;
|
|
16512
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionInternalModule, [typeof TransactionInternalComponent, typeof TransactionSalesReservationPopupComponent], [typeof i2.CommonModule, typeof TransactionHeaderModule, typeof TransactionQuickAccessModule, typeof TransactionButtonBarModule, typeof AvatarModule, typeof i3.ViewModeButtonsModule, typeof TransactionCardModule, typeof TransactionLinesModule, typeof AddProductModule, typeof TransactionTotalsModule, typeof TransactionLineSidePanelModule, typeof TransactionArticleTextOverviewModule, typeof TransactionArticleTextModule, typeof PipeModule, typeof TransactionCopyOrderModule, typeof i13.DragDropModule, typeof TransactionLinesSidePanelModule, typeof i3.ButtonModule, typeof i3.IconModule, typeof TransactionButtonModule, typeof i3.ScreenConfigurationModule, typeof TransactionServiceOverviewModule, typeof TransactionCardsModule, typeof TransactionMarginModule, typeof ClickBlockModule, typeof DialogTransactionLineWarehouseCcModule, typeof DialogTransactionHeaderBranchModule, typeof DialogBranchModule, typeof TransactionPurchaseReservationOrderTileModule, typeof i3.CoDialogModule, typeof i6.StockModule, typeof TransactionArticleStockModule, typeof TransactionOrderTileModule, typeof TransactionHeaderCustomerPortalModule, typeof TransactionSalesPersonInputModule, typeof TransactionHeaderSalesPersonModule, typeof i3.ClickoutsideModule, typeof i3.OverlayModule, typeof TransactionHeaderHandledByModule, typeof i6.FormBuilderUserFormModule, typeof DeliveryPlanningOverviewModule, typeof TransactionLineActivitiesModule, typeof TransactionLineConversionAssistantModule, typeof TransactionLinePlanningTasksModule], [typeof TransactionInternalComponent, typeof TransactionSalesReservationPopupComponent]>;
|
|
16461
16513
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionInternalModule>;
|
|
16462
16514
|
}
|
|
16463
16515
|
|
|
@@ -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;
|
|
@@ -133,5 +139,23 @@
|
|
|
133
139
|
grid-row: 1 / 3;
|
|
134
140
|
max-width: $tp-payment-keypad-max-width;
|
|
135
141
|
}
|
|
142
|
+
|
|
143
|
+
.action-button-wrapper {
|
|
144
|
+
display: flex;
|
|
145
|
+
flex-direction: row;
|
|
146
|
+
align-content: center;
|
|
147
|
+
justify-content: start;
|
|
148
|
+
gap: 0.25em;
|
|
149
|
+
margin: 1em 0;
|
|
150
|
+
|
|
151
|
+
.action-button {
|
|
152
|
+
display: flex;
|
|
153
|
+
width: 150px;
|
|
154
|
+
background: $tp-payment-color-action;
|
|
155
|
+
color: white;
|
|
156
|
+
padding: 0.25em 0.5em;
|
|
157
|
+
border-radius: 0.25em;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
136
160
|
}
|
|
137
161
|
}
|
|
@@ -33,6 +33,23 @@
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
|
|
36
|
+
.action-button-wrapper {
|
|
37
|
+
display: flex;
|
|
38
|
+
flex-direction: row;
|
|
39
|
+
align-content: center;
|
|
40
|
+
justify-content: start;
|
|
41
|
+
gap: 0.25em;
|
|
42
|
+
margin: 1em 0;
|
|
43
|
+
|
|
44
|
+
.action-button {
|
|
45
|
+
display: flex;
|
|
46
|
+
width: 150px;
|
|
47
|
+
background: $tp-transaction-cash-register-color-action;
|
|
48
|
+
color: white;
|
|
49
|
+
padding: 0.25em 0.5em;
|
|
50
|
+
border-radius: 0.25em;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
36
53
|
.co-transaction-cash-register-payment-voucher{
|
|
37
54
|
|
|
38
55
|
.voucher-input {
|
|
@@ -37,6 +37,7 @@ $tp-transaction-cash-register-payment-dialog-button-border-width: 2px !default;
|
|
|
37
37
|
$tp-transaction-cash-register-payment-dialog-button-border-color: #0084de !default;
|
|
38
38
|
$tp-transaction-cash-register-payment-dialog-button-icon-color: #0084de !default;
|
|
39
39
|
$tp-transaction-cash-register-payment-dialog-receipt-button-min-width: 135px !default;
|
|
40
|
+
$tp-transaction-cash-register-color-action: #1A73E8;
|
|
40
41
|
|
|
41
42
|
$tp-transaction-cash-register-payment-dialog-button-border: 2px solid #0084de !default;
|
|
42
43
|
$tp-transaction-cash-register-payment-dialog-button-border-disabled: 2px solid rgba(#0084de, 0.5) !default;
|
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
@include export-module('co-transaction-line-interbranch-receive-goods-layout') {
|
|
2
|
-
.co-transaction-line-interbranch-receive-goods {
|
|
3
|
-
.columns-wrapper {
|
|
4
|
-
display: flex;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.co-input-number-picker {
|
|
8
|
-
width: 140px;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.details-column {
|
|
12
|
-
width: 45%;
|
|
13
|
-
display: flex;
|
|
14
|
-
flex-direction: column;
|
|
15
|
-
|
|
16
|
-
.transaction-line-totals-amount {
|
|
17
|
-
margin: 5px;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
//.amount-number-picker {
|
|
21
|
-
// height: 40px;
|
|
22
|
-
// margin: 5px;
|
|
23
|
-
//}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.header-wrapper {
|
|
27
|
-
display: flex;
|
|
28
|
-
align-items: center;
|
|
29
|
-
justify-content: space-between;
|
|
30
|
-
margin: $tp-co-transaction-line-receive-goods-title-margin;
|
|
31
|
-
|
|
32
|
-
.details-header {
|
|
33
|
-
font-size: $tp-co-transaction-line-receive-goods-title-font-size;
|
|
34
|
-
font-weight: bold;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.divider-wrapper {
|
|
39
|
-
display: flex;
|
|
40
|
-
width: 10%;
|
|
41
|
-
justify-content: center;
|
|
42
|
-
visibility: hidden;
|
|
43
|
-
|
|
44
|
-
.divider {
|
|
45
|
-
border-left: 1px solid;
|
|
46
|
-
border-color: $tp-color-border;
|
|
47
|
-
margin: 5px; // $tp-co-transaction-request-details-input-margin;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.details-input {
|
|
52
|
-
margin: 5px; // $tp-co-transaction-request-details-input-margin;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.location-wrapper {
|
|
56
|
-
position: relative;
|
|
57
|
-
|
|
58
|
-
.co-transaction-button {
|
|
59
|
-
width: auto;
|
|
60
|
-
margin: 5px;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
.disabled {
|
|
64
|
-
cursor: default;
|
|
65
|
-
opacity: 0.6;
|
|
66
|
-
}
|
|
67
|
-
.clickable {
|
|
68
|
-
cursor: pointer;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.warehouse-buttons {
|
|
72
|
-
width: 100%;
|
|
73
|
-
.co-transaction-button {
|
|
74
|
-
width: 100%;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
}
|
|
1
|
+
@include export-module('co-transaction-line-interbranch-receive-goods-layout') {
|
|
2
|
+
.co-transaction-line-interbranch-receive-goods {
|
|
3
|
+
.columns-wrapper {
|
|
4
|
+
display: flex;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.co-input-number-picker {
|
|
8
|
+
width: 140px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.details-column {
|
|
12
|
+
width: 45%;
|
|
13
|
+
display: flex;
|
|
14
|
+
flex-direction: column;
|
|
15
|
+
|
|
16
|
+
.transaction-line-totals-amount {
|
|
17
|
+
margin: 5px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
//.amount-number-picker {
|
|
21
|
+
// height: 40px;
|
|
22
|
+
// margin: 5px;
|
|
23
|
+
//}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.header-wrapper {
|
|
27
|
+
display: flex;
|
|
28
|
+
align-items: center;
|
|
29
|
+
justify-content: space-between;
|
|
30
|
+
margin: $tp-co-transaction-line-receive-goods-title-margin;
|
|
31
|
+
|
|
32
|
+
.details-header {
|
|
33
|
+
font-size: $tp-co-transaction-line-receive-goods-title-font-size;
|
|
34
|
+
font-weight: bold;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.divider-wrapper {
|
|
39
|
+
display: flex;
|
|
40
|
+
width: 10%;
|
|
41
|
+
justify-content: center;
|
|
42
|
+
visibility: hidden;
|
|
43
|
+
|
|
44
|
+
.divider {
|
|
45
|
+
border-left: 1px solid;
|
|
46
|
+
border-color: $tp-color-border;
|
|
47
|
+
margin: 5px; // $tp-co-transaction-request-details-input-margin;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.details-input {
|
|
52
|
+
margin: 5px; // $tp-co-transaction-request-details-input-margin;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.location-wrapper {
|
|
56
|
+
position: relative;
|
|
57
|
+
|
|
58
|
+
.co-transaction-button {
|
|
59
|
+
width: auto;
|
|
60
|
+
margin: 5px;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
.disabled {
|
|
64
|
+
cursor: default;
|
|
65
|
+
opacity: 0.6;
|
|
66
|
+
}
|
|
67
|
+
.clickable {
|
|
68
|
+
cursor: pointer;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.warehouse-buttons {
|
|
72
|
+
width: 100%;
|
|
73
|
+
.co-transaction-button {
|
|
74
|
+
width: 100%;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
package/lib/component/transaction-line-interbranch-receive-goods/style/_material-definition.scss
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
$tp-co-transaction-line-receive-goods-title-font-size: 12px !default;
|
|
2
|
-
$tp-co-transaction-line-receive-goods-title-margin: 0 0 10px 5px !default;
|
|
1
|
+
$tp-co-transaction-line-receive-goods-title-font-size: 12px !default;
|
|
2
|
+
$tp-co-transaction-line-receive-goods-title-margin: 0 0 10px 5px !default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@include export-module('co-transaction-line-interbranch-receive-goods-theme') {
|
|
2
|
-
.co-transaction-line-interbranch-receive-goods {
|
|
3
|
-
}
|
|
4
|
-
}
|
|
1
|
+
@include export-module('co-transaction-line-interbranch-receive-goods-theme') {
|
|
2
|
+
.co-transaction-line-interbranch-receive-goods {
|
|
3
|
+
}
|
|
4
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@import "../../../style/mixin";
|
|
2
|
-
@import "./_material-definition";
|
|
3
|
-
@import "./_layout";
|
|
4
|
-
@import "./_theme";
|
|
1
|
+
@import "../../../style/mixin";
|
|
2
|
+
@import "./_material-definition";
|
|
3
|
+
@import "./_layout";
|
|
4
|
+
@import "./_theme";
|
|
File without changes
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
@use "sass:math";
|
|
2
|
-
@import "../../../../style/mixin";
|
|
3
|
-
|
|
4
|
-
@include export-module('co-transaction-quick-access-interbranch-order-purchase-layout') {
|
|
5
|
-
.co-transaction-quick-access-interbranch-order-purchase {
|
|
6
|
-
.select-all-wrapper {
|
|
7
|
-
display: flex;
|
|
8
|
-
align-items: center;
|
|
9
|
-
}
|
|
10
|
-
.button {
|
|
11
|
-
padding: 0.25em;
|
|
12
|
-
background-color: white;
|
|
13
|
-
border: 1px solid $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
14
|
-
cursor: pointer;
|
|
15
|
-
co-icon {
|
|
16
|
-
fill: $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
17
|
-
}
|
|
18
|
-
&.selected {
|
|
19
|
-
background-color: $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
20
|
-
co-icon {
|
|
21
|
-
fill: white;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
}
|
|
27
|
-
}
|
|
1
|
+
@use "sass:math";
|
|
2
|
+
@import "../../../../style/mixin";
|
|
3
|
+
|
|
4
|
+
@include export-module('co-transaction-quick-access-interbranch-order-purchase-layout') {
|
|
5
|
+
.co-transaction-quick-access-interbranch-order-purchase {
|
|
6
|
+
.select-all-wrapper {
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
}
|
|
10
|
+
.button {
|
|
11
|
+
padding: 0.25em;
|
|
12
|
+
background-color: white;
|
|
13
|
+
border: 1px solid $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
14
|
+
cursor: pointer;
|
|
15
|
+
co-icon {
|
|
16
|
+
fill: $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
17
|
+
}
|
|
18
|
+
&.selected {
|
|
19
|
+
background-color: $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
20
|
+
co-icon {
|
|
21
|
+
fill: white;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
$tp-transaction-quick-access-planning-lsp-mode-button: #1A73E8;
|
|
1
|
+
$tp-transaction-quick-access-planning-lsp-mode-button: #1A73E8;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@include export-module('co-transaction-quick-access-interbranch-order-purchase-theme') {
|
|
2
|
-
.co-transaction-quick-access-interbranch-order-purchase {
|
|
3
|
-
}
|
|
4
|
-
}
|
|
1
|
+
@include export-module('co-transaction-quick-access-interbranch-order-purchase-theme') {
|
|
2
|
+
.co-transaction-quick-access-interbranch-order-purchase {
|
|
3
|
+
}
|
|
4
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@import "../../../../style/mixin";
|
|
2
|
-
@import "./_material-definition";
|
|
3
|
-
@import "./_layout";
|
|
4
|
-
@import "./_theme";
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
@import "./_material-definition";
|
|
3
|
+
@import "./_layout";
|
|
4
|
+
@import "./_theme";
|