iptdevs-design-system 3.2.35 → 3.2.37
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/esm2020/lib/core/services/commercial-service/comercial.service.mjs +18 -18
- package/esm2020/lib/core/services/course-service/course-service.model.mjs +2 -2
- package/fesm2015/iptdevs-design-system.mjs +23 -18
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +23 -18
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +33 -6
- package/lib/core/services/budget-service/budget-service.d.ts +2 -1
- package/lib/core/services/commercial-service/comercial.service.d.ts +8 -8
- package/package.json +1 -1
|
@@ -978,12 +978,39 @@ export interface IDeleteQuotaRecordWithCommentsRq {
|
|
|
978
978
|
}
|
|
979
979
|
export interface IModifyQuotaDataWithCommentsRq {
|
|
980
980
|
token: string;
|
|
981
|
-
cod: number
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
981
|
+
cod: number;
|
|
982
|
+
timely_date: string;
|
|
983
|
+
observation: string;
|
|
984
|
+
}
|
|
985
|
+
export interface IEditInstallmentAmounWithCommentsRq {
|
|
986
|
+
token: string;
|
|
987
|
+
cod_payment: number;
|
|
988
|
+
value_amount: number;
|
|
989
|
+
observation: string;
|
|
990
|
+
}
|
|
991
|
+
export interface IProcessPaymentCodWithCommentsRs {
|
|
992
|
+
codpayment: ICodpaymentProcessPaymentRs;
|
|
993
|
+
history: IHistoryProcessPaymentRs;
|
|
994
|
+
}
|
|
995
|
+
export interface ICodpaymentProcessPaymentRs {
|
|
996
|
+
code: number;
|
|
997
|
+
cod: number;
|
|
998
|
+
timely_date: Date;
|
|
999
|
+
amount: number;
|
|
1000
|
+
fee_number: number;
|
|
1001
|
+
status: number;
|
|
1002
|
+
updated_amount_by: number;
|
|
1003
|
+
updated_by: number;
|
|
1004
|
+
deleted_at: null | Date;
|
|
1005
|
+
updated_at: Date;
|
|
1006
|
+
created_at: Date;
|
|
1007
|
+
}
|
|
1008
|
+
export interface IHistoryProcessPaymentRs {
|
|
1009
|
+
cod_payment: number;
|
|
987
1010
|
observation: string;
|
|
1011
|
+
status: number;
|
|
1012
|
+
process: number;
|
|
1013
|
+
produced_by: number;
|
|
1014
|
+
code: number;
|
|
988
1015
|
}
|
|
989
1016
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, HttpResponse } 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, SendEmailPayment, SendEmailPaymentCancellationRS, IPaymentCorrelativeRq, IObtainGatewayPaymentRecordRq, IUpdateEpaycoPaymentRq, IElectronicInvoiceRS, IAccountsBalanceRq, IGetFullPaymentInformationRq, IGetFullPaymentInformationRs, ISearchPaymentBillRq, ISearchPaymentBillRs, IGetSummaryByCoordinatorRq, IAddNewQuotaWithCommentsRq, IDeleteQuotaRecordWithCommentsRq, IModifyQuotaDataWithCommentsRq } 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, SendEmailPayment, SendEmailPaymentCancellationRS, IPaymentCorrelativeRq, IObtainGatewayPaymentRecordRq, IUpdateEpaycoPaymentRq, IElectronicInvoiceRS, IAccountsBalanceRq, IGetFullPaymentInformationRq, IGetFullPaymentInformationRs, ISearchPaymentBillRq, ISearchPaymentBillRs, IGetSummaryByCoordinatorRq, IAddNewQuotaWithCommentsRq, IDeleteQuotaRecordWithCommentsRq, IModifyQuotaDataWithCommentsRq, IEditInstallmentAmounWithCommentsRq } from '../../models/budget/budget.model';
|
|
4
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';
|
|
5
5
|
import { IgetCoursesFinishAndunassignedRq } from '../../models/reports/reports.model';
|
|
6
6
|
import { IPTGeneralService } from '../service-enviroments';
|
|
@@ -115,6 +115,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
115
115
|
addNewQuotaWithComments(params: IAddNewQuotaWithCommentsRq): Observable<any>;
|
|
116
116
|
deleteQuotaRecordWithComments(params: IDeleteQuotaRecordWithCommentsRq): Observable<any>;
|
|
117
117
|
modifyQuotaDataWithComments(params: IModifyQuotaDataWithCommentsRq): Observable<any>;
|
|
118
|
+
editInstallmentAmountWithComments(params: IEditInstallmentAmounWithCommentsRq): Observable<any>;
|
|
118
119
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
119
120
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
120
121
|
}
|
|
@@ -70,20 +70,20 @@ export declare class CommercialService extends IPTGeneralService {
|
|
|
70
70
|
updateStatusOfTermsAndConditionsRecords(): Observable<any>;
|
|
71
71
|
obtainCodByCoodinatorWithTheirStates(params: ICodWithTheirStatesRq): Observable<any>;
|
|
72
72
|
obtainAllInformationCodByCode(code: number): Observable<any>;
|
|
73
|
-
getSummaryByCommercialAdvisor(
|
|
73
|
+
getSummaryByCommercialAdvisor(params: IGetSummaryByCommercialAdvisorRq): Observable<any>;
|
|
74
74
|
getCodStudentDetailsByAdviser(request: IGetCodStudentDetailsByAdviserRq): Observable<any>;
|
|
75
|
-
createTypePayment(
|
|
75
|
+
createTypePayment(params: ICreateTypePaymentRq): Observable<any>;
|
|
76
76
|
getAllTypePayments(request: ITokenRq): Observable<any>;
|
|
77
|
-
createCommissionArea(
|
|
77
|
+
createCommissionArea(params: ICreateCommissionAreaRq): Observable<any>;
|
|
78
78
|
getAllCommissionAreas(request: ITokenRq): Observable<any>;
|
|
79
|
-
assignCourseTypesToArea(
|
|
80
|
-
createPaymentAreaCommission(
|
|
79
|
+
assignCourseTypesToArea(params: IAssignCourseTypesToAreaRq): Observable<any>;
|
|
80
|
+
createPaymentAreaCommission(params: ICreatePaymentAreaCommissionRq): Observable<any>;
|
|
81
81
|
getCommissionRulesByArea(request: ITokenRq, areaCode: number): Observable<any>;
|
|
82
|
-
createTypeUserCommission(
|
|
82
|
+
createTypeUserCommission(params: ICreateTypeUserCommissionRq): Observable<any>;
|
|
83
83
|
getAllTypeUserCommissions(request: ITokenRq): Observable<any>;
|
|
84
|
-
assignCommissionGoalToUser(
|
|
84
|
+
assignCommissionGoalToUser(params: IAssignCommissionGoalToUserRq): Observable<any>;
|
|
85
85
|
getActiveCommissionGoalForUser(request: IGetActiveCommissionGoalForUserRq): Observable<any>;
|
|
86
|
-
payCommissions(
|
|
86
|
+
payCommissions(params: IPayCommissionsRq): Observable<any>;
|
|
87
87
|
updatePaymentAreaCommission(request: IUpdatePaymentAreaCommissionRq, ruleCode: number): Observable<any>;
|
|
88
88
|
getAllAreasWithCommissionRules(request: ITokenRq): Observable<any>;
|
|
89
89
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommercialService, never>;
|