@colijnit/transaction 262.1.27 → 262.1.29
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 +2461 -2360
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +20 -4
- 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 +2 -2
package/index.d.ts
CHANGED
|
@@ -1163,6 +1163,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1163
1163
|
changeTransactionLineGoodDescription(uuid: string, lineUuid: string, goodDescription: string): Promise<TransactionInfoResponse>;
|
|
1164
1164
|
changeHeaderTransactionDefinitive(uuid: string, definitive: boolean): Promise<TransactionInfoResponse>;
|
|
1165
1165
|
changeHeaderDiscountOnOrderLine(uuid: string, discount: boolean): Promise<TransactionInfoResponse>;
|
|
1166
|
+
changeHeaderPrintDiscount(uuid: string, discount: boolean): Promise<TransactionInfoResponse>;
|
|
1166
1167
|
changeHeaderDeliveryAddress(uuid: string, newNawNr: number): Promise<TransactionInfoResponse>;
|
|
1167
1168
|
changeHeaderInvoiceAddress(uuid: string, newNawNr: number): Promise<TransactionInfoResponse>;
|
|
1168
1169
|
changeHeaderRelationTransactionDate(request: ChangeHeaderRelationTransactionDateRequest): Promise<TransactionInfoResponse>;
|
|
@@ -1262,6 +1263,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1262
1263
|
printHistoricOrderConfirmation(request: PrintHistoricOrderConfirmationRequest): Promise<void>;
|
|
1263
1264
|
startOrderConfirmationBatch(request: BatchTransactionSendingRequest): Promise<void>;
|
|
1264
1265
|
startPurchaseOrderFormBatch(request: BatchTransactionSendingRequest): Promise<void>;
|
|
1266
|
+
startSendPurchaseOrderBatch(request: BatchTransactionSendingRequest): Promise<void>;
|
|
1265
1267
|
startToAllocateUnAllocatedLinesBatch(transIds: number[]): Promise<void>;
|
|
1266
1268
|
startGoodsToBePickedBatch(request: BatchTransactionSendingRequest): Promise<void>;
|
|
1267
1269
|
startGoodsPickedBatch(transIds: number[]): Promise<void>;
|
|
@@ -1673,6 +1675,7 @@ declare class TransactionConnectorService {
|
|
|
1673
1675
|
changeTransactionLineCollectionCode(uuid: string, lineUuid: string, code: string): Promise<TransactionInfoResponse>;
|
|
1674
1676
|
changeHeaderTransactionDefinitive(uuid: string, definitive: boolean): Promise<TransactionInfoResponse>;
|
|
1675
1677
|
changeHeaderDiscountOnOrderLine(uuid: string, discount: boolean): Promise<TransactionInfoResponse>;
|
|
1678
|
+
changeHeaderPrintDiscount(uuid: string, discount: boolean): Promise<TransactionInfoResponse>;
|
|
1676
1679
|
changeHeaderDeliveryAddress(uuid: string, newNawNr: number): Promise<TransactionInfoResponse>;
|
|
1677
1680
|
changeHeaderInvoiceAddress(uuid: string, newNawNr: number): Promise<TransactionInfoResponse>;
|
|
1678
1681
|
changeHeaderRelationTransactionDate(request: ChangeHeaderRelationTransactionDateRequest): Promise<TransactionInfoResponse>;
|
|
@@ -1761,6 +1764,7 @@ declare class TransactionConnectorService {
|
|
|
1761
1764
|
printHistoricOrderConfirmation(request: PrintHistoricOrderConfirmationRequest): Promise<void>;
|
|
1762
1765
|
startOrderConfirmationBatch(request: BatchTransactionSendingRequest): Promise<void>;
|
|
1763
1766
|
startPurchaseOrderFormBatch(request: BatchTransactionSendingRequest): Promise<void>;
|
|
1767
|
+
startSendPurchaseOrderBatch(request: BatchTransactionSendingRequest): Promise<void>;
|
|
1764
1768
|
startToAllocateUnAllocatedLinesBatch(transIds: number[]): Promise<void>;
|
|
1765
1769
|
startGoodsToBePickedBatch(request: BatchTransactionSendingRequest): Promise<void>;
|
|
1766
1770
|
startGoodsPickedBatch(transIds: number[]): Promise<void>;
|
|
@@ -2458,6 +2462,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2458
2462
|
cancelCashRegisterOrder(): Promise<void>;
|
|
2459
2463
|
updateHeaderTransactionDefinitive(uuid: string, definitive: boolean, saveTransaction: boolean): Promise<boolean>;
|
|
2460
2464
|
updateHeaderDiscountOnOrderLine(uuid: string, discount: boolean, saveTransaction: boolean): Promise<boolean>;
|
|
2465
|
+
changeHeaderPrintDiscount(uuid: string, discount: boolean, saveTransaction: boolean): Promise<boolean>;
|
|
2461
2466
|
updateHeaderDeliveryAddress(uuid: string, newNawNr: number, saveTransaction?: boolean): Promise<boolean>;
|
|
2462
2467
|
updateHeaderInvoiceAddress(uuid: string, newNawNr: number, saveTransaction?: boolean): Promise<boolean>;
|
|
2463
2468
|
updateHeaderTransactionDeliveryDate(uuid: string, date: Date, saveTransaction: boolean): Promise<boolean>;
|
|
@@ -2637,6 +2642,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2637
2642
|
printHistoricOrderConfirmation(request: PrintHistoricDeliveryNoteRequest): Promise<void>;
|
|
2638
2643
|
startOrderConfirmationBatch(request: BatchTransactionSendingRequest): Promise<void>;
|
|
2639
2644
|
startPurchaseOrderFormBatch(request: BatchTransactionSendingRequest): Promise<void>;
|
|
2645
|
+
startSendPurchaseOrderBatch(request: BatchTransactionSendingRequest): Promise<void>;
|
|
2640
2646
|
startToAllocateUnAllocatedLinesBatch(transIds: number[]): Promise<void>;
|
|
2641
2647
|
startGoodsToBePickedBatch(request: BatchTransactionSendingRequest): Promise<void>;
|
|
2642
2648
|
startGoodsPickedBatch(transIds: number[]): Promise<void>;
|
|
@@ -13524,6 +13530,7 @@ declare class DialogTransactionHeaderDiscountComponent extends DialogTransaction
|
|
|
13524
13530
|
showDiscountCode: boolean;
|
|
13525
13531
|
showDistributeDiscountLoader: boolean;
|
|
13526
13532
|
canEditDiscountPercentage: boolean;
|
|
13533
|
+
editingDiscounts: boolean;
|
|
13527
13534
|
activeDiscountReason: string;
|
|
13528
13535
|
activeDiscountCode: string;
|
|
13529
13536
|
activeDiscountType: DiscountType;
|
|
@@ -13534,6 +13541,8 @@ declare class DialogTransactionHeaderDiscountComponent extends DialogTransaction
|
|
|
13534
13541
|
newDiscountReason: string;
|
|
13535
13542
|
}): void;
|
|
13536
13543
|
onDiscountPercentChange(event: MouseEvent): void;
|
|
13544
|
+
onEditDone(): void;
|
|
13545
|
+
onFocus(event: boolean): void;
|
|
13537
13546
|
redistributeDiscount(): Promise<void>;
|
|
13538
13547
|
private _detectChanges;
|
|
13539
13548
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogTransactionHeaderDiscountComponent, never>;
|
|
@@ -13544,10 +13553,13 @@ declare class TransactionHeaderDiscountPercentageComponent extends TransactionIn
|
|
|
13544
13553
|
set child(content: any);
|
|
13545
13554
|
newDiscountReason: string;
|
|
13546
13555
|
newDiscountCode: string;
|
|
13556
|
+
EditDone: EventEmitter<void>;
|
|
13557
|
+
onFocus: EventEmitter<boolean>;
|
|
13547
13558
|
input: InputTextComponent;
|
|
13559
|
+
onBlur(): void;
|
|
13548
13560
|
commit(amount: number): Promise<boolean>;
|
|
13549
13561
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderDiscountPercentageComponent, never>;
|
|
13550
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDiscountPercentageComponent, "co-transaction-header-discount-percentage", never, { "newDiscountReason": { "alias": "newDiscountReason"; "required": false; }; "newDiscountCode": { "alias": "newDiscountCode"; "required": false; }; }, {}, never, never, false, never>;
|
|
13562
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDiscountPercentageComponent, "co-transaction-header-discount-percentage", never, { "newDiscountReason": { "alias": "newDiscountReason"; "required": false; }; "newDiscountCode": { "alias": "newDiscountCode"; "required": false; }; }, { "EditDone": "EditDone"; "onFocus": "onFocus"; }, never, never, false, never>;
|
|
13551
13563
|
}
|
|
13552
13564
|
|
|
13553
13565
|
declare class TransactionHeaderDiscountPercentageModule {
|
|
@@ -13560,10 +13572,13 @@ declare class TransactionHeaderDiscountAmountComponent extends TransactionInputH
|
|
|
13560
13572
|
set child(content: any);
|
|
13561
13573
|
newDiscountReason: string;
|
|
13562
13574
|
newDiscountCode: string;
|
|
13575
|
+
EditDone: EventEmitter<void>;
|
|
13576
|
+
onFocus: EventEmitter<boolean>;
|
|
13563
13577
|
input: InputTextComponent;
|
|
13578
|
+
onBlur(): void;
|
|
13564
13579
|
commit(amount: number): Promise<boolean>;
|
|
13565
13580
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderDiscountAmountComponent, never>;
|
|
13566
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDiscountAmountComponent, "co-transaction-header-discount-amount", never, { "newDiscountReason": { "alias": "newDiscountReason"; "required": false; }; "newDiscountCode": { "alias": "newDiscountCode"; "required": false; }; }, {}, never, never, false, never>;
|
|
13581
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDiscountAmountComponent, "co-transaction-header-discount-amount", never, { "newDiscountReason": { "alias": "newDiscountReason"; "required": false; }; "newDiscountCode": { "alias": "newDiscountCode"; "required": false; }; }, { "EditDone": "EditDone"; "onFocus": "onFocus"; }, never, never, false, never>;
|
|
13567
13582
|
}
|
|
13568
13583
|
|
|
13569
13584
|
declare class TransactionHeaderDiscountAmountModule {
|
|
@@ -13578,12 +13593,13 @@ declare class TransactionHeaderDiscountTransactionTotalComponent extends Transac
|
|
|
13578
13593
|
newDiscountCode: string;
|
|
13579
13594
|
inputLabel: boolean;
|
|
13580
13595
|
EditDone: EventEmitter<void>;
|
|
13596
|
+
onFocus: EventEmitter<boolean>;
|
|
13581
13597
|
input: InputTextComponent;
|
|
13582
13598
|
transactionTotalAmount: number;
|
|
13583
13599
|
onBlur(): void;
|
|
13584
13600
|
commit(amount: number): Promise<boolean>;
|
|
13585
13601
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderDiscountTransactionTotalComponent, never>;
|
|
13586
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDiscountTransactionTotalComponent, "co-transaction-header-discount-transaction-total", never, { "newDiscountReason": { "alias": "newDiscountReason"; "required": false; }; "newDiscountCode": { "alias": "newDiscountCode"; "required": false; }; "inputLabel": { "alias": "inputLabel"; "required": false; }; }, { "EditDone": "EditDone"; }, never, never, false, never>;
|
|
13602
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDiscountTransactionTotalComponent, "co-transaction-header-discount-transaction-total", never, { "newDiscountReason": { "alias": "newDiscountReason"; "required": false; }; "newDiscountCode": { "alias": "newDiscountCode"; "required": false; }; "inputLabel": { "alias": "inputLabel"; "required": false; }; }, { "EditDone": "EditDone"; "onFocus": "onFocus"; }, never, never, false, never>;
|
|
13587
13603
|
}
|
|
13588
13604
|
|
|
13589
13605
|
declare class TransactionHeaderDiscountTransactionTotalModule {
|
|
@@ -14858,7 +14874,7 @@ declare class TransactionQuickAccessPlanningComponent extends TransactionHeaderB
|
|
|
14858
14874
|
toggleLspMode(): void;
|
|
14859
14875
|
get selectedLines(): TransactionLineInfo[];
|
|
14860
14876
|
togglePopup(): void;
|
|
14861
|
-
openPlanningSidePanel(): void
|
|
14877
|
+
openPlanningSidePanel(): Promise<void>;
|
|
14862
14878
|
allowPartialDelivery(): boolean;
|
|
14863
14879
|
isOrderFullyPlanned(): boolean;
|
|
14864
14880
|
handleCreatedTrackAndTrace(deliveryMethodCode: string): void;
|
|
@@ -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";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "262.1.
|
|
3
|
+
"version": "262.1.29",
|
|
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": ">=262.1.0",
|
|
20
20
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
21
21
|
"@colijnit/sharedcomponents": ">=262.1.11",
|
|
22
|
-
"@colijnit/transactionapi": ">=262.1.
|
|
22
|
+
"@colijnit/transactionapi": ">=262.1.13"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"tslib": "^2.8.1"
|