iptdevs-design-system 3.1.698 → 3.1.700

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.
@@ -530,4 +530,12 @@ export interface IcashClosingDataRs {
530
530
  paymentWalletEgressInfo: IPaymentWalletRs[];
531
531
  paymentWalletIncomeInfo: IPaymentWalletRs[];
532
532
  }
533
+ export interface IncomesAndEgressRq {
534
+ token: string;
535
+ code_type_consult: number;
536
+ code_type_movement: number;
537
+ start_date?: string;
538
+ finish_date?: string;
539
+ user_code: number;
540
+ }
533
541
  export {};
@@ -1,4 +1,5 @@
1
1
  import { ICourseEventRq } from "../academic/academic.component";
2
+ import { ICourseModality } from "../activities/activities.interface";
2
3
  import { longDateAvailabilityRs } from "../cronogram/cronogram.models";
3
4
  import { English_Levels } from "./courses.model";
4
5
  export interface CreateCourseRq {
@@ -247,3 +248,50 @@ export interface IUpdateCourseEventByCodeRs {
247
248
  name_event: string;
248
249
  description_event: string;
249
250
  }
251
+ export interface ICourse {
252
+ code: number;
253
+ course_schedule: string[];
254
+ teacher: string;
255
+ course: {
256
+ agreement: string;
257
+ capacity: number;
258
+ code: number;
259
+ course_type: ICourseTypeRs;
260
+ course_modality: ICourseModality;
261
+ course_schedule: string[];
262
+ created_at: string;
263
+ english_level: string;
264
+ finish_date: string;
265
+ is_club: number;
266
+ is_from?: number;
267
+ is_renovation: number;
268
+ is_visible: number;
269
+ more_days?: number;
270
+ start_date: string;
271
+ teacher: string;
272
+ to_start: string;
273
+ };
274
+ to_start: string;
275
+ start_date: string;
276
+ finish_date: string;
277
+ capacity: number;
278
+ more_days: string | null;
279
+ english_level: string;
280
+ agreement: string;
281
+ course_modality: ICourseModality;
282
+ is_renovation: number;
283
+ is_from: string | null;
284
+ is_club: number;
285
+ is_visible: number;
286
+ created_at: string;
287
+ }
288
+ export interface ICourseTypeRs {
289
+ code: number;
290
+ name: string;
291
+ label: string;
292
+ number_class: number;
293
+ number_class_club: number;
294
+ academic_plan: string;
295
+ theory_classes: number;
296
+ club_classes: number;
297
+ }
@@ -67,3 +67,53 @@ export interface IGetLastStudentCodRq {
67
67
  token: string;
68
68
  code: number;
69
69
  }
70
+ export interface INotesStudentRq {
71
+ token: string;
72
+ code_student: number;
73
+ code_course: number;
74
+ }
75
+ export interface NotesStudents {
76
+ token: string;
77
+ student_code: number;
78
+ }
79
+ export interface ICourseRs {
80
+ code: number;
81
+ course_schedule: number;
82
+ teacher: number;
83
+ course_type: number;
84
+ to_start: Date;
85
+ start_date: Date;
86
+ finish_date: Date;
87
+ capacity: number;
88
+ more_days: null;
89
+ english_level: number;
90
+ agreement: number;
91
+ course_modality: number;
92
+ is_renovation: number;
93
+ is_from: null;
94
+ is_club: number;
95
+ is_visible: number;
96
+ created_at: Date;
97
+ }
98
+ export interface INotesRs {
99
+ writing_reading: ActitudeParticipation[];
100
+ speaking_listening: ActitudeParticipation[];
101
+ actitude_participation: ActitudeParticipation[];
102
+ final_test_oral: ActitudeParticipation[];
103
+ final_test_written: ActitudeParticipation[];
104
+ hab: null;
105
+ final_note: FinalNote[];
106
+ }
107
+ export interface ActitudeParticipation {
108
+ code: number;
109
+ note_code: number;
110
+ note_type: number;
111
+ note_value: number;
112
+ observation: string;
113
+ }
114
+ export interface FinalNote {
115
+ code: number;
116
+ student_code: number;
117
+ cod_code: number;
118
+ final_score: number;
119
+ }
@@ -2,3 +2,21 @@ export interface GetStudentsByCourseRq {
2
2
  token: string;
3
3
  course_code: number;
4
4
  }
5
+ export interface IStudentRsTwo {
6
+ code: number;
7
+ name: string;
8
+ last_name: string;
9
+ nick_name: null;
10
+ email: string;
11
+ email_ipt: string;
12
+ role: number;
13
+ service_hour: number;
14
+ phone_indicative: number;
15
+ phone_number: string;
16
+ gender: number;
17
+ birthdate: null;
18
+ city: number;
19
+ id_card_type: number;
20
+ id_card: string;
21
+ token: string;
22
+ }
@@ -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, IObtainPaymentTranHistoryRq, IObtainStudentPaymentByDiffParamRq, InfoCashClosingRq, IcashClosingDateRq, IcashClosingRq, IpaymentBillEgressRq } from '../../models/budget/budget.model';
3
+ import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet, IAssignRequestRq, IObtainAvailableCourseRs, IGetCodByPaymentPlanRq, IUpdateAmountCodPaymentsRq, IParamsUpdateDateCodPaymentsRq, ICancelStudentReceiptRq, ICancelledReceiptByDateRq, IPaymentsReceivedByUserRq, IObtainCourseByCoodDiffParamRq, NameCommonExpenses, IObtainPaymentTranHistoryRq, IObtainStudentPaymentByDiffParamRq, InfoCashClosingRq, IcashClosingDateRq, IcashClosingRq, IpaymentBillEgressRq, IncomesAndEgressRq } 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';
@@ -67,6 +67,7 @@ export declare class BudgetService extends IPTGeneralService {
67
67
  getInfoCashClosingByCode(param: InfoCashClosingRq): Observable<any>;
68
68
  getCashClosingDate(param: IcashClosingDateRq): Observable<any>;
69
69
  exportObtainStudentPaymentTransactionHistoryByCourse(param: IObtainPaymentTranHistoryRq): Observable<any>;
70
+ getTotalCashIncomeEgress(param: IncomesAndEgressRq): Observable<any>;
70
71
  static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
71
72
  static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
72
73
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iptdevs-design-system",
3
- "version": "3.1.698",
3
+ "version": "3.1.700",
4
4
  "description": "Library common elements into IPT Plattform.",
5
5
  "keywords": [
6
6
  "IPT",