@colijnit/transaction 262.1.31 → 262.1.32
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 +345 -324
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +3 -2
- package/lib/component/returns/return-wizard/form-response/style/_layout.scss +57 -0
- package/lib/component/returns/return-wizard/form-response/style/_material-definition.scss +1 -0
- package/lib/component/returns/return-wizard/form-response/style/_theme.scss +4 -0
- package/lib/component/returns/return-wizard/form-response/style/material.scss +3 -0
- package/lib/component/returns/return-wizard/return-lines-wizard/style/_layout.scss +4 -0
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -2380,7 +2380,6 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
|
|
|
2380
2380
|
resetCurrentTransaction(): void;
|
|
2381
2381
|
saveTransaction(rememberTransaction?: boolean): Promise<TransactionInfoResponse>;
|
|
2382
2382
|
commit(): Promise<boolean>;
|
|
2383
|
-
commitGeneral(): Promise<boolean>;
|
|
2384
2383
|
rollback(refresh?: boolean, force?: boolean): Promise<boolean>;
|
|
2385
2384
|
rollbackBeacon(): Promise<void>;
|
|
2386
2385
|
searchTransactions(request: TransactionSearchViewRequest): Promise<TransactionSearchResult>;
|
|
@@ -14079,6 +14078,7 @@ declare class TransactionInternalComponent implements OnInit, OnDestroy {
|
|
|
14079
14078
|
handleSaveForm(formResponse: FormResponse): Promise<void>;
|
|
14080
14079
|
private _handleCloseSalesPersonInput;
|
|
14081
14080
|
private _commitTransactionSalesPerson;
|
|
14081
|
+
private _fetchPlanOrderIfNeeded;
|
|
14082
14082
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInternalComponent, never>;
|
|
14083
14083
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionInternalComponent, "co-transaction-internal", never, { "confirmationAnalysisId": { "alias": "confirmationAnalysisId"; "required": false; }; "posOrderData": { "alias": "posOrderData"; "required": false; }; "transaction": { "alias": "transaction"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showViewModeButtons": { "alias": "showViewModeButtons"; "required": false; }; "transactionPlanning": { "alias": "transactionPlanning"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "resetActiveRubric": { "alias": "resetActiveRubric"; "required": false; }; "showQuickAccess": { "alias": "showQuickAccess"; "required": false; }; "showButtonBar": { "alias": "showButtonBar"; "required": false; }; }, { "serviceRequested": "serviceRequested"; }, never, never, false, never>;
|
|
14084
14084
|
}
|
|
@@ -14901,6 +14901,7 @@ declare class TransactionQuickAccessPlanningComponent extends TransactionHeaderB
|
|
|
14901
14901
|
protected changeDetector: ChangeDetectorRef;
|
|
14902
14902
|
private _connector;
|
|
14903
14903
|
private _deliveryPlanningService;
|
|
14904
|
+
private _dialogService;
|
|
14904
14905
|
sendDocumentsComponent: TransactionSendDocumentsComponent;
|
|
14905
14906
|
readonly buttonType: typeof AppPopupButtonType;
|
|
14906
14907
|
showLspPopup: boolean;
|
|
@@ -14909,7 +14910,7 @@ declare class TransactionQuickAccessPlanningComponent extends TransactionHeaderB
|
|
|
14909
14910
|
get lspMode(): boolean;
|
|
14910
14911
|
set lspMode(lspMode: boolean);
|
|
14911
14912
|
showClass(): boolean;
|
|
14912
|
-
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef, _connector: TransactionConnectorService, _deliveryPlanningService: DeliveryPlanningService);
|
|
14913
|
+
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef, _connector: TransactionConnectorService, _deliveryPlanningService: DeliveryPlanningService, _dialogService: DialogService);
|
|
14913
14914
|
ngOnInit(): void;
|
|
14914
14915
|
handleSelectAllLines(value: boolean): void;
|
|
14915
14916
|
toggleLspMode(): void;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
@include export-module('co-form-response-layout') {
|
|
2
|
+
.co-form-response {
|
|
3
|
+
font-family: $tp-co-transaction-search-font-family;
|
|
4
|
+
font-size: $tp-co-transaction-search-font-size;
|
|
5
|
+
|
|
6
|
+
.form-response-contents {
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
row-gap: 20px;
|
|
10
|
+
|
|
11
|
+
.answered-questions {
|
|
12
|
+
display: flex;
|
|
13
|
+
flex-direction: column;
|
|
14
|
+
row-gap: 20px;
|
|
15
|
+
|
|
16
|
+
.answered-question-container {
|
|
17
|
+
display: flex;
|
|
18
|
+
flex-direction: column;
|
|
19
|
+
row-gap: 10px;
|
|
20
|
+
|
|
21
|
+
.answered-question {
|
|
22
|
+
font-weight: bold;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.given-answer-container {
|
|
26
|
+
display: flex;
|
|
27
|
+
flex-direction: row;
|
|
28
|
+
column-gap: 20px;
|
|
29
|
+
padding: 20px;
|
|
30
|
+
border: 1px solid $tp-color-border;
|
|
31
|
+
|
|
32
|
+
.change-answer {
|
|
33
|
+
font-style: italic;
|
|
34
|
+
color: #1A73E8;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.current-question-container {
|
|
41
|
+
display: flex;
|
|
42
|
+
flex-direction: column;
|
|
43
|
+
row-gap: 20px;
|
|
44
|
+
|
|
45
|
+
.current-question {
|
|
46
|
+
font-weight: bold;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.current-answers-container {
|
|
50
|
+
display: flex;
|
|
51
|
+
flex-direction: column;
|
|
52
|
+
row-gap: 10px;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "262.1.
|
|
3
|
+
"version": "262.1.32",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 20",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
"@colijnit/catalog": ">=262.1.0",
|
|
14
14
|
"@colijnit/corecomponents_v12": ">=262.1.10",
|
|
15
15
|
"@colijnit/ioneconnector": ">=262.1.0",
|
|
16
|
-
"@colijnit/mainapi": ">=262.1.
|
|
16
|
+
"@colijnit/mainapi": ">=262.1.12",
|
|
17
17
|
"@colijnit/product": ">=262.1.0",
|
|
18
18
|
"@colijnit/relation": ">=262.1.0",
|
|
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.14"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"tslib": "^2.8.1"
|