iptdevs-design-system 3.2.164 → 3.2.166
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/commercial/commercial.model.mjs +1 -1
- package/esm2020/lib/core/services/user-service/user-service.mjs +5 -1
- package/fesm2015/iptdevs-design-system.mjs +4 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +4 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/commercial/commercial.model.d.ts +48 -13
- package/lib/core/services/user-service/user-service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ICodBystudentsRs } from "../cod/cod-rq.model";
|
|
2
|
-
import { Message,
|
|
2
|
+
import { Message, ICourseTypeRs } from "../parameters/parameters-rs.model";
|
|
3
3
|
import { IIptUserFullDataRq } from "../user/user-rq.model";
|
|
4
4
|
import { IPaymentBillGraphRs } from "../budget/budget.model";
|
|
5
5
|
export interface CodPrices {
|
|
@@ -861,6 +861,7 @@ export interface IaddBonusRuleRq {
|
|
|
861
861
|
cash_payment?: number;
|
|
862
862
|
status?: number;
|
|
863
863
|
type_user?: number;
|
|
864
|
+
campus?: number;
|
|
864
865
|
}
|
|
865
866
|
export interface IremoveCommissionFromTransactionRq {
|
|
866
867
|
token: string;
|
|
@@ -873,12 +874,46 @@ export interface ITokenCampusRq extends ITokenRq {
|
|
|
873
874
|
export interface ICommissionInitialConfigRs {
|
|
874
875
|
areas: IAreaRs[];
|
|
875
876
|
courses: ICourseTypeCommissionRs[];
|
|
876
|
-
agreements:
|
|
877
|
+
agreements: IAgreementListRs[];
|
|
877
878
|
paymentsForDialog: TypePayment[];
|
|
878
879
|
categories: ICategoryRs[];
|
|
879
880
|
contractTypes: IContractTypeRs[];
|
|
880
|
-
plans:
|
|
881
|
-
campus:
|
|
881
|
+
plans: IAcademicPlanListRs[];
|
|
882
|
+
campus: IGetCampusDetailListRs[];
|
|
883
|
+
}
|
|
884
|
+
export interface IAcademicPlanListRs {
|
|
885
|
+
code: number;
|
|
886
|
+
name: string;
|
|
887
|
+
after_age: number;
|
|
888
|
+
before_age: number;
|
|
889
|
+
}
|
|
890
|
+
export interface IAgreementListRs {
|
|
891
|
+
code: number;
|
|
892
|
+
name: string;
|
|
893
|
+
end_time: Date;
|
|
894
|
+
category: number;
|
|
895
|
+
status: number;
|
|
896
|
+
}
|
|
897
|
+
export interface IGetCampusDetailListRs {
|
|
898
|
+
code?: number;
|
|
899
|
+
name?: string;
|
|
900
|
+
city?: number;
|
|
901
|
+
enterprise?: number;
|
|
902
|
+
billing_prefix?: number;
|
|
903
|
+
state?: number;
|
|
904
|
+
currency?: number;
|
|
905
|
+
address?: string;
|
|
906
|
+
email?: string;
|
|
907
|
+
phone_prefix?: number;
|
|
908
|
+
phone?: string;
|
|
909
|
+
map?: string;
|
|
910
|
+
image_url?: string;
|
|
911
|
+
updated_at?: Date;
|
|
912
|
+
created_at?: Date;
|
|
913
|
+
city_name?: string;
|
|
914
|
+
enterprise_company_name?: string;
|
|
915
|
+
enterprise_commercial_name?: string;
|
|
916
|
+
state_name?: string;
|
|
882
917
|
}
|
|
883
918
|
export interface IAreaRs {
|
|
884
919
|
code?: number;
|
|
@@ -901,15 +936,15 @@ export interface CoursePivot {
|
|
|
901
936
|
course_type_id: number;
|
|
902
937
|
}
|
|
903
938
|
export interface IConditionRs {
|
|
904
|
-
code
|
|
905
|
-
rule_id
|
|
906
|
-
condition_id
|
|
907
|
-
operator
|
|
908
|
-
value
|
|
909
|
-
created_at
|
|
910
|
-
updated_at
|
|
911
|
-
deleted_at
|
|
912
|
-
condition
|
|
939
|
+
code?: number;
|
|
940
|
+
rule_id?: number;
|
|
941
|
+
condition_id?: number;
|
|
942
|
+
operator?: string;
|
|
943
|
+
value?: string;
|
|
944
|
+
created_at?: Date;
|
|
945
|
+
updated_at?: Date;
|
|
946
|
+
deleted_at?: Date;
|
|
947
|
+
condition?: ICommissionCondition;
|
|
913
948
|
}
|
|
914
949
|
export interface ICategoryRs {
|
|
915
950
|
code: number;
|
|
@@ -59,6 +59,7 @@ export declare class UserService extends IPTGeneralService {
|
|
|
59
59
|
getAllSystemUsers(): Observable<any>;
|
|
60
60
|
obtainTeachersAvailableByCampus(code_campus: number): Observable<any>;
|
|
61
61
|
getByRoleUserAndCampus(params: IGetByRoleUserAndCampusRq): Observable<any>;
|
|
62
|
+
obtainTeachersAvailableToTeachByCourseCampus(code_campus: number): Observable<any>;
|
|
62
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
|
|
63
64
|
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
64
65
|
}
|