iptdevs-design-system 3.1.822 → 3.1.825
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/course/course-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/payment/payment-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +11 -1
- package/fesm2015/iptdevs-design-system.mjs +10 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +10 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/course/course-rq.model.d.ts +12 -29
- package/lib/core/models/payment/payment-rq.model.d.ts +11 -0
- package/lib/core/services/budget-service/budget-service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -36,35 +36,18 @@ export interface CreateCourseRq {
|
|
|
36
36
|
export interface EditCourseRq {
|
|
37
37
|
token: string;
|
|
38
38
|
course_code: number;
|
|
39
|
-
course_schedule
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
time_end_tuesday: string | null;
|
|
52
|
-
time_end_wednesday: string | null;
|
|
53
|
-
time_end_thursday: string | null;
|
|
54
|
-
time_end_friday: string | null;
|
|
55
|
-
time_end_saturday: string | null;
|
|
56
|
-
time_start_monday_club: string | null;
|
|
57
|
-
time_start_tuesday_club: string | null;
|
|
58
|
-
time_start_wednesday_club: string | null;
|
|
59
|
-
time_start_thursday_club: string | null;
|
|
60
|
-
time_start_friday_club: string | null;
|
|
61
|
-
time_start_saturday_club: string | null;
|
|
62
|
-
time_end_monday_club: string | null;
|
|
63
|
-
time_end_tuesday_club: string | null;
|
|
64
|
-
time_end_wednesday_club: string | null;
|
|
65
|
-
time_end_thursday_club: string | null;
|
|
66
|
-
time_end_friday_club: string | null;
|
|
67
|
-
time_end_saturday_club: string | null;
|
|
39
|
+
course_schedule?: number;
|
|
40
|
+
course_schedule_club?: number;
|
|
41
|
+
teacher?: number | null;
|
|
42
|
+
teacherClub?: number | null;
|
|
43
|
+
capacity?: string;
|
|
44
|
+
to_start?: string;
|
|
45
|
+
weekDays?: string[];
|
|
46
|
+
startTime?: string | null;
|
|
47
|
+
endTime?: string | null;
|
|
48
|
+
weekDaysClub?: string[];
|
|
49
|
+
startTimeClub?: string | null;
|
|
50
|
+
endTimeClub?: string | null;
|
|
68
51
|
}
|
|
69
52
|
export interface GetCoursesRq {
|
|
70
53
|
token: string;
|
|
@@ -455,3 +455,14 @@ export interface ITransferStatusUpdateRq {
|
|
|
455
455
|
code: number;
|
|
456
456
|
status: string;
|
|
457
457
|
}
|
|
458
|
+
export interface IDeleteCodPaymentsRq {
|
|
459
|
+
token: string;
|
|
460
|
+
codeCodPayment: number;
|
|
461
|
+
}
|
|
462
|
+
export interface ICreateCodPaymentsRq {
|
|
463
|
+
token: string;
|
|
464
|
+
cod: number;
|
|
465
|
+
timely_date: string;
|
|
466
|
+
valueAmount: number;
|
|
467
|
+
fee_number: number;
|
|
468
|
+
}
|
|
@@ -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 } from '../../models/budget/budget.model';
|
|
4
|
-
import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, IPaymentReferenceRq, ITransferAssignImage, ITransferCreateRq, ITransferDeleteRq, ITransferGetAllRq, ITransferGetRq, ITransferSearchRq, ITransferShowImageRq, ITransferStatusUpdateRq, ITransferUpdateRq, PaymentBillRq2, PriceByTypeServiceRq } 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 } 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';
|
|
@@ -95,6 +95,8 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
95
95
|
epaycoPaymentUpdate(param: IUpdateEpaycoPaymentRq): Observable<any>;
|
|
96
96
|
exportElectronicInvoiceHistoryData(param: IElectronicInvoiceRS): Observable<any>;
|
|
97
97
|
exportAccountsAndBalancesByCoodinator(param: IAccountsBalanceRq): Observable<any>;
|
|
98
|
+
createCodPayments(params: ICreateCodPaymentsRq): Observable<any>;
|
|
99
|
+
deleteCodPayments(params: IDeleteCodPaymentsRq): Observable<any>;
|
|
98
100
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
99
101
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
100
102
|
}
|