iptdevs-design-system 3.1.398 → 3.1.410
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-self-managed/cod-form-self-managed/cod-self-managed.component.mjs +9 -7
- package/esm2020/lib/cod-self-managed/steps/cod-form-step-one/cod-self-form-step-one.component.mjs +46 -18
- package/esm2020/lib/cod-self-managed/steps/cod-form-step-two/cod-self-form-step-two.component.mjs +3 -3
- package/esm2020/lib/core/models/academic/academic.component.mjs +1 -1
- package/esm2020/lib/core/models/budget/budget.model.mjs +1 -1
- package/esm2020/lib/core/services/academic-service/academic.service.mjs +6 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +11 -1
- package/fesm2015/iptdevs-design-system.mjs +65 -20
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +64 -20
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/cod-self-managed/cod-form-self-managed/cod-self-managed.component.d.ts +2 -1
- package/lib/cod-self-managed/steps/cod-form-step-one/cod-self-form-step-one.component.d.ts +4 -1
- package/lib/core/models/academic/academic.component.d.ts +6 -0
- package/lib/core/models/budget/budget.model.d.ts +21 -0
- package/lib/core/services/academic-service/academic.service.d.ts +2 -1
- package/lib/core/services/budget-service/budget-service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { OnInit } from '@angular/core';
|
|
|
2
2
|
import { MenuItem } from 'primeng/api';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class CodSelfManagedComponent implements OnInit {
|
|
5
|
+
user: any;
|
|
5
6
|
currentStep: number;
|
|
6
7
|
items: MenuItem[];
|
|
7
8
|
stepCompleted: boolean[];
|
|
@@ -9,5 +10,5 @@ export declare class CodSelfManagedComponent implements OnInit {
|
|
|
9
10
|
onChangeStep(step: any): void;
|
|
10
11
|
changeStep(step: any): void;
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<CodSelfManagedComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CodSelfManagedComponent, "ipt-cod-self-managed", never, {}, {}, never, never, false>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CodSelfManagedComponent, "ipt-cod-self-managed", never, { "user": "user"; }, {}, never, never, false>;
|
|
13
14
|
}
|
|
@@ -5,6 +5,7 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class CodSelfFormStepOneComponent implements OnInit {
|
|
6
6
|
private fb;
|
|
7
7
|
private parameterService;
|
|
8
|
+
user: any;
|
|
8
9
|
completed: EventEmitter<number>;
|
|
9
10
|
codSelfFormStepOne: FormGroup;
|
|
10
11
|
genders: any[];
|
|
@@ -16,10 +17,12 @@ export declare class CodSelfFormStepOneComponent implements OnInit {
|
|
|
16
17
|
countries: any;
|
|
17
18
|
states: any;
|
|
18
19
|
cities: any;
|
|
20
|
+
errorMessage: string;
|
|
19
21
|
constructor(fb: FormBuilder, parameterService: ParameterService);
|
|
20
22
|
ngOnInit(): void;
|
|
21
23
|
initForm(): void;
|
|
22
24
|
getParameters(): void;
|
|
25
|
+
setDataUsers(): void;
|
|
23
26
|
selectCountry(country: any): void;
|
|
24
27
|
selectState(state: any): void;
|
|
25
28
|
selectCity(city: any): void;
|
|
@@ -29,5 +32,5 @@ export declare class CodSelfFormStepOneComponent implements OnInit {
|
|
|
29
32
|
getState(state: any): void;
|
|
30
33
|
getCity(state: any): void;
|
|
31
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<CodSelfFormStepOneComponent, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CodSelfFormStepOneComponent, "app-cod-self-form-step-one", never, {}, { "completed": "completed"; }, never, never, false>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CodSelfFormStepOneComponent, "app-cod-self-form-step-one", never, { "user": "user"; }, { "completed": "completed"; }, never, never, false>;
|
|
33
36
|
}
|
|
@@ -98,3 +98,9 @@ export interface IDataCourseScheduleRs {
|
|
|
98
98
|
agreement: number;
|
|
99
99
|
course_modality: number;
|
|
100
100
|
}
|
|
101
|
+
export interface IParamsObtainCoursesByTypeCourseInCreatedCoursesRs {
|
|
102
|
+
token: string;
|
|
103
|
+
course_type: number;
|
|
104
|
+
course_modality: number;
|
|
105
|
+
english_level: number;
|
|
106
|
+
}
|
|
@@ -351,3 +351,24 @@ export interface NameCommonExpenses {
|
|
|
351
351
|
name: string;
|
|
352
352
|
token: string;
|
|
353
353
|
}
|
|
354
|
+
export interface IObtainPaymentTranHistoryRq {
|
|
355
|
+
token: string;
|
|
356
|
+
course_code: number;
|
|
357
|
+
}
|
|
358
|
+
export interface IObtainPaymentTranHistoryRs {
|
|
359
|
+
codeStudent: number;
|
|
360
|
+
full_name: string;
|
|
361
|
+
phone: string;
|
|
362
|
+
overdue_payments: IOverduePaymentsRs;
|
|
363
|
+
outstanding_payments: IOutstandingPaymentsRs;
|
|
364
|
+
payments_made: number;
|
|
365
|
+
previos_course: null | number;
|
|
366
|
+
}
|
|
367
|
+
export interface IOutstandingPaymentsRs {
|
|
368
|
+
outstanding_payments: number;
|
|
369
|
+
number_installments: number;
|
|
370
|
+
}
|
|
371
|
+
export interface IOverduePaymentsRs {
|
|
372
|
+
Overdue_payments: number;
|
|
373
|
+
number_installments: number;
|
|
374
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { IPTGeneralService } from '../service-enviroments';
|
|
4
|
-
import { GetCourseByTypeRq, GetStudentByCourse, GetLastStudentCodRq, GetStudentByTeacherRq, GetAllStudentByTeacherRq, ClassRoomRQI, IManageCreatedScherduleEventsRq } from '../../models/academic/academic.component';
|
|
4
|
+
import { GetCourseByTypeRq, GetStudentByCourse, GetLastStudentCodRq, GetStudentByTeacherRq, GetAllStudentByTeacherRq, ClassRoomRQI, IManageCreatedScherduleEventsRq, IParamsObtainCoursesByTypeCourseInCreatedCoursesRs } from '../../models/academic/academic.component';
|
|
5
5
|
import { UserTokenRq } from '../../models/user/user-rq.model';
|
|
6
6
|
import { GetStudentsByCourseRq } from '../../models/student/student.interface';
|
|
7
7
|
import { GetCodByStudentCourseRq } from '../../models/cod/cod-rq.model';
|
|
@@ -32,6 +32,7 @@ export declare class AcademicService extends IPTGeneralService {
|
|
|
32
32
|
obtainCoursesTheoryByDifferentParameters(params: IObtainCoursesByDifferentParametersRq): Observable<any>;
|
|
33
33
|
obtainCourseTheoryByCode(courseCode: number): Observable<any>;
|
|
34
34
|
obtainCoursesTheoryByDiffParametersForNotes(params: IObtainCoursesByDifferentParametersRq): Observable<any>;
|
|
35
|
+
obtainCoursesByTypeCoursesInCreatdCourseRs(params: IParamsObtainCoursesByTypeCourseInCreatedCoursesRs): Observable<any>;
|
|
35
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<AcademicService, never>;
|
|
36
37
|
static ɵprov: i0.ɵɵInjectableDeclaration<AcademicService>;
|
|
37
38
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet, IAssignRequestRq, IObtainAvailableCourseRs, IGetCodByPaymentPlanRq, IUpdateAmountCodPaymentsRq, IParamsUpdateDateCodPaymentsRq, ICancelStudentReceiptRq, ICancelledReceiptByDateRq, IPaymentsReceivedByUserRq, IObtainCourseByCoodDiffParamRq, NameCommonExpenses } from '../../models/budget/budget.model';
|
|
3
|
+
import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet, IAssignRequestRq, IObtainAvailableCourseRs, IGetCodByPaymentPlanRq, IUpdateAmountCodPaymentsRq, IParamsUpdateDateCodPaymentsRq, ICancelStudentReceiptRq, ICancelledReceiptByDateRq, IPaymentsReceivedByUserRq, IObtainCourseByCoodDiffParamRq, NameCommonExpenses, IObtainPaymentTranHistoryRq } from '../../models/budget/budget.model';
|
|
4
4
|
import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, PaymentBillRq2, PriceByTypeServiceRq } from '../../models/payment/payment-rq.model';
|
|
5
5
|
import { IgetCoursesFinishAndunassignedRq } from '../../models/reports/reports.model';
|
|
6
6
|
import { IPTGeneralService } from '../service-enviroments';
|
|
@@ -52,6 +52,8 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
52
52
|
obtainCoursesByCoordAndDiffParam(params: IObtainCourseByCoodDiffParamRq): Observable<any>;
|
|
53
53
|
getAllCommonExpenses(): Observable<any>;
|
|
54
54
|
createCommmonExpenses(param: NameCommonExpenses): Observable<any>;
|
|
55
|
+
obtainCodAndStatusApprovedLevelByGroup(param: NameCommonExpenses): Observable<any>;
|
|
56
|
+
obtainStudentPaymentTransactionHistoryByCourse(param: IObtainPaymentTranHistoryRq): Observable<any>;
|
|
55
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
56
58
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
57
59
|
}
|