@colijnit/transaction 262.1.8 → 262.1.10
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 +2690 -2537
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +25 -7
- 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-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/package.json +1 -1
- package/colijnit-transaction-262.1.7.tgz +0 -0
package/index.d.ts
CHANGED
|
@@ -1492,6 +1492,8 @@ declare class TransactionConnectorAdapterService {
|
|
|
1492
1492
|
getWorkOrderDefaultSendMethod(relationId: number, showLoader?: boolean): Promise<number>;
|
|
1493
1493
|
getDefaultEmailAddressListForWorkOrder(transactionUUID: string, showLoader?: boolean): Promise<string[]>;
|
|
1494
1494
|
previewWorkOrder(pdfWorkOrderRequest: PdfWorkOrderRequest, showLoader?: boolean): Promise<PdfWorkOrderResponse>;
|
|
1495
|
+
cancelPspTransaction(pspTransactionUuid: string): Promise<boolean>;
|
|
1496
|
+
createQRCode(width: number, height: number, data: string): Promise<string>;
|
|
1495
1497
|
private _openPdfContent;
|
|
1496
1498
|
private _handleLocalPrintFile;
|
|
1497
1499
|
private _handleExceptionFromResponse;
|
|
@@ -1964,6 +1966,8 @@ declare class TransactionConnectorService {
|
|
|
1964
1966
|
getWorkOrderDefaultSendMethod(relationId: number, showLoader?: boolean): Promise<number>;
|
|
1965
1967
|
getDefaultEmailAddressListForWorkOrder(transactionUUID: string, showLoader?: boolean): Promise<string[]>;
|
|
1966
1968
|
previewWorkOrder(pdfWorkOrderRequest: PdfWorkOrderRequest, showLoader?: boolean): Promise<PdfWorkOrderResponse>;
|
|
1969
|
+
cancelPspTransaction(pspTransactionUuid: string): Promise<boolean>;
|
|
1970
|
+
createQRCode(width: number, height: number, data: string): Promise<string>;
|
|
1967
1971
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionConnectorService, never>;
|
|
1968
1972
|
static ɵprov: i0.ɵɵInjectableDeclaration<TransactionConnectorService>;
|
|
1969
1973
|
}
|
|
@@ -2815,6 +2819,8 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2815
2819
|
getDefaultEmailAddressListForWorkOrder(transactionUUID: string, showLoader?: boolean): Promise<string[]>;
|
|
2816
2820
|
previewWorkOrder(pdfWorkOrderRequest: PdfWorkOrderRequest, showLoader?: boolean): Promise<PdfWorkOrderResponse>;
|
|
2817
2821
|
sendPackageInformationToLSP(request: TransactionLspInformationRequest): Promise<TransactionInfoResponse>;
|
|
2822
|
+
cancelPspTransaction(pspTransactionUuid: string): Promise<boolean>;
|
|
2823
|
+
createQRCode(width: number, height: number, data: string): Promise<string>;
|
|
2818
2824
|
protected _handleBeforeRememberCurrentTransaction(transactionInfoResponse: TransactionInfoResponse): Promise<void>;
|
|
2819
2825
|
protected _handleAfterRememberCurrentTransaction(): Promise<void>;
|
|
2820
2826
|
private _checkAndSaveLinesForAIConfirmation;
|
|
@@ -3230,6 +3236,7 @@ declare class TransactionPaymentService implements OnDestroy {
|
|
|
3230
3236
|
voucher: Voucher;
|
|
3231
3237
|
details: DoPaymentBookingDetail[];
|
|
3232
3238
|
paymentDate: Date;
|
|
3239
|
+
showPaymentMethodMessage: boolean;
|
|
3233
3240
|
set currentPaymentMethod(value: PaymentMethod);
|
|
3234
3241
|
get currentPaymentMethod(): PaymentMethod;
|
|
3235
3242
|
set cashRegisterDrawerNr(value: string);
|
|
@@ -3245,8 +3252,11 @@ declare class TransactionPaymentService implements OnDestroy {
|
|
|
3245
3252
|
qrCodeImage: string;
|
|
3246
3253
|
qrCodeUrl: string;
|
|
3247
3254
|
showPspQrCode: boolean;
|
|
3255
|
+
showPspActions: boolean;
|
|
3248
3256
|
getDepositAmount: boolean;
|
|
3249
3257
|
cancelUrl: string;
|
|
3258
|
+
paymentUrl: string;
|
|
3259
|
+
pspTransactionUuid: string;
|
|
3250
3260
|
shouldContinue: boolean;
|
|
3251
3261
|
payed: Subject<void>;
|
|
3252
3262
|
paymentFailed: Subject<void>;
|
|
@@ -3265,12 +3275,13 @@ declare class TransactionPaymentService implements OnDestroy {
|
|
|
3265
3275
|
constructor(_transactionEventService: TransactionEventService, _paymentConnectorService: TransactionPaymentConnectorService, _dictionaryService: DictionaryService, _dialogService: TransactionDialogService, _transactionService: TransactionService, _datePipe: DatePipe);
|
|
3266
3276
|
ngOnDestroy(): void;
|
|
3267
3277
|
handlePayment(): Promise<void>;
|
|
3268
|
-
cancelPayment(): void
|
|
3278
|
+
cancelPayment(): Promise<void>;
|
|
3269
3279
|
preparePaymentInfo(): Promise<void>;
|
|
3270
3280
|
private _waitForPinPaymentStatus;
|
|
3271
3281
|
private _handlePayment;
|
|
3272
3282
|
private _handlePaymentFailed;
|
|
3273
3283
|
private _clearInterval;
|
|
3284
|
+
private _clearPspTransactionData;
|
|
3274
3285
|
private _dataUriToBase64;
|
|
3275
3286
|
private _setCashDrawerIdIfValidDrawer;
|
|
3276
3287
|
private _handleCashLimitCheck;
|
|
@@ -3374,8 +3385,12 @@ declare abstract class TransactionPaymentBaseComponent implements OnInit, OnDest
|
|
|
3374
3385
|
declare class PaymentComponent extends TransactionPaymentBaseComponent {
|
|
3375
3386
|
showClass: boolean;
|
|
3376
3387
|
depositAmount: number;
|
|
3388
|
+
qrCodeImageSrc: string;
|
|
3377
3389
|
cashRegisterSelected(cashRegister: CashRegister, index: number): Promise<void>;
|
|
3378
3390
|
onDepositPaymentFetched(depositAmount: number): void;
|
|
3391
|
+
handlePaymentUrlClicked(): void;
|
|
3392
|
+
handleShowQrCode(): Promise<void>;
|
|
3393
|
+
private _dataUriToBase64;
|
|
3379
3394
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaymentComponent, never>;
|
|
3380
3395
|
static ɵcmp: i0.ɵɵComponentDeclaration<PaymentComponent, "co-payment", never, {}, {}, never, never, false, never>;
|
|
3381
3396
|
}
|
|
@@ -9868,7 +9883,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
9868
9883
|
showCategories: boolean;
|
|
9869
9884
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
9870
9885
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9871
|
-
currentTitle(): "
|
|
9886
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
9872
9887
|
ngOnDestroy(): void;
|
|
9873
9888
|
handleClickWrapper(event: MouseEvent): void;
|
|
9874
9889
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -9894,7 +9909,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
9894
9909
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
9895
9910
|
ngOnDestroy(): void;
|
|
9896
9911
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9897
|
-
currentTitle(): "
|
|
9912
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
9898
9913
|
handleClickWrapper(event: MouseEvent): void;
|
|
9899
9914
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
9900
9915
|
private handleDocumentClick;
|
|
@@ -9946,7 +9961,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
9946
9961
|
showCategories: boolean;
|
|
9947
9962
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
9948
9963
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9949
|
-
currentTitle(): "
|
|
9964
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
9950
9965
|
ngOnDestroy(): void;
|
|
9951
9966
|
handleClickWrapper(event: MouseEvent): void;
|
|
9952
9967
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -14748,7 +14763,6 @@ declare class TransactionQuickAccessPlanningComponent extends TransactionHeaderB
|
|
|
14748
14763
|
protected dictionaryService: DictionaryService;
|
|
14749
14764
|
protected transactionService: TransactionService;
|
|
14750
14765
|
protected changeDetector: ChangeDetectorRef;
|
|
14751
|
-
private _purchaseConfirmationService;
|
|
14752
14766
|
private _connector;
|
|
14753
14767
|
private _deliveryPlanningService;
|
|
14754
14768
|
sendDocumentsComponent: TransactionSendDocumentsComponent;
|
|
@@ -14759,7 +14773,7 @@ declare class TransactionQuickAccessPlanningComponent extends TransactionHeaderB
|
|
|
14759
14773
|
get lspMode(): boolean;
|
|
14760
14774
|
set lspMode(lspMode: boolean);
|
|
14761
14775
|
showClass(): boolean;
|
|
14762
|
-
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);
|
|
14763
14777
|
ngOnInit(): void;
|
|
14764
14778
|
handleSelectAllLines(value: boolean): void;
|
|
14765
14779
|
toggleLspMode(): void;
|
|
@@ -14823,6 +14837,7 @@ declare class TransactionQuickAccessPlanningPopupComponent implements OnInit, On
|
|
|
14823
14837
|
closeEvent(): void;
|
|
14824
14838
|
handleSendMethodOkClick(request: any): void;
|
|
14825
14839
|
getPrintLayouts(): Promise<void>;
|
|
14840
|
+
private _clearData;
|
|
14826
14841
|
private _getPrinters;
|
|
14827
14842
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionQuickAccessPlanningPopupComponent, never>;
|
|
14828
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>;
|
|
@@ -15657,6 +15672,9 @@ declare class TransactionCashRegisterPaymentDialogComponent extends TransactionP
|
|
|
15657
15672
|
private _changePaymentState;
|
|
15658
15673
|
handleVoucherValidated(voucher: Voucher): void;
|
|
15659
15674
|
handleVoucherPopupClose(): void;
|
|
15675
|
+
handlePaymentUrlClicked(): void;
|
|
15676
|
+
handleShowQrCode(): Promise<void>;
|
|
15677
|
+
private _dataUriToBase64;
|
|
15660
15678
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionCashRegisterPaymentDialogComponent, never>;
|
|
15661
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>;
|
|
15662
15680
|
}
|
|
@@ -15683,7 +15701,7 @@ declare class TransactionCashRegisterPaymentButtonsComponent {
|
|
|
15683
15701
|
toCashRegisterOrderClicked: EventEmitter<void>;
|
|
15684
15702
|
changePaymentMethodClicked: EventEmitter<void>;
|
|
15685
15703
|
constructor(paymentService: TransactionPaymentService);
|
|
15686
|
-
handleCancelPayment(): void
|
|
15704
|
+
handleCancelPayment(): Promise<void>;
|
|
15687
15705
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionCashRegisterPaymentButtonsComponent, never>;
|
|
15688
15706
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionCashRegisterPaymentButtonsComponent, "co-transaction-cash-register-payment-buttons", never, {}, { "toCashRegisterOrderClicked": "toCashRegisterOrderClicked"; "changePaymentMethodClicked": "changePaymentMethodClicked"; }, never, never, false, never>;
|
|
15689
15707
|
}
|
|
@@ -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";
|
|
@@ -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";
|
|
@@ -1,73 +1,73 @@
|
|
|
1
|
-
@import "../../../../style/mixin";
|
|
2
|
-
|
|
3
|
-
@include export-module('cc-transaction-quick-access-received-goods-layout') {
|
|
4
|
-
.co-transaction-quick-access-received-goods {
|
|
5
|
-
|
|
6
|
-
.quick-access-wrapper {
|
|
7
|
-
display: flex;
|
|
8
|
-
flex-direction: row;
|
|
9
|
-
column-gap: 10px;
|
|
10
|
-
align-items: start;
|
|
11
|
-
|
|
12
|
-
.sub-section-input {
|
|
13
|
-
display: flex;
|
|
14
|
-
flex-direction: column;
|
|
15
|
-
gap: 10px;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.sub-section {
|
|
19
|
-
display: flex;
|
|
20
|
-
flex-direction: row;
|
|
21
|
-
column-gap: 10px;
|
|
22
|
-
.checkbox-wrapper {
|
|
23
|
-
display: flex;
|
|
24
|
-
flex-direction: row;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.dots-wrapper {
|
|
28
|
-
display: flex;
|
|
29
|
-
transform: scale(0.7);
|
|
30
|
-
|
|
31
|
-
.dot {
|
|
32
|
-
width: 8px;
|
|
33
|
-
height: 8px;
|
|
34
|
-
background-color: black;
|
|
35
|
-
border-radius: 16px;
|
|
36
|
-
transform: scale(0.3);
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.co-input-date {
|
|
41
|
-
min-width: 170px;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.co-input-text {
|
|
45
|
-
min-width: 100px;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.button-wrapper {
|
|
49
|
-
background: $tp-default-background-accent;
|
|
50
|
-
border-radius: $tp-default-border-radius;
|
|
51
|
-
padding: 5px;
|
|
52
|
-
display: flex;
|
|
53
|
-
flex-direction: column;
|
|
54
|
-
align-items: center;
|
|
55
|
-
justify-content: center;
|
|
56
|
-
cursor: pointer;
|
|
57
|
-
width: 68px;
|
|
58
|
-
height: 46px;
|
|
59
|
-
|
|
60
|
-
.button-icon {
|
|
61
|
-
height: 20px;
|
|
62
|
-
width: 20px;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
span {
|
|
66
|
-
font-size: 10px;
|
|
67
|
-
margin-top: 3px;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('cc-transaction-quick-access-received-goods-layout') {
|
|
4
|
+
.co-transaction-quick-access-received-goods {
|
|
5
|
+
|
|
6
|
+
.quick-access-wrapper {
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: row;
|
|
9
|
+
column-gap: 10px;
|
|
10
|
+
align-items: start;
|
|
11
|
+
|
|
12
|
+
.sub-section-input {
|
|
13
|
+
display: flex;
|
|
14
|
+
flex-direction: column;
|
|
15
|
+
gap: 10px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.sub-section {
|
|
19
|
+
display: flex;
|
|
20
|
+
flex-direction: row;
|
|
21
|
+
column-gap: 10px;
|
|
22
|
+
.checkbox-wrapper {
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-direction: row;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.dots-wrapper {
|
|
28
|
+
display: flex;
|
|
29
|
+
transform: scale(0.7);
|
|
30
|
+
|
|
31
|
+
.dot {
|
|
32
|
+
width: 8px;
|
|
33
|
+
height: 8px;
|
|
34
|
+
background-color: black;
|
|
35
|
+
border-radius: 16px;
|
|
36
|
+
transform: scale(0.3);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.co-input-date {
|
|
41
|
+
min-width: 170px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.co-input-text {
|
|
45
|
+
min-width: 100px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.button-wrapper {
|
|
49
|
+
background: $tp-default-background-accent;
|
|
50
|
+
border-radius: $tp-default-border-radius;
|
|
51
|
+
padding: 5px;
|
|
52
|
+
display: flex;
|
|
53
|
+
flex-direction: column;
|
|
54
|
+
align-items: center;
|
|
55
|
+
justify-content: center;
|
|
56
|
+
cursor: pointer;
|
|
57
|
+
width: 68px;
|
|
58
|
+
height: 46px;
|
|
59
|
+
|
|
60
|
+
.button-icon {
|
|
61
|
+
height: 20px;
|
|
62
|
+
width: 20px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
span {
|
|
66
|
+
font-size: 10px;
|
|
67
|
+
margin-top: 3px;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@import "../../../../style/mixin";
|
|
2
|
-
|
|
3
|
-
@include export-module('cc-transaction-quick-access-received-goods-theme') {
|
|
4
|
-
.co-transaction-quick-access-received-goods {
|
|
5
|
-
}
|
|
6
|
-
}
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('cc-transaction-quick-access-received-goods-theme') {
|
|
4
|
+
.co-transaction-quick-access-received-goods {
|
|
5
|
+
}
|
|
6
|
+
}
|
|
@@ -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";
|