iptdevs-design-system 3.1.831 → 3.1.833

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.
@@ -841,4 +841,103 @@ export interface IElectronicInvoiceRS {
841
841
  start_date: Date | null;
842
842
  end_date: Date | null;
843
843
  }
844
+ export interface IGetFullPaymentInformationRq {
845
+ token: string;
846
+ page?: number;
847
+ }
848
+ export interface IGetFullPaymentInformationRs {
849
+ ip_applicant: string;
850
+ status: number;
851
+ message: IMessageRq;
852
+ data: IPaymentBillFullDataRs;
853
+ }
854
+ export interface IPaymentBillFullDataRs {
855
+ data: IPaymentBillFullRs[];
856
+ pagination: IPaginationRs;
857
+ }
858
+ export interface IPaymentBillFullRs {
859
+ payment_bill_code: number;
860
+ payment_method: number;
861
+ payment_services: number;
862
+ payment_wallet: number;
863
+ bank_name: string;
864
+ generated_for: number;
865
+ generated_by: number;
866
+ type_movements: number;
867
+ common_expenses: number;
868
+ total_amount: number;
869
+ payment_amount: number;
870
+ outstanding_amount: number;
871
+ positive_amount: number;
872
+ discount: number;
873
+ payer_name: string | null;
874
+ payer_document: string | null;
875
+ academic_plan: number;
876
+ payment_reference: string | null;
877
+ payment_date: string | null;
878
+ observation: string | null;
879
+ invoice_cancelled: number;
880
+ manual_receipt: string | null;
881
+ correlative: string | null;
882
+ transfer_code: number | null;
883
+ electronic_invoice: string | null;
884
+ payment_bill_created_at: string;
885
+ payment_bill_updated_at: string;
886
+ transfer_amount: number | null;
887
+ initial_amount: number | null;
888
+ transfer_bank_name: string | null;
889
+ transfer_date: string | null;
890
+ reference_number: string | null;
891
+ transfer_status: string | null;
892
+ transfer_created_by: number | null;
893
+ transfer_updated_by: number | null;
894
+ image_url: string | null;
895
+ transfer_created_at: string | null;
896
+ transfer_updated_at: string | null;
897
+ payer_code: number;
898
+ payer_name_user: string;
899
+ payer_last_name: string;
900
+ payer_email: string;
901
+ payer_role: number;
902
+ payer_phone: string;
903
+ payer_created_at: string;
904
+ creator_code: number;
905
+ creator_name: string;
906
+ creator_last_name: string;
907
+ creator_email: string;
908
+ creator_role: number;
909
+ creator_phone: string;
910
+ creator_created_at: string;
911
+ cod_code: number;
912
+ course: number;
913
+ course_type: number;
914
+ agreement: number;
915
+ english_level: number;
916
+ student: number;
917
+ cod_parent: number | null;
918
+ aditional_information: number;
919
+ adviser: number;
920
+ cod_status: number;
921
+ cod_price: number | null;
922
+ cod_paid: number;
923
+ cod_created_at: string;
924
+ cod_updated_at: string;
925
+ parent_code: number | null;
926
+ parent_name: string | null;
927
+ parent_last_name: string | null;
928
+ parent_id_card: string | null;
929
+ parent_phone: string | null;
930
+ occupation: string | null;
931
+ office_adrress: string | null;
932
+ parent_created_at: string | null;
933
+ parent_updated_at: string | null;
934
+ }
935
+ export interface IPaginationRs {
936
+ total: number;
937
+ per_page: number;
938
+ current_page: number;
939
+ last_page: number;
940
+ from: number;
941
+ to: number;
942
+ }
844
943
  export {};
@@ -285,3 +285,7 @@ export interface ICourseTypeRs {
285
285
  theory_classes: number;
286
286
  club_classes: number;
287
287
  }
288
+ export interface GetCoursesFilterRq {
289
+ token: string;
290
+ status_filter?: string;
291
+ }
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, HttpResponse } 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, IObatinDetailedIncomeByUserAndDateRq, SendEmailPayment, SendEmailPaymentCancellationRS, IPaymentCorrelativeRq, IObtainGatewayPaymentRecordRq, IUpdateEpaycoPaymentRq, IElectronicInvoiceRS, IAccountsBalanceRq } 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, SendEmailPayment, SendEmailPaymentCancellationRS, IPaymentCorrelativeRq, IObtainGatewayPaymentRecordRq, IUpdateEpaycoPaymentRq, IElectronicInvoiceRS, IAccountsBalanceRq, IGetFullPaymentInformationRq, IGetFullPaymentInformationRs } from '../../models/budget/budget.model';
4
4
  import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, IPaymentReferenceRq, ITransferAssignImage, ITransferCreateRq, ITransferDeleteRq, ITransferGetAllRq, ITransferGetRq, ITransferSearchRq, ITransferShowImageRq, ITransferStatusUpdateRq, ITransferUpdateRq, PaymentBillRq2, PriceByTypeServiceRq, IDeleteCodPaymentsRq, ICreateCodPaymentsRq } from '../../models/payment/payment-rq.model';
5
5
  import { IgetCoursesFinishAndunassignedRq } from '../../models/reports/reports.model';
6
6
  import { IPTGeneralService } from '../service-enviroments';
@@ -97,6 +97,7 @@ export declare class BudgetService extends IPTGeneralService {
97
97
  exportAccountsAndBalancesByCoodinator(param: IAccountsBalanceRq): Observable<any>;
98
98
  createCodPayments(params: ICreateCodPaymentsRq): Observable<any>;
99
99
  deleteCodPayments(params: IDeleteCodPaymentsRq): Observable<any>;
100
+ getFullPaymentInformation(params: IGetFullPaymentInformationRq): Observable<IGetFullPaymentInformationRs>;
100
101
  static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
101
102
  static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
102
103
  }
@@ -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 { CreateCourseRq, EditCourseRq, GetAvailibleCoursesRq, GetCourseByCodeRq, GetCoursesByTeacherRq, GetCoursesRq, IChangeCourseStudentNotStartedRq, IUpdateCourseEventByCodeRq, ICourse } from '../../models/course/course-rq.model';
4
+ import { CreateCourseRq, EditCourseRq, GetAvailibleCoursesRq, GetCourseByCodeRq, GetCoursesByTeacherRq, GetCoursesRq, IChangeCourseStudentNotStartedRq, IUpdateCourseEventByCodeRq, ICourse, GetCoursesFilterRq } from '../../models/course/course-rq.model';
5
5
  import { CourseStartDateRq } from '../../models/cronogram/cronogram.models';
6
6
  import * as i0 from "@angular/core";
7
7
  export declare class CourseService extends IPTGeneralService {
@@ -25,6 +25,8 @@ export declare class CourseService extends IPTGeneralService {
25
25
  UpdateCourseTeacherByCode(params: ICourse): Observable<any>;
26
26
  UpdateCourseCapacityByCode(params: ICourse): Observable<any>;
27
27
  getCourseTheoryAndClubAllData(params: GetCourseByCodeRq): Observable<any>;
28
+ getCourses(params: GetCoursesFilterRq): Observable<any>;
29
+ getCoursesByState(params: GetCoursesFilterRq): Observable<any>;
28
30
  static ɵfac: i0.ɵɵFactoryDeclaration<CourseService, never>;
29
31
  static ɵprov: i0.ɵɵInjectableDeclaration<CourseService>;
30
32
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iptdevs-design-system",
3
- "version": "3.1.831",
3
+ "version": "3.1.833",
4
4
  "description": "Library common elements into IPT Plattform.",
5
5
  "keywords": [
6
6
  "IPT",