iptdevs-design-system 3.2.125 → 3.2.127
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/payment/payment-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +6 -1
- package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +1 -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/payment/payment-rq.model.d.ts +26 -0
- package/lib/core/services/budget-service/budget-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -145,6 +145,32 @@ export interface GetDiscountCouponsRq {
|
|
|
145
145
|
academic_plan: number;
|
|
146
146
|
code_student: number;
|
|
147
147
|
}
|
|
148
|
+
export interface IGetDiscountCouponInformationRq {
|
|
149
|
+
token: string;
|
|
150
|
+
code_student: number;
|
|
151
|
+
discount_ref: string;
|
|
152
|
+
fee_codes: number[];
|
|
153
|
+
}
|
|
154
|
+
export interface IGetDiscountCouponInformationRs {
|
|
155
|
+
exists: boolean;
|
|
156
|
+
applicable: boolean;
|
|
157
|
+
description: string;
|
|
158
|
+
discount: IDiscountInfoRs | null;
|
|
159
|
+
discount_type_name: string | null;
|
|
160
|
+
type_label: string | null;
|
|
161
|
+
}
|
|
162
|
+
export interface IDiscountInfoRs {
|
|
163
|
+
code: number;
|
|
164
|
+
discount_ref: string;
|
|
165
|
+
name: string;
|
|
166
|
+
type: number;
|
|
167
|
+
discount_type: number;
|
|
168
|
+
percentage: number;
|
|
169
|
+
start_date: string;
|
|
170
|
+
end_date: string;
|
|
171
|
+
state: number;
|
|
172
|
+
description: string;
|
|
173
|
+
}
|
|
148
174
|
export interface SearchDiscountCouponsRq {
|
|
149
175
|
code: number;
|
|
150
176
|
discountRef: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpClient, HttpResponse } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet, IAssignRequestRq, IObtainAvailableCourseRs, IGetCodByPaymentPlanRq, IUpdateAmountCodPaymentsRq, IParamsUpdateDateCodPaymentsRq, ICancelStudentReceiptRq, ICancelledReceiptByDateRq, IPaymentsReceivedByUserRq, IObtainCourseByCoodDiffParamRq, NameCommonExpenses, IObtainPaymentTranHistoryRq, IObtainStudentPaymentByDiffParamRq, InfoCashClosingRq, IcashClosingDateRq, IcashClosingRq, IpaymentBillEgressRq, IncomesAndEgressRq, IObatinDetailedIncomeByUserAndDateRq, SendEmailPayment, SendEmailPaymentCancellationRS, IPaymentCorrelativeRq, IObtainGatewayPaymentRecordRq, IUpdateEpaycoPaymentRq, IElectronicInvoiceRS, IAccountsBalanceRq, IGetFullPaymentInformationRq, IGetFullPaymentInformationRs, ISearchPaymentBillRq, ISearchPaymentBillRs, IGetSummaryByCoordinatorRq, IAddNewQuotaWithCommentsRq, IDeleteQuotaRecordWithCommentsRq, IModifyQuotaDataWithCommentsRq, IEditInstallmentAmounWithCommentsRq, ICoursePaymentRangeReportRq, ICoursePaymentRangeReportRs, IPreviewModifyPaymentPlanRq, ISaveModifiedPaymentPlanRq } from '../../models/budget/budget.model';
|
|
4
|
-
import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, IPaymentReferenceRq, ITransferAssignImage, ITransferCreateRq, ITransferDeleteRq, ITransferGetAllRq, ITransferGetRq, ITransferSearchRq, ITransferShowImageRq, ITransferStatusUpdateRq, ITransferUpdateRq, PaymentBillRq2, PriceByTypeServiceRq, IDeleteCodPaymentsRq, ICreateCodPaymentsRq, ITransferStatusUpdateRequestRq, IUpdateElectronicInvoiceRq, IValidationOfTransfersByNumberRq } from '../../models/payment/payment-rq.model';
|
|
4
|
+
import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, IPaymentReferenceRq, ITransferAssignImage, ITransferCreateRq, ITransferDeleteRq, ITransferGetAllRq, ITransferGetRq, ITransferSearchRq, ITransferShowImageRq, ITransferStatusUpdateRq, ITransferUpdateRq, PaymentBillRq2, PriceByTypeServiceRq, IDeleteCodPaymentsRq, ICreateCodPaymentsRq, ITransferStatusUpdateRequestRq, IUpdateElectronicInvoiceRq, IValidationOfTransfersByNumberRq, IGetDiscountCouponInformationRq } from '../../models/payment/payment-rq.model';
|
|
5
5
|
import { IgetCoursesFinishAndunassignedRq } from '../../models/reports/reports.model';
|
|
6
6
|
import { IPTGeneralService } from '../service-enviroments';
|
|
7
7
|
import { ICodPaymentRq } from '../../models/cod/cod-rq.model';
|
|
@@ -15,6 +15,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
15
15
|
getAllDiscount(user: getdiscountAllRq): Observable<any>;
|
|
16
16
|
createDiscount(params: DiscountRq): Observable<any>;
|
|
17
17
|
updateDiscount(params: DiscountUpdateRq): Observable<any>;
|
|
18
|
+
getDiscountCouponInformation(params: IGetDiscountCouponInformationRq): Observable<any>;
|
|
18
19
|
getPaymentStudentsByCode(codeStudent: number): Observable<any>;
|
|
19
20
|
getPaymentWalletByCampus(codeCampus: number): Observable<any>;
|
|
20
21
|
paymentBillDues(params: PaymentBillRq2): Observable<any>;
|