iptdevs-design-system 3.1.21 → 3.1.23
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/core/models/budget/budget.model.mjs +1 -1
- package/esm2020/lib/core/models/notes/notes.interface.mjs +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +5 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +5 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +60 -0
- package/lib/core/models/notes/notes.interface.d.ts +1 -0
- package/lib/core/services/budget-service/budget-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { CourseTypeCRq } from "../course/course-rq.model";
|
|
1
2
|
export interface getdiscountAllRq {
|
|
2
3
|
token: string;
|
|
3
4
|
}
|
|
@@ -67,3 +68,62 @@ export interface Plan {
|
|
|
67
68
|
code?: number;
|
|
68
69
|
name?: string;
|
|
69
70
|
}
|
|
71
|
+
export interface IObtainAllCoursewallet {
|
|
72
|
+
token: string;
|
|
73
|
+
}
|
|
74
|
+
export interface IAllCourseWalletByCoodinatorRs {
|
|
75
|
+
ip_applicant: string;
|
|
76
|
+
status: number;
|
|
77
|
+
message: IMessageRq;
|
|
78
|
+
data: ICourseWalletByCoodinatorRs[];
|
|
79
|
+
}
|
|
80
|
+
export interface ICourseWalletByCoodinatorRs {
|
|
81
|
+
course_wallet_code: number;
|
|
82
|
+
user_code: IUserCodeRq;
|
|
83
|
+
course_code: ICourseCodeRq;
|
|
84
|
+
course_wallet_status_code: ICourseWalletStatusCodeRq;
|
|
85
|
+
}
|
|
86
|
+
export interface ICourseCodeRq {
|
|
87
|
+
code: number;
|
|
88
|
+
course_schedule: string[];
|
|
89
|
+
teacher: string;
|
|
90
|
+
course_type: CourseTypeCRq;
|
|
91
|
+
to_start: Date;
|
|
92
|
+
start_date: Date;
|
|
93
|
+
finish_date: Date;
|
|
94
|
+
capacity: number;
|
|
95
|
+
more_days: number | null;
|
|
96
|
+
english_level: string;
|
|
97
|
+
agreement: string;
|
|
98
|
+
course_modality: ICourseModalityRq;
|
|
99
|
+
}
|
|
100
|
+
export interface ICourseModalityRq {
|
|
101
|
+
code: number;
|
|
102
|
+
name: string;
|
|
103
|
+
}
|
|
104
|
+
export interface ICourseWalletStatusCodeRq {
|
|
105
|
+
code: number;
|
|
106
|
+
status: string;
|
|
107
|
+
color_status: string;
|
|
108
|
+
}
|
|
109
|
+
export interface IUserCodeRq {
|
|
110
|
+
code: number;
|
|
111
|
+
name: string;
|
|
112
|
+
last_name: string;
|
|
113
|
+
nick_name: string;
|
|
114
|
+
email: string;
|
|
115
|
+
email_ipt: string;
|
|
116
|
+
role: number;
|
|
117
|
+
phone_indicative: number;
|
|
118
|
+
phone_number: string;
|
|
119
|
+
gender: number;
|
|
120
|
+
birthdate: Date | null;
|
|
121
|
+
city: number;
|
|
122
|
+
id_card_type: number;
|
|
123
|
+
id_card: string;
|
|
124
|
+
user_status: number;
|
|
125
|
+
}
|
|
126
|
+
export interface IMessageRq {
|
|
127
|
+
code: number;
|
|
128
|
+
message: string;
|
|
129
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { getdiscountAllRq, DiscountRq, DiscountUpdateRq } from '../../models/budget/budget.model';
|
|
3
|
+
import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet } from '../../models/budget/budget.model';
|
|
4
4
|
import { PaymentBillRq, PriceByTypeServiceRq } from '../../models/payment/payment-rq.model';
|
|
5
5
|
import { IPTGeneralService } from '../service-enviroments';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
@@ -19,6 +19,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
19
19
|
getPaymentBillByCode(codePayment: number): Observable<any>;
|
|
20
20
|
getPaymentBillByStudent(codeStudent: number): Observable<any>;
|
|
21
21
|
getPriceByTypeService(params: PriceByTypeServiceRq): Observable<any>;
|
|
22
|
+
obtainCoursesByCoordinator(params: IObtainAllCoursewallet): Observable<any>;
|
|
22
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
23
24
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
24
25
|
}
|