@colijnit/transaction 256.1.49 → 256.1.50
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/bundles/colijnit-transaction.umd.js +87 -44
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/simple-vertical-stepper/co-simple-vertical-stepper.component.js +45 -18
- package/esm2015/lib/component/transaction-create-wizard/components/Service-wizard-art-or-trans.component.js +9 -4
- package/esm2015/lib/component/transaction-create-wizard/components/service-wizard-create-service.component.js +6 -3
- package/esm2015/lib/component/transaction-create-wizard/components/service-wizard-service-fields.component.js +2 -2
- package/esm2015/lib/component/transaction-create-wizard/transaction-create-wizard.component.js +7 -6
- package/esm2015/lib/component/transaction-header-fields/transaction-header-reference.component.js +2 -2
- package/esm2015/lib/component/transaction-header-fields/transaction-header-relation-reference.component.js +2 -2
- package/esm2015/lib/component/transaction-header-fields/transaction-header-remaining-amount.component.js +16 -14
- package/esm2015/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.component.js +2 -1
- package/esm2015/lib/component/transaction-navigation-button-list/transaction-navigation-button-list.component.js +4 -2
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-search-sales-line-select-tile.component.js +35 -34
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +119 -78
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/dialog/transaction-search/style/_layout.scss +19 -4
- package/lib/component/simple-vertical-stepper/co-simple-vertical-stepper.component.d.ts +4 -0
- package/lib/component/transaction-create-wizard/components/Service-wizard-art-or-trans.component.d.ts +1 -0
- package/lib/component/transaction-create-wizard/components/service-wizard-create-service.component.d.ts +1 -0
- package/lib/component/transaction-create-wizard/transaction-create-wizard.component.d.ts +1 -0
- package/lib/component/transaction-line/transaction-line/style/_layout.scss +5 -2
- package/lib/component/transaction-line/transaction-line/style/_material-definition.scss +1 -0
- package/lib/component/transaction-navigation-button-list/transaction-navigation-button-list.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -2,15 +2,14 @@
|
|
|
2
2
|
.co-dialog-transaction-search {
|
|
3
3
|
display: flex;
|
|
4
4
|
.co-dialog:not(.is-mobile) .co-dialog-wrapper {
|
|
5
|
-
width:
|
|
5
|
+
max-width: 800px;
|
|
6
6
|
}
|
|
7
7
|
.search-wrapper {
|
|
8
8
|
display: flex;
|
|
9
9
|
flex-direction: column;
|
|
10
10
|
row-gap: 5px;
|
|
11
11
|
width:100%;
|
|
12
|
-
min-
|
|
13
|
-
min-height: 650px;
|
|
12
|
+
min-height: 450px;
|
|
14
13
|
|
|
15
14
|
.search-content {
|
|
16
15
|
display: flex;
|
|
@@ -19,7 +18,23 @@
|
|
|
19
18
|
.search-result-content {
|
|
20
19
|
display: flex;
|
|
21
20
|
flex-direction: column;
|
|
22
|
-
row-gap:
|
|
21
|
+
row-gap: 30px;
|
|
22
|
+
margin-top: 30px;
|
|
23
|
+
width: 100%;
|
|
24
|
+
.order-lines-container {
|
|
25
|
+
padding: 0;
|
|
26
|
+
box-shadow: none;
|
|
27
|
+
border: none;
|
|
28
|
+
}
|
|
29
|
+
.transaction-tile {
|
|
30
|
+
border: 1px solid #F4F4F9;
|
|
31
|
+
box-shadow: 0 2px 4px 0 #0000002e;
|
|
32
|
+
padding: 15px 30px;
|
|
33
|
+
background: #FFF;
|
|
34
|
+
.co-transaction-search-sales-line-select-tile-wrapper {
|
|
35
|
+
gap: 15px;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
23
38
|
}
|
|
24
39
|
}
|
|
25
40
|
}
|
|
@@ -12,9 +12,13 @@ export declare class SimpleVerticalStepperComponent extends StepperBaseComponent
|
|
|
12
12
|
skipSteps: number[];
|
|
13
13
|
stepButton: string;
|
|
14
14
|
stepButtonLabels: string[];
|
|
15
|
+
set openStep(step: number);
|
|
16
|
+
set content(children: any);
|
|
17
|
+
private _openStep;
|
|
15
18
|
showOk: boolean;
|
|
16
19
|
get currentStepButton(): string;
|
|
17
20
|
continueRequested(): void;
|
|
21
|
+
prepareSteps(): void;
|
|
18
22
|
openToIndex(idx: number): void;
|
|
19
23
|
protected validateCurrentStep(nextStep?: number): void;
|
|
20
24
|
protected setActive(idx: number): void;
|
|
@@ -20,6 +20,7 @@ export declare class ServiceWizardArtOrTransComponent implements OnInit {
|
|
|
20
20
|
relation: Relation;
|
|
21
21
|
oldOrderId: string;
|
|
22
22
|
oldGoodId: string;
|
|
23
|
+
customerPortal: boolean;
|
|
23
24
|
set existingTransaction(response: TransactionInfoResponse);
|
|
24
25
|
get existingTransaction(): TransactionInfoResponse;
|
|
25
26
|
existingTransactionLine: TransactionLineInfo;
|
|
@@ -19,6 +19,7 @@ export declare class ServiceWizardCreateServiceComponent implements OnInit {
|
|
|
19
19
|
existingTransaction: TransactionInfoResponse;
|
|
20
20
|
existingTransactionLine: TransactionLineInfo;
|
|
21
21
|
buttonsVisible: boolean;
|
|
22
|
+
customerPortal: boolean;
|
|
22
23
|
chosenTransactionLine: TransactionLineSearchIndex;
|
|
23
24
|
chosenArticle: ArticleExtended;
|
|
24
25
|
slaProductName: string;
|
|
@@ -45,6 +45,7 @@ export declare class TransactionCreateWizardComponent implements OnInit, OnDestr
|
|
|
45
45
|
existingTransaction: TransactionInfoResponse;
|
|
46
46
|
existingTransactionLine: TransactionLineInfo;
|
|
47
47
|
buttonsVisible: boolean;
|
|
48
|
+
openStep: number;
|
|
48
49
|
private _branch;
|
|
49
50
|
private _externallyProvidedTransaction;
|
|
50
51
|
private _externallyProvidedLineNr;
|
|
@@ -137,6 +137,7 @@
|
|
|
137
137
|
flex-wrap: wrap;
|
|
138
138
|
align-content: flex-start;
|
|
139
139
|
gap: $tp-transaction-line-row-gap;
|
|
140
|
+
row-gap: $tp-transaction-line-row-vertical-gap;
|
|
140
141
|
flex: 1;
|
|
141
142
|
position: relative;
|
|
142
143
|
co-transaction-line-commission-button {
|
|
@@ -153,6 +154,7 @@
|
|
|
153
154
|
display: flex;
|
|
154
155
|
flex-direction: row;
|
|
155
156
|
gap: $tp-transaction-line-row-gap;
|
|
157
|
+
row-gap: $tp-transaction-line-row-vertical-gap;
|
|
156
158
|
max-width: 100%;
|
|
157
159
|
margin-right: 0;
|
|
158
160
|
flex: 1;
|
|
@@ -181,6 +183,7 @@
|
|
|
181
183
|
.column3 {
|
|
182
184
|
display: flex;
|
|
183
185
|
gap: $tp-transaction-line-row-gap;
|
|
186
|
+
row-gap: $tp-transaction-line-row-vertical-gap;
|
|
184
187
|
margin-right: 0;
|
|
185
188
|
flex: 1;
|
|
186
189
|
position: relative;
|
|
@@ -210,8 +213,8 @@
|
|
|
210
213
|
}
|
|
211
214
|
.column4 {
|
|
212
215
|
display: flex;
|
|
213
|
-
grid-row-gap: $tp-transaction-line-row-gap;
|
|
214
|
-
row-gap: $tp-transaction-line-row-gap;
|
|
216
|
+
grid-row-gap: $tp-transaction-line-row-vertical-gap;
|
|
217
|
+
row-gap: $tp-transaction-line-row-vertical-gap;
|
|
215
218
|
grid-column-gap: $tp-transaction-line-row-gap;
|
|
216
219
|
column-gap: $tp-transaction-line-row-gap;
|
|
217
220
|
margin-right: 0;
|
|
@@ -14,6 +14,7 @@ $tp-transaction-line-border-width-first: 3px 0 3px 0 !default;
|
|
|
14
14
|
$tp-transaction-line-border-color: #F4F4F9 !default;
|
|
15
15
|
$tp-transaction-line-column-gap: 20px !default;
|
|
16
16
|
$tp-transaction-line-row-gap: 5px !default;
|
|
17
|
+
$tp-transaction-line-row-vertical-gap: 10px !default;
|
|
17
18
|
$tp-transaction-line-start-width: 400px !default;
|
|
18
19
|
$tp-transaction-line-start-min-width: 400px !default;
|
|
19
20
|
$tp-transaction-line-start-max-width: 100% !default;
|
|
@@ -5,6 +5,7 @@ export declare class TransactionNavigationButtonListComponent implements ScreenC
|
|
|
5
5
|
emptyLabel: string;
|
|
6
6
|
refTransactions: TransactionRefTransaction[];
|
|
7
7
|
showRelationButton: boolean;
|
|
8
|
+
insideLabel: string;
|
|
8
9
|
relationClick: EventEmitter<number>;
|
|
9
10
|
transactionClick: EventEmitter<string>;
|
|
10
11
|
showClass(): boolean;
|