iptdevs-design-system 3.1.864 → 3.1.866
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/esm2020/lib/cod/steps/cod-form-step-four/cod-form-step-four.component.mjs +43 -14
- package/esm2020/lib/cod/steps/cod-form-step-one/cod-form-step-one.component.mjs +4 -4
- package/fesm2015/iptdevs-design-system.mjs +42 -16
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +42 -16
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/cod/steps/cod-form-step-four/cod-form-step-four.component.d.ts +6 -1
- package/package.json +1 -1
|
@@ -3,7 +3,9 @@ import { FormGroup, FormBuilder } from '@angular/forms';
|
|
|
3
3
|
import { CodFormSteps } from '../../logic/cod-form-steps';
|
|
4
4
|
import { CodFormControls } from '../../logic/cod-form-controls';
|
|
5
5
|
import { CalculateQuotesService } from '../../logic/calculate-quotes.service';
|
|
6
|
+
import { CommunicatorService } from '../../logic/communicator.service';
|
|
6
7
|
import { CodPrices } from '../../../core/models/commercial/commercial.model';
|
|
8
|
+
import { ParameterService } from '../../../core/services/parameters-service/parameters.service';
|
|
7
9
|
import { CommercialService } from '../../../core/services/commercial-service/comercial.service';
|
|
8
10
|
import { BaseService } from '../../../core/utils/base-service/base.service';
|
|
9
11
|
import * as i0 from "@angular/core";
|
|
@@ -12,6 +14,8 @@ export declare class CodFormStepFourComponent extends CodFormSteps implements On
|
|
|
12
14
|
private calculateQuotesService;
|
|
13
15
|
private codFormControls;
|
|
14
16
|
private commercialService;
|
|
17
|
+
private communicatorService;
|
|
18
|
+
private parameterService;
|
|
15
19
|
private baseService;
|
|
16
20
|
isEditCod?: boolean;
|
|
17
21
|
initialData?: any;
|
|
@@ -32,8 +36,9 @@ export declare class CodFormStepFourComponent extends CodFormSteps implements On
|
|
|
32
36
|
thereArePlans: boolean;
|
|
33
37
|
isDisabledSel: boolean;
|
|
34
38
|
controls: import("../../logic/cod-form-controls").Control[];
|
|
35
|
-
constructor(fb: FormBuilder, calculateQuotesService: CalculateQuotesService, codFormControls: CodFormControls, commercialService: CommercialService, baseService: BaseService);
|
|
39
|
+
constructor(fb: FormBuilder, calculateQuotesService: CalculateQuotesService, codFormControls: CodFormControls, commercialService: CommercialService, communicatorService: CommunicatorService, parameterService: ParameterService, baseService: BaseService);
|
|
36
40
|
ngOnChanges(changes: SimpleChanges): void;
|
|
41
|
+
getValuesOfStepOneComponent(): void;
|
|
37
42
|
getCodPricesByAgreement(agreement?: string): void;
|
|
38
43
|
validateErrors(): void;
|
|
39
44
|
searchPriceByTypePayment(agreementSelected: any, type: string, change: string): void;
|