@colijnit/transaction 261.20.30 → 261.20.31
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/colijnit-transaction-261.20.28.tgz +0 -0
- package/colijnit-transaction-261.20.29.tgz +0 -0
- package/fesm2022/colijnit-transaction.mjs +677 -644
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +9 -4
- package/lib/component/checkout/style/_layout.scss +9 -1
- package/lib/component/transaction-line/transaction-receive-goods-line/style/_layout.scss +15 -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-side-panel/style/_layout.scss +3 -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-search/transaction-filter/transaction-filter/style/_layout.scss +1 -1
- package/lib/component/transaction-search/transaction-search-result/style/_layout.scss +1 -1
- package/lib/component/transaction-search/transaction-search-result/style/_material-definition.scss +1 -1
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_material-definition.scss +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2319,7 +2319,7 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
|
|
|
2319
2319
|
constructor(optionsService: TransactionSettingsService, dialogService: TransactionDialogService, connector: TransactionConnectorService, articleConnector: ArticleConnectorService, dictionaryService: DictionaryService, transactionEventService: TransactionEventService, transactionRelationService: TransactionRelationService, screenConfigService: TransactionScreenConfigurationService, relationService: RelationService, sharedService: SharedService);
|
|
2320
2320
|
init(options: any, resetCurrentTransaction?: boolean): Promise<void>;
|
|
2321
2321
|
ngOnDestroy(): void;
|
|
2322
|
-
prepareMLocatInternalParam(): void
|
|
2322
|
+
prepareMLocatInternalParam(): Promise<void>;
|
|
2323
2323
|
preparePakBinnenInternalParam(): void;
|
|
2324
2324
|
prepareDirectSellInternalParam(): Promise<void>;
|
|
2325
2325
|
prepareJsPickingListInternalParam(): Promise<void>;
|
|
@@ -8858,6 +8858,7 @@ declare abstract class TransactionReceiveGoodsLineBaseComponent extends Transact
|
|
|
8858
8858
|
showCheckboxForLine: boolean;
|
|
8859
8859
|
returnStockMode: boolean;
|
|
8860
8860
|
calculatedStickerAmount: number;
|
|
8861
|
+
showLocation: boolean;
|
|
8861
8862
|
private _subscriptions;
|
|
8862
8863
|
ngOnInit(): Promise<void>;
|
|
8863
8864
|
ngOnDestroy(): void;
|
|
@@ -9019,6 +9020,7 @@ declare abstract class TransactionInterbranchReceiveGoodsLineBaseComponent exten
|
|
|
9019
9020
|
showCheckboxForLine: boolean;
|
|
9020
9021
|
returnStockMode: boolean;
|
|
9021
9022
|
calculatedStickerAmount: number;
|
|
9023
|
+
showLocation: boolean;
|
|
9022
9024
|
private _subscriptions;
|
|
9023
9025
|
ngOnInit(): Promise<void>;
|
|
9024
9026
|
ngOnDestroy(): void;
|
|
@@ -9822,7 +9824,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
9822
9824
|
showCategories: boolean;
|
|
9823
9825
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
9824
9826
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9825
|
-
currentTitle(): "
|
|
9827
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
9826
9828
|
ngOnDestroy(): void;
|
|
9827
9829
|
handleClickWrapper(event: MouseEvent): void;
|
|
9828
9830
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -9848,7 +9850,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
9848
9850
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
9849
9851
|
ngOnDestroy(): void;
|
|
9850
9852
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9851
|
-
currentTitle(): "
|
|
9853
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
9852
9854
|
handleClickWrapper(event: MouseEvent): void;
|
|
9853
9855
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
9854
9856
|
private handleDocumentClick;
|
|
@@ -9900,7 +9902,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
9900
9902
|
showCategories: boolean;
|
|
9901
9903
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
9902
9904
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9903
|
-
currentTitle(): "
|
|
9905
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
9904
9906
|
ngOnDestroy(): void;
|
|
9905
9907
|
handleClickWrapper(event: MouseEvent): void;
|
|
9906
9908
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -10020,6 +10022,7 @@ declare class TransactionLinePurchaseReceiveGoodsComponent extends TransactionLi
|
|
|
10020
10022
|
warehouseLocationButtonDisabled: boolean;
|
|
10021
10023
|
quantityToReceive: number;
|
|
10022
10024
|
calculatedStickerAmount: number;
|
|
10025
|
+
showLocation: boolean;
|
|
10023
10026
|
private _subs;
|
|
10024
10027
|
private _defaultReportId;
|
|
10025
10028
|
constructor(transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _formMaster: FormMasterService);
|
|
@@ -10826,6 +10829,7 @@ declare class DeliveryPlanningOverviewComponent implements OnInit, OnDestroy {
|
|
|
10826
10829
|
getSequenceOrderValue(order: PlanOrder): Promise<void>;
|
|
10827
10830
|
handlePopupPlanEvent(event: [PlanOrder, PlanningTransportWeekDay, PlanningTransportWeekDay[]]): Promise<void>;
|
|
10828
10831
|
handleSettingsReset(): void;
|
|
10832
|
+
handleSettingsSaved(): Promise<void>;
|
|
10829
10833
|
openSettingsDialog(transportDay: PlanningTransportWeekDay): void;
|
|
10830
10834
|
handleCalendarPlanEvent(data: {
|
|
10831
10835
|
currentHour: string;
|
|
@@ -13251,6 +13255,7 @@ declare class TransactionLineInterbranchReceiveGoodsComponent extends Transactio
|
|
|
13251
13255
|
warehouseLocationButtonDisabled: boolean;
|
|
13252
13256
|
quantityToReceive: number;
|
|
13253
13257
|
calculatedStickerAmount: number;
|
|
13258
|
+
showLocation: boolean;
|
|
13254
13259
|
private _subs;
|
|
13255
13260
|
private _defaultReportId;
|
|
13256
13261
|
constructor(transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _formMaster: FormMasterService);
|
|
@@ -2,13 +2,21 @@
|
|
|
2
2
|
.co-checkout {
|
|
3
3
|
display: block;
|
|
4
4
|
width: 100%;
|
|
5
|
+
.co-stepper {
|
|
6
|
+
&.no-cart {
|
|
7
|
+
.co-stepper-content-wrapper {
|
|
8
|
+
justify-content: center;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
}
|
|
5
12
|
.co-stepper-content-wrapper {
|
|
6
13
|
display: flex;
|
|
7
14
|
flex-direction: row;
|
|
8
15
|
flex-wrap: nowrap;
|
|
9
16
|
column-gap: $tp-checkout-column-gap;
|
|
10
17
|
padding: $tp-checkout-padding;
|
|
11
|
-
|
|
18
|
+
width: $tp-checkout-wrapper-max-width;
|
|
19
|
+
max-width: 100%;
|
|
12
20
|
margin: 0 auto;
|
|
13
21
|
}
|
|
14
22
|
.co-stepper-step {
|
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
@include export-module('cc-transaction-receive-goods-line-layout') {
|
|
2
2
|
.co-transaction-receive-goods-line {
|
|
3
3
|
|
|
4
|
+
.column {
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
flex-grow: 1;
|
|
8
|
+
align-items: flex-start;
|
|
9
|
+
justify-content: center;
|
|
10
|
+
padding: 2rem 0 0 0;
|
|
11
|
+
width: 100%;
|
|
12
|
+
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.center {
|
|
16
|
+
text-align: center;
|
|
17
|
+
width: 100%;
|
|
18
|
+
}
|
|
4
19
|
}
|
|
5
20
|
|
|
6
21
|
.co-input-number-picker .icon-wrapper {
|
|
@@ -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/lib/component/transaction-search/transaction-filter/transaction-filter/style/_layout.scss
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
.transaction-filter-wrapper {
|
|
6
6
|
display: flex;
|
|
7
7
|
}
|
|
8
|
-
.co-transaction-sales-order-filter, .co-transaction-purchase-order-filter, .co-transaction-sales-quotation-filter, co-transaction-cash-desk-filter {
|
|
8
|
+
.co-transaction-sales-order-filter, .co-transaction-purchase-order-filter, .co-transaction-sales-quotation-filter, co-transaction-cash-desk-filter, co-transaction-service-order-filter {
|
|
9
9
|
font-family: $tp-co-transaction-filter-font-family;
|
|
10
10
|
font-size: $tp-co-transaction-filter-font-size;
|
|
11
11
|
width: $cc-co-transaction-filter-width;
|
package/lib/component/transaction-search/transaction-search-result/style/_material-definition.scss
CHANGED
|
@@ -2,7 +2,7 @@ $tp-co-transaction-search-result-width: 100% !default;
|
|
|
2
2
|
$tp-transaction-tiles-wrapper-padding: 20px !default;
|
|
3
3
|
$tp-transaction-tiles-wrapper-column-gap: 5px !default;
|
|
4
4
|
$tp-transaction-tiles-wrapper-row-gap: 5px !default;
|
|
5
|
-
$tp-transaction-tile-width: calc(20% -
|
|
5
|
+
$tp-transaction-tile-width: calc(20% - 4px) !default;
|
|
6
6
|
$tp-transaction-tile-width-mobile: calc(50% - 5px) !default;
|
|
7
7
|
$tp-transaction-tile-width-tablet: calc(33.3333% - 5px) !default;
|
|
8
8
|
$tp-transaction-tile-width-small: 100% !default;
|
|
@@ -7,7 +7,7 @@ $tp-transaction-tile-font-size: $tp-font-size !default;
|
|
|
7
7
|
$tp-transaction-tile-height: auto !default;
|
|
8
8
|
$tp-transaction-tile-content-height: 90px !default;
|
|
9
9
|
$tp-transaction-tile-body-height: 100px !default;
|
|
10
|
-
$tp-transaction-tile-width: calc(20% -
|
|
10
|
+
$tp-transaction-tile-width: calc(20% - 4px) !default;
|
|
11
11
|
$tp-transaction-tile-width-mobile: calc(50% - 5px) !default;
|
|
12
12
|
$tp-transaction-tile-padding: 10px 15px !default;
|
|
13
13
|
$tp-transaction-tile-row-gap: 10px !default;
|