iptdevs-design-system 3.2.181 → 3.2.182
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 +47 -0
- package/lib/core/services/budget-service/budget-service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1326,4 +1326,51 @@ export interface IGetCoursesAssignedByTheCoordinatorRq {
|
|
|
1326
1326
|
course_wallet_status_code: number;
|
|
1327
1327
|
campus: number[];
|
|
1328
1328
|
}
|
|
1329
|
+
export interface IPaymentsMadeByDateAndPortfolioCoordinatorReportRq {
|
|
1330
|
+
token: string;
|
|
1331
|
+
user_code: number;
|
|
1332
|
+
start_date: Date;
|
|
1333
|
+
end_date: Date;
|
|
1334
|
+
}
|
|
1335
|
+
export interface IPaymentsMadeByDateAndPortfolioCoordinatorReportRs {
|
|
1336
|
+
payments: IPaymentDetailRs[];
|
|
1337
|
+
summary_by_method: ISummaryByMethodRs[];
|
|
1338
|
+
total_amount: number;
|
|
1339
|
+
total_discount: number;
|
|
1340
|
+
}
|
|
1341
|
+
export interface IPaymentDetailRs {
|
|
1342
|
+
payment_bill_code: number;
|
|
1343
|
+
student_code: number;
|
|
1344
|
+
student_id_card_type: number;
|
|
1345
|
+
student_id_card: string;
|
|
1346
|
+
student_name: string;
|
|
1347
|
+
student_campus_enterprise: number;
|
|
1348
|
+
cod_payment_code: number;
|
|
1349
|
+
cod_code: number;
|
|
1350
|
+
course_code: number;
|
|
1351
|
+
course_wallet_code: number;
|
|
1352
|
+
cod_payment_status: number;
|
|
1353
|
+
fee_number: number;
|
|
1354
|
+
cod_payment_amount: number;
|
|
1355
|
+
payment_bill_cod_amount: number;
|
|
1356
|
+
payment_created_at: string;
|
|
1357
|
+
payment_amount: number;
|
|
1358
|
+
discount: number;
|
|
1359
|
+
payment_method_name: string;
|
|
1360
|
+
payment_wallet_name: string;
|
|
1361
|
+
total_amount: number;
|
|
1362
|
+
outstanding_amount: number;
|
|
1363
|
+
bank_name: string;
|
|
1364
|
+
payment_method: number;
|
|
1365
|
+
payment_reference: null | string;
|
|
1366
|
+
payment_date: Date | null;
|
|
1367
|
+
observation: null;
|
|
1368
|
+
}
|
|
1369
|
+
export interface ISummaryByMethodRs {
|
|
1370
|
+
payment_method_code: number;
|
|
1371
|
+
payment_method_name: string;
|
|
1372
|
+
total: number;
|
|
1373
|
+
total_discount: number;
|
|
1374
|
+
count: number;
|
|
1375
|
+
}
|
|
1329
1376
|
export {};
|
|
@@ -146,6 +146,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
146
146
|
obtainCampusSummaryByUserCode(param: IObtainCampusSummaryByUserCodeRq): Observable<any>;
|
|
147
147
|
getCoursesNotAssignedByCampus(param: IGetCoursesNotAssignedByCampusRq): Observable<any>;
|
|
148
148
|
getCoursesAssignedByTheCoordinator(param: IGetCoursesAssignedByTheCoordinatorRq): Observable<any>;
|
|
149
|
+
paymentsMadeByDateAndPortfolioCoordinatorReport(param: IGetCoursesAssignedByTheCoordinatorRq): Observable<any>;
|
|
149
150
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
150
151
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
151
152
|
}
|