iptdevs-design-system 3.1.953 → 3.1.954

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.
@@ -4800,7 +4800,6 @@ class CodFormStepTwoComponent extends CodFormSteps {
4800
4800
  this.controls = new CodFormControls().controls[1];
4801
4801
  }
4802
4802
  ngOnChanges(changes) {
4803
- console.log('ngOnChanges called, parametersAll:', this.parametersAll, 'initialData:', this.initialData);
4804
4803
  this.initForm();
4805
4804
  this.startLocalStorageWork();
4806
4805
  this.validateErrors();
@@ -4818,7 +4817,6 @@ class CodFormStepTwoComponent extends CodFormSteps {
4818
4817
  }
4819
4818
  }
4820
4819
  setDataFromUserHistory() {
4821
- console.log('setDataFromUserHistory called, id_card:', this.initialData?.id_card);
4822
4820
  this.codFormStepTwo.controls['student_name'].setValue(this.initialData.name);
4823
4821
  this.codFormStepTwo.controls['student_last_name'].setValue(this.initialData.last_name);
4824
4822
  this.codFormStepTwo.controls['student_id_card_type'].setValue(this.initialData.id_card_type);
@@ -4837,7 +4835,6 @@ class CodFormStepTwoComponent extends CodFormSteps {
4837
4835
  this.updateIdTypes(this.initialData?.id_card || '');
4838
4836
  }
4839
4837
  setDataFromPreviusCod() {
4840
- console.log('setDataFromPreviusCod called, id_card:', this.initialData?.student?.id_card); // Depuración
4841
4838
  this.codFormStepTwo.controls['student_name'].setValue(this.initialData.student.name);
4842
4839
  this.codFormStepTwo.controls['student_last_name'].setValue(this.initialData.student.last_name);
4843
4840
  this.codFormStepTwo.controls['student_id_card_type'].setValue(this.initialData.student.id_card_type);