iptdevs-design-system 3.1.353 → 3.1.355
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/cod/steps/cod-form-step-one/cod-form-step-one.component.mjs +1 -6
- package/esm2020/lib/core/models/budget/budget.model.mjs +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +5 -5
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +5 -5
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +11 -0
- package/lib/core/services/budget-service/budget-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -336,3 +336,14 @@ export interface ITotalByMethodRs {
|
|
|
336
336
|
name: string;
|
|
337
337
|
amount: number;
|
|
338
338
|
}
|
|
339
|
+
export interface IObtainCourseByCoodDiffParamRq {
|
|
340
|
+
token: string;
|
|
341
|
+
modality: number;
|
|
342
|
+
course_status: number;
|
|
343
|
+
coordinator: number;
|
|
344
|
+
english_level: IEnglishLevelRq[];
|
|
345
|
+
}
|
|
346
|
+
export interface IEnglishLevelRq {
|
|
347
|
+
code: number;
|
|
348
|
+
name: string;
|
|
349
|
+
}
|
|
@@ -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 } from '../../models/budget/budget.model';
|
|
3
|
+
import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet, IAssignRequestRq, IObtainAvailableCourseRs, IGetCodByPaymentPlanRq, IUpdateAmountCodPaymentsRq, IParamsUpdateDateCodPaymentsRq, ICancelStudentReceiptRq, ICancelledReceiptByDateRq, IPaymentsReceivedByUserRq, IObtainCourseByCoodDiffParamRq } 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';
|
|
@@ -49,6 +49,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
49
49
|
getCancelledReceiptsByDate(params: ICancelledReceiptByDateRq): Observable<any>;
|
|
50
50
|
obtainPaymentreceivedByUser(params: IPaymentsReceivedByUserRq): Observable<any>;
|
|
51
51
|
getTotalCashReceiptsByDateAndUser(params: IPaymentsReceivedByUserRq): Observable<any>;
|
|
52
|
+
obtainCoursesByCoordAndDiffParam(params: IObtainCourseByCoodDiffParamRq): Observable<any>;
|
|
52
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
53
54
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
54
55
|
}
|