iptdevs-design-system 3.1.35 → 3.1.37

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.
@@ -2616,6 +2616,21 @@ class CommercialService extends IPTGeneralService {
2616
2616
  this.generateRequestParams(token);
2617
2617
  return this.http.post(serviceUrl, this.httpOptions);
2618
2618
  }
2619
+ createDocument(params) {
2620
+ let serviceUrl = this.SERVICE_URL + 'post/media/document';
2621
+ let formData = new FormData();
2622
+ formData.append('file', params.file);
2623
+ formData.append('user_autor', params.user_autor);
2624
+ formData.append('code_user', params.code_user);
2625
+ formData.append('type_document', params.type_document);
2626
+ formData.append('token', params.token);
2627
+ return this.http.post(serviceUrl, formData);
2628
+ }
2629
+ getDocumentsByStudent(params) {
2630
+ let serviceUrl = this.SERVICE_URL + 'get/media/document/user';
2631
+ this.generateRequestParams(params);
2632
+ return this.http.post(serviceUrl, this.httpOptions);
2633
+ }
2619
2634
  }
2620
2635
  CommercialService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CommercialService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
2621
2636
  CommercialService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CommercialService, providedIn: 'root' });
@@ -4709,6 +4724,34 @@ class BudgetService extends IPTGeneralService {
4709
4724
  let serviceUrl = this.SERVICE_URL + 'get/payment/bill/wallets/code/filter/egress/' + codeWallet;
4710
4725
  return this.http.get(serviceUrl, this.httpOptions);
4711
4726
  }
4727
+ getPaymentOverdueStudent() {
4728
+ let serviceUrl = this.SERVICE_URL + 'get/payment/overdue/all/student';
4729
+ return this.http.get(serviceUrl);
4730
+ }
4731
+ getDayPaymentOverdueStudent(codeStudent) {
4732
+ let serviceUrl = this.SERVICE_URL + 'get/day/payment/overdue/student/by/code/' + codeStudent;
4733
+ return this.http.get(serviceUrl);
4734
+ }
4735
+ getPaymentOverdueCourseByCoordinator(params) {
4736
+ let serviceUrl = this.SERVICE_URL + 'post/payment/overdue/course/by/coordinator';
4737
+ this.generateRequestParams(params);
4738
+ return this.http.post(serviceUrl, this.httpOptions);
4739
+ }
4740
+ getPaymentOverdueStudentByCoordinator(params) {
4741
+ let serviceUrl = this.SERVICE_URL + 'post/payment/overdue/student/by/coodinator';
4742
+ this.generateRequestParams(params);
4743
+ return this.http.post(serviceUrl, this.httpOptions);
4744
+ }
4745
+ getPaymentOverdueStudentByCoordinatorAndCourseCode(params) {
4746
+ let serviceUrl = this.SERVICE_URL + 'post/payment/overdue/student/by/coodinatorcourse';
4747
+ this.generateRequestParams(params);
4748
+ return this.http.post(serviceUrl, this.httpOptions);
4749
+ }
4750
+ getObtainCodStudentByCoordinator(params) {
4751
+ let serviceUrl = this.SERVICE_URL + 'post/obtain/cod/stundent/by/coordinator';
4752
+ this.generateRequestParams(params);
4753
+ return this.http.post(serviceUrl, this.httpOptions);
4754
+ }
4712
4755
  }
4713
4756
  BudgetService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
4714
4757
  BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });