iptdevs-design-system 3.2.129 → 3.2.131
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/user-service/user-service.mjs +5 -1
- package/fesm2015/iptdevs-design-system.mjs +9 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +9 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +2 -0
- package/lib/core/services/budget-service/budget-service.d.ts +1 -0
- package/lib/core/services/user-service/user-service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1105,6 +1105,7 @@ export interface IPreviewModifyPaymentPlanRs {
|
|
|
1105
1105
|
new_cod_price: IPreviewNewCodPriceRs[];
|
|
1106
1106
|
new_cod_payment_level: IPreviewNewCodPaymentLevelRs;
|
|
1107
1107
|
contado: boolean;
|
|
1108
|
+
new_start_date: Date;
|
|
1108
1109
|
}
|
|
1109
1110
|
export interface IPreviewNewPaymentPlanRs {
|
|
1110
1111
|
status: number;
|
|
@@ -1144,6 +1145,7 @@ export interface ISaveModifiedPaymentPlanRq {
|
|
|
1144
1145
|
amount_fees_generate: number;
|
|
1145
1146
|
fees_attended: number;
|
|
1146
1147
|
contado: boolean;
|
|
1148
|
+
new_start_date: Date;
|
|
1147
1149
|
}
|
|
1148
1150
|
export interface ISaveModifiedPaymentPlanRs {
|
|
1149
1151
|
cod: number;
|
|
@@ -131,6 +131,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
131
131
|
revertPendingPaymentsByUserCode(param: IGetTransactionsByUserCodeRq): Observable<any>;
|
|
132
132
|
updateTransactionStatus(param: IUpdateTransactionStatusRq): Observable<any>;
|
|
133
133
|
getWompiTransactionById(param: IWompiTransactionPayloadRq): Observable<any>;
|
|
134
|
+
revertPendingTransactionsWithoutWompiCode(param: IGetTransactionsByUserCodeRq): Observable<any>;
|
|
134
135
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
135
136
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
136
137
|
}
|
|
@@ -56,6 +56,7 @@ export declare class UserService extends IPTGeneralService {
|
|
|
56
56
|
searchStudentByCode(codeUser: number): Observable<any>;
|
|
57
57
|
searchStudentByIdcard(id_card: number): Observable<any>;
|
|
58
58
|
searchUsersForTeamAssignment(params: any): Observable<any>;
|
|
59
|
+
getAllSystemUsers(): Observable<any>;
|
|
59
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
|
|
60
61
|
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
61
62
|
}
|