iptdevs-design-system 3.1.237 → 3.1.239
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/cod-form/cod-form.component.mjs +98 -34
- package/esm2020/lib/cod/logic/cod-form-controls.mjs +4 -2
- package/esm2020/lib/cod/steps/cod-form-step-five/cod-form-step-five.component.mjs +3 -1
- package/esm2020/lib/core/models/cod/cod-rq.model.mjs +1 -1
- package/fesm2015/iptdevs-design-system.mjs +102 -34
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +102 -34
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/cod/cod-form/cod-form.component.d.ts +2 -1
- package/lib/core/models/cod/cod-rq.model.d.ts +59 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, OnChanges, SimpleChanges, OnDestroy } from '@angular/core';
|
|
2
2
|
import { Subscription } from 'rxjs';
|
|
3
|
-
import { CreateCODRq } from '../../core/models/cod/cod-rq.model';
|
|
3
|
+
import { CreateCODRq, IUpdateCODRq } from '../../core/models/cod/cod-rq.model';
|
|
4
4
|
import { CommercialService } from '../../core/services/commercial-service/comercial.service';
|
|
5
5
|
import { BaseService } from '../../core/utils/base-service/base.service';
|
|
6
6
|
import { CodFormControls } from '../logic/cod-form-controls';
|
|
@@ -36,6 +36,7 @@ export declare class CodFormComponent implements OnChanges, OnDestroy {
|
|
|
36
36
|
updateCOD(totalData: any[]): void;
|
|
37
37
|
createCOD(totalData: any[]): void;
|
|
38
38
|
getCreateCOD(data: any[]): CreateCODRq;
|
|
39
|
+
getUpdateCOD(data: any[]): IUpdateCODRq;
|
|
39
40
|
changeStep(step: number): void;
|
|
40
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<CodFormComponent, never>;
|
|
41
42
|
static ɵcmp: i0.ɵɵComponentDeclaration<CodFormComponent, "ipt-cod-form", never, { "dataFromPreviusCodData": "dataFromPreviusCodData"; "courseSelect": "courseSelect"; "isNewCod": "isNewCod"; "editCod": "editCod"; }, { "okCreatedCOD": "okCreatedCOD"; }, never, never, false>;
|
|
@@ -108,6 +108,65 @@ export interface CreateCODRq {
|
|
|
108
108
|
code_refers: string;
|
|
109
109
|
paid_level: string;
|
|
110
110
|
}
|
|
111
|
+
export interface IUpdateCODRq {
|
|
112
|
+
token: string;
|
|
113
|
+
student_name: string;
|
|
114
|
+
student_last_name: string;
|
|
115
|
+
nickname: string;
|
|
116
|
+
student_email: string;
|
|
117
|
+
student_phone_indicative: string;
|
|
118
|
+
student_phone_number: string;
|
|
119
|
+
gender: string;
|
|
120
|
+
birthdate: string;
|
|
121
|
+
city: string;
|
|
122
|
+
student_id_card_type: string;
|
|
123
|
+
student_id_card: string;
|
|
124
|
+
password: string;
|
|
125
|
+
needAtendant: string;
|
|
126
|
+
parent_name: string;
|
|
127
|
+
parent_last_name: string;
|
|
128
|
+
parent_id_card_type: string;
|
|
129
|
+
parent_id_card: string;
|
|
130
|
+
parent_phone_indicative: string;
|
|
131
|
+
parent_phone_number: string;
|
|
132
|
+
parent_occupation: string;
|
|
133
|
+
parent_office_address: string;
|
|
134
|
+
social_stratum: string;
|
|
135
|
+
civil_status: string;
|
|
136
|
+
educational_level: string;
|
|
137
|
+
student_address: string;
|
|
138
|
+
student_occupation: string;
|
|
139
|
+
disability: string;
|
|
140
|
+
health_regimen: string;
|
|
141
|
+
marketing_reasons: string;
|
|
142
|
+
study_reasons: string;
|
|
143
|
+
multiculturalism_1: string;
|
|
144
|
+
multiculturalism_2: string;
|
|
145
|
+
multiculturalism_3: string;
|
|
146
|
+
multiculturalism_4: string;
|
|
147
|
+
multiculturalism_5: string;
|
|
148
|
+
multiculturalism_6: string;
|
|
149
|
+
availible_courses: string;
|
|
150
|
+
observation: string;
|
|
151
|
+
agreement_by_category: string;
|
|
152
|
+
english_level: string;
|
|
153
|
+
payment_method: string;
|
|
154
|
+
quota_times: string;
|
|
155
|
+
payment_date: string;
|
|
156
|
+
payment_dates: string[];
|
|
157
|
+
program_price: string;
|
|
158
|
+
total_price: string;
|
|
159
|
+
terms: string;
|
|
160
|
+
re_password: string;
|
|
161
|
+
age: string;
|
|
162
|
+
country: string;
|
|
163
|
+
course_type: string;
|
|
164
|
+
state: string;
|
|
165
|
+
academic_plan: string;
|
|
166
|
+
code_refers: string;
|
|
167
|
+
paid_level: string;
|
|
168
|
+
code_cod: string;
|
|
169
|
+
}
|
|
111
170
|
export interface CodInformationRq {
|
|
112
171
|
code: number;
|
|
113
172
|
course: CourseRq;
|