iptdevs-design-system 3.2.115 → 3.2.119

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