iptdevs-design-system 3.2.115 → 3.2.118

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.
@@ -1006,6 +1006,10 @@ class UserService extends IPTGeneralService {
1006
1006
  let serviceUrl = this.SERVICE_URL + 'search/student/by/idcard/' + id_card;
1007
1007
  return this.http.get(serviceUrl);
1008
1008
  }
1009
+ searchUsersForTeamAssignment(params) {
1010
+ let serviceUrl = this.SERVICE_URL + 'post/search/users/for/team/assignment';
1011
+ return this.http.get(serviceUrl);
1012
+ }
1009
1013
  }
1010
1014
  UserService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: UserService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1011
1015
  UserService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: UserService, providedIn: 'root' });
@@ -4896,6 +4900,11 @@ class CourseService extends IPTGeneralService {
4896
4900
  this.generateRequestParams(params);
4897
4901
  return this.http.post(serviceUrl, this.httpOptions);
4898
4902
  }
4903
+ obtainCourseChangeAuditByCodCode(params) {
4904
+ const serviceUrl = this.SERVICE_URL + 'obtain/course/change/audit/by/codcode';
4905
+ this.generateRequestParams(params);
4906
+ return this.http.post(serviceUrl, this.httpOptions);
4907
+ }
4899
4908
  getCoursesByStateRefactor(params) {
4900
4909
  let serviceUrl = this.SERVICE_URL + 'get/courses/by/state/refactor';
4901
4910
  this.generateRequestParams(params);
@@ -7983,6 +7992,16 @@ class BudgetService extends IPTGeneralService {
7983
7992
  this.generateRequestParams(params);
7984
7993
  return this.http.post(serviceUrl, this.httpOptions);
7985
7994
  }
7995
+ saveModifiedPaymentPlan(params) {
7996
+ let serviceUrl = this.SERVICE_URL + 'save/modified/payment/plan';
7997
+ this.generateRequestParams(params);
7998
+ return this.http.post(serviceUrl, this.httpOptions);
7999
+ }
8000
+ previewModifyPaymentPlan(params) {
8001
+ let serviceUrl = this.SERVICE_URL + 'preview/modify/payment/plan';
8002
+ this.generateRequestParams(params);
8003
+ return this.http.post(serviceUrl, this.httpOptions);
8004
+ }
7986
8005
  modifyQuotaDataWithComments(params) {
7987
8006
  let serviceUrl = this.SERVICE_URL + 'modify/quota/data/with/comments';
7988
8007
  this.generateRequestParams(params);
@@ -8329,6 +8348,10 @@ class AcademicService extends IPTGeneralService {
8329
8348
  let serviceUrl = this.SERVICE_URL + 'get/coursetype/by/academic/plan/' + codeAcademic;
8330
8349
  return this.http.get(serviceUrl);
8331
8350
  }
8351
+ getCourseTypeAndLevelsByAcademicPlan(codeAcademic) {
8352
+ let serviceUrl = this.SERVICE_URL + 'get/coursetype/and/levels/by/academic/plan/' + codeAcademic;
8353
+ return this.http.get(serviceUrl);
8354
+ }
8332
8355
  getAvailableCoursesByModalityStatusAndLevel(param) {
8333
8356
  const serviceUrl = this.SERVICE_URL + 'get/available/courses/by/modality/status/level';
8334
8357
  this.generateRequestParams(param);
@@ -8349,6 +8372,11 @@ class AcademicService extends IPTGeneralService {
8349
8372
  this.generateRequestParams(param);
8350
8373
  return this.http.post(serviceUrl, this.httpOptions);
8351
8374
  }
8375
+ previewChangeOfStudentToNewCourse(param) {
8376
+ const serviceUrl = this.SERVICE_URL + 'preview/change/student/to/new/course';
8377
+ this.generateRequestParams(param);
8378
+ return this.http.post(serviceUrl, this.httpOptions);
8379
+ }
8352
8380
  obtainCourseStatusByCode(courseCode) {
8353
8381
  let serviceUrl = `${this.SERVICE_URL}obtain/course/status/by/code/${courseCode}`;
8354
8382
  return this.http.get(serviceUrl);