iptdevs-design-system 3.1.151 → 3.1.152

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.
@@ -3240,7 +3240,6 @@ class CodFormStepOneComponent extends CodFormSteps {
3240
3240
  this.courseService.getAvailableCoursesByLevAgreeCType(request_availibleCourses).subscribe((response) => {
3241
3241
  if (response.data) {
3242
3242
  let courses = response.data;
3243
- console.log(response.data);
3244
3243
  this.hasAvailableCourse = true;
3245
3244
  courses.forEach(course => {
3246
3245
  let scheduleParts = course.course_schedule[0].split(" ");
@@ -3860,7 +3859,6 @@ class CodFormStepFourComponent extends CodFormSteps {
3860
3859
  this.validateErrors();
3861
3860
  // this.getCodPricesByAgreement();
3862
3861
  this.getValuesOfStepOneComponent();
3863
- console.log('changes step one');
3864
3862
  }
3865
3863
  getValuesOfStepOneComponent() {
3866
3864
  // Tipo de curso seleccionado
@@ -4056,7 +4054,6 @@ class CodFormStepFourComponent extends CodFormSteps {
4056
4054
  quotaTimes: Number(this.codFormStepFour.controls['fee_number'].value),
4057
4055
  totalPrice: this.codFormStepFour.controls['total_price'].value,
4058
4056
  };
4059
- console.log(params);
4060
4057
  this.dataFinancing = this.calculateQuotesService.calculateQuotes(params);
4061
4058
  this.isFinancing = true;
4062
4059
  this.financingData.emit(this.dataFinancing);
@@ -4088,7 +4085,6 @@ class CodFormStepFourComponent extends CodFormSteps {
4088
4085
  course_modality: Number(this.localStorageCOD.getCodFormData(1, 'course_modality')),
4089
4086
  payment_method: parseInt(paymentMethod)
4090
4087
  };
4091
- console.log(request);
4092
4088
  this.commercialService.ObtainCodPrices(request).subscribe((response) => {
4093
4089
  if (response.data != null) {
4094
4090
  this.dataPrices = response.data;
@@ -4132,7 +4128,6 @@ class CodFormStepFourComponent extends CodFormSteps {
4132
4128
  this.resetLocalStorage(this.controls);
4133
4129
  }
4134
4130
  selectLevels(dataPayment) {
4135
- console.log(dataPayment);
4136
4131
  if (this.codFormStepFour.get('payment_method')?.value == 1) {
4137
4132
  this.codFormStepFour.controls['quota_times'].setValue(dataPayment.code);
4138
4133
  this.codFormStepFour.controls['total_price'].setValue(dataPayment.enrollment);
@@ -4629,7 +4624,6 @@ class CodFormComponent {
4629
4624
  academic_plan: data.filter(data => data.control === 'academic_plan')[0].value,
4630
4625
  code_refers: data.filter(data => data.control === 'code_refers')[0].value,
4631
4626
  };
4632
- console.log(request);
4633
4627
  return request;
4634
4628
  }
4635
4629
  changeStep(step) {