iptdevs-design-system 3.1.701 → 3.1.703
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/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 +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +16 -1
- package/fesm2015/iptdevs-design-system.mjs +15 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +15 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +58 -0
- package/lib/core/services/budget-service/budget-service.d.ts +4 -1
- package/package.json +1 -1
|
@@ -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,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
|
}
|