iptdevs-design-system 3.1.204 → 3.1.205
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/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 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +5 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +6 -0
- package/lib/core/services/budget-service/budget-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -270,3 +270,9 @@ export interface ICancelStudentReceiptRq {
|
|
|
270
270
|
quotas_affected: IQuotasAffectedRq[] | null;
|
|
271
271
|
receipt: number | null;
|
|
272
272
|
}
|
|
273
|
+
export interface ICancelledReceiptByDateRq {
|
|
274
|
+
token: string;
|
|
275
|
+
code_type_consult: number;
|
|
276
|
+
start_date: Date | null;
|
|
277
|
+
finish_date: Date | null;
|
|
278
|
+
}
|
|
@@ -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 } from '../../models/budget/budget.model';
|
|
3
|
+
import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet, IAssignRequestRq, IObtainAvailableCourseRs, IGetCodByPaymentPlanRq, IUpdateAmountCodPaymentsRq, IParamsUpdateDateCodPaymentsRq, ICancelStudentReceiptRq, ICancelledReceiptByDateRq } 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';
|
|
@@ -46,6 +46,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
46
46
|
obtainReceiptByCode(codeReceipt: number): Observable<any>;
|
|
47
47
|
obtainPaymentsForReceiptCode(codeStudent: number): Observable<any>;
|
|
48
48
|
canelStudentReceipt(params: ICancelStudentReceiptRq): Observable<any>;
|
|
49
|
+
getCancelledReceiptsByDate(params: ICancelledReceiptByDateRq): Observable<any>;
|
|
49
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
50
51
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
51
52
|
}
|