iptdevs-design-system 3.1.702 → 3.1.704

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.
@@ -1,5 +1,4 @@
1
1
  import { IMessageRq } from "../budget/budget.model";
2
- import { English_Levels } from "../course/courses.model";
3
2
  export interface GetCourseByTypeRq {
4
3
  token: string;
5
4
  course_type: number;
@@ -110,60 +109,3 @@ export interface IweekDaysRq {
110
109
  key: string;
111
110
  code: number;
112
111
  }
113
- export interface IObatinBalacesByCoodinatorRq {
114
- token: string;
115
- course_modality: number;
116
- course_status: number;
117
- user_code: number;
118
- english_level: English_Levels[];
119
- start_date: Date;
120
- end_date: Date;
121
- }
122
- export interface IObatinDetailedIncomeByUserAndDateRq {
123
- token: string;
124
- user_code: number;
125
- start_date: Date;
126
- end_date: Date;
127
- }
128
- export interface IObatinDetailedIncomeByUserAndDateRs {
129
- income: ResponsePay;
130
- expenses: ResponsePay;
131
- }
132
- export interface ResponsePay {
133
- listPayment: IListPaymentRs[];
134
- sumByMethod: ISumByMethodPayRs[];
135
- totalAmount: number;
136
- dateConsult: IDateConsultRs;
137
- userConsulted: string;
138
- }
139
- export interface IDateConsultRs {
140
- startDate: Date;
141
- endDate: Date;
142
- }
143
- export interface IListPaymentRs {
144
- payment_code: number;
145
- method_name: string;
146
- method_code: number;
147
- service: string;
148
- wallet: string;
149
- bank: string;
150
- fullname_student: string;
151
- fullname_user: string;
152
- total_amount: number;
153
- payment_amount: number;
154
- outstanding_amount: number;
155
- positive_amount: number;
156
- discount: number;
157
- father_name: null | string;
158
- pather_document: null | string;
159
- academic_plan: number;
160
- referenec_payment: null | string;
161
- create_date: Date;
162
- observation: null | string;
163
- invoice_cancelled: number;
164
- }
165
- export interface ISumByMethodPayRs {
166
- Metodo_pago_code: number;
167
- Metodo_pago: string;
168
- Total_por_metodo: number;
169
- }
@@ -1,5 +1,6 @@
1
1
  import { IEventCourseRq } from "../classroom/classroom-rq.model";
2
2
  import { CourseTypeCRq } from "../course/course-rq.model";
3
+ import { English_Levels } from "../course/courses.model";
3
4
  export interface getdiscountAllRq {
4
5
  token: string;
5
6
  }
@@ -538,4 +539,61 @@ export interface IncomesAndEgressRq {
538
539
  finish_date?: string;
539
540
  user_code: number;
540
541
  }
542
+ export interface IObatinBalacesByCoodinatorRq {
543
+ token: string;
544
+ course_modality: number;
545
+ course_status: number;
546
+ user_code: number;
547
+ english_level: English_Levels[];
548
+ start_date: Date;
549
+ end_date: Date;
550
+ }
551
+ export interface IObatinDetailedIncomeByUserAndDateRq {
552
+ token: string;
553
+ user_code: number;
554
+ start_date: Date;
555
+ end_date: Date;
556
+ }
557
+ export interface IObatinDetailedIncomeByUserAndDateRs {
558
+ income: ResponsePay;
559
+ expenses: ResponsePay;
560
+ }
561
+ export interface ResponsePay {
562
+ listPayment: IListPaymentRs[];
563
+ sumByMethod: ISumByMethodPayRs[];
564
+ totalAmount: number;
565
+ dateConsult: IDateConsultRs;
566
+ userConsulted: string;
567
+ }
568
+ export interface IDateConsultRs {
569
+ startDate: Date;
570
+ endDate: Date;
571
+ }
572
+ export interface IListPaymentRs {
573
+ payment_code: number;
574
+ method_name: string;
575
+ method_code: number;
576
+ service: string;
577
+ wallet: string;
578
+ bank: string;
579
+ fullname_student: string;
580
+ fullname_user: string;
581
+ total_amount: number;
582
+ payment_amount: number;
583
+ outstanding_amount: number;
584
+ positive_amount: number;
585
+ discount: number;
586
+ father_name: null | string;
587
+ pather_document: null | string;
588
+ academic_plan: number;
589
+ referenec_payment: null | string;
590
+ create_date: Date;
591
+ observation: null | string;
592
+ invoice_cancelled: number;
593
+ }
594
+ export interface ISumByMethodPayRs {
595
+ Metodo_pago_code: number;
596
+ Metodo_pago: string;
597
+ Total_por_metodo: number;
598
+ }
541
599
  export {};
@@ -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, IParamsObtainCoursesByTypeCourseInCreatedCoursesRs, IObatinBalacesByCoodinatorRq, IObatinDetailedIncomeByUserAndDateRq } 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';
@@ -40,8 +40,6 @@ export declare class AcademicService extends IPTGeneralService {
40
40
  obtainPlansCourseAvalaibleForPosibleStudentByAgeAndGrade(params: any): Observable<any>;
41
41
  ObtainGradesByStudent(param: INotesStudentRq): Observable<any>;
42
42
  ObtainLevelsCodsByStudent(param: NotesStudents): Observable<any>;
43
- obatinBalacesByCoodinator(params: IObatinBalacesByCoodinatorRq): Observable<any>;
44
- obatinDetailedIncomeByUserAndDate(params: IObatinDetailedIncomeByUserAndDateRq): Observable<any>;
45
43
  static ɵfac: i0.ɵɵFactoryDeclaration<AcademicService, never>;
46
44
  static ɵprov: i0.ɵɵInjectableDeclaration<AcademicService>;
47
45
  }
@@ -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, IncomesAndEgressRq } 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, IObatinDetailedIncomeByUserAndDateRq, IObatinBalacesByCoodinatorRq } 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';
@@ -68,6 +68,9 @@ export declare class BudgetService extends IPTGeneralService {
68
68
  getCashClosingDate(param: IcashClosingDateRq): Observable<any>;
69
69
  exportObtainStudentPaymentTransactionHistoryByCourse(param: IObtainPaymentTranHistoryRq): Observable<any>;
70
70
  getTotalCashIncomeEgress(param: IncomesAndEgressRq): Observable<any>;
71
+ obatinBalacesByCoodinator(params: IObatinBalacesByCoodinatorRq): Observable<any>;
72
+ obatinDetailedIncomeByUserAndDate(params: IObatinDetailedIncomeByUserAndDateRq): Observable<any>;
73
+ exportIncomeExpenseHistoryData(params: IObatinDetailedIncomeByUserAndDateRq): Observable<any>;
71
74
  static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
72
75
  static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
73
76
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iptdevs-design-system",
3
- "version": "3.1.702",
3
+ "version": "3.1.704",
4
4
  "description": "Library common elements into IPT Plattform.",
5
5
  "keywords": [
6
6
  "IPT",