iptdevs-design-system 3.1.740 → 3.1.742
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/models/user/user-rq.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 +21 -0
- package/lib/core/models/user/user-rq.model.d.ts +1 -0
- package/lib/core/services/budget-service/budget-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -641,4 +641,25 @@ export interface IUserWalletRs {
|
|
|
641
641
|
phone_number: string;
|
|
642
642
|
is_visible: number;
|
|
643
643
|
}
|
|
644
|
+
export interface SendEmailPayment {
|
|
645
|
+
email: string;
|
|
646
|
+
nameStudent: string;
|
|
647
|
+
phoneStudent: string;
|
|
648
|
+
nameAdviser: string;
|
|
649
|
+
dateFull: string;
|
|
650
|
+
academic_plan: string;
|
|
651
|
+
academic_plan_code: string;
|
|
652
|
+
payerName: string;
|
|
653
|
+
payerDocument: string;
|
|
654
|
+
paymentAmount: string;
|
|
655
|
+
totalAmount: string;
|
|
656
|
+
discount: string;
|
|
657
|
+
paymentMethod: string;
|
|
658
|
+
paymentWallet: string;
|
|
659
|
+
paymentServices: string;
|
|
660
|
+
bank: string;
|
|
661
|
+
payment_reference: string;
|
|
662
|
+
observation: string;
|
|
663
|
+
dues: [];
|
|
664
|
+
}
|
|
644
665
|
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 } 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 } from '../../models/budget/budget.model';
|
|
4
4
|
import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, IPaymentReferenceRq, PaymentBillRq2, PriceByTypeServiceRq } from '../../models/payment/payment-rq.model';
|
|
5
5
|
import { IgetCoursesFinishAndunassignedRq } from '../../models/reports/reports.model';
|
|
6
6
|
import { IPTGeneralService } from '../service-enviroments';
|
|
@@ -77,6 +77,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
77
77
|
getPaymentInfoByReference(params: IPaymentReferenceRq): Observable<any>;
|
|
78
78
|
obtainPaymentsByCod(param: ICodPaymentRq): Observable<any>;
|
|
79
79
|
obtainPaymentsMadeByDates(params: ICancelledReceiptByDateRq): Observable<any>;
|
|
80
|
+
sendEmailPayment(params: SendEmailPayment): Observable<any>;
|
|
80
81
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
81
82
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
82
83
|
}
|