iptdevs-design-system 3.1.776 → 3.1.777
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 +9 -0
- package/lib/core/services/budget-service/budget-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -659,4 +659,13 @@ export interface SendEmailPayment {
|
|
|
659
659
|
codeDiscount: number;
|
|
660
660
|
code: number;
|
|
661
661
|
}
|
|
662
|
+
export interface SendEmailPaymentCancellationRS {
|
|
663
|
+
email: string;
|
|
664
|
+
studentName: string;
|
|
665
|
+
receiptCode: number;
|
|
666
|
+
cancellationDate: string;
|
|
667
|
+
amount: number;
|
|
668
|
+
discount: number;
|
|
669
|
+
concept: string;
|
|
670
|
+
}
|
|
662
671
|
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, IObatinDetailedIncomeByUserAndDateRq, IObatinBalacesByCoodinatorRq, SendEmailPayment } 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, SendEmailPayment, SendEmailPaymentCancellationRS } from '../../models/budget/budget.model';
|
|
4
4
|
import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, IPaymentReferenceRq, ITransferCreateRq, ITransferDeleteRq, ITransferGetAllRq, ITransferGetRq, ITransferSearchRq, ITransferUpdateRq, PaymentBillRq2, PriceByTypeServiceRq } from '../../models/payment/payment-rq.model';
|
|
5
5
|
import { IgetCoursesFinishAndunassignedRq } from '../../models/reports/reports.model';
|
|
6
6
|
import { IPTGeneralService } from '../service-enviroments';
|
|
@@ -78,6 +78,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
78
78
|
obtainPaymentsByCod(param: ICodPaymentRq): Observable<any>;
|
|
79
79
|
obtainPaymentsMadeByDates(params: ICancelledReceiptByDateRq): Observable<any>;
|
|
80
80
|
sendEmailPayment(params: SendEmailPayment): Observable<any>;
|
|
81
|
+
sendEmailPaymentCancellation(params: SendEmailPaymentCancellationRS): Observable<any>;
|
|
81
82
|
getAllTransfers(params: ITransferGetAllRq): Observable<any>;
|
|
82
83
|
getTransferByCode(params: ITransferGetRq): Observable<any>;
|
|
83
84
|
createTransfer(params: ITransferCreateRq): Observable<any>;
|