Class: ActualizarAlumno

Inherits:
FXMainWindow
  • Object
show all
Defined in:
lib/parroquia/catecismo/actualizar_alumno.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, registro) ⇒ ActualizarAlumno

Returns a new instance of ActualizarAlumno.



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# File 'lib/parroquia/catecismo/actualizar_alumno.rb', line 8

def initialize(app, registro)
  @registro = registro
  super(app, 'Parroquia San Judas Tadeo', width: 1050, height: 330)
  self.backColor = FXRGB(3, 187, 133)
  # Title
  @lbltitle = FXLabel.new(self, 'Bienvenido a la Parroquia San Judas Tadeo',
                          opts: LAYOUT_EXPLICIT | JUSTIFY_CENTER_X, width: 1050, height: 20, x: 0, y: 20)
  @lbltitle.font = FXFont.new(app, 'Geneva', 16, FONTWEIGHT_BOLD)
  @lbltitle.backColor = FXRGB(3, 187, 133)
  # Subtitle
  @lblsubtitle = FXLabel.new(self, 'ARQUIDIOSESIS DE QUITO - SERVICIO PARROQUIAL DE SAN JUDAS TADEO',
                             opts: LAYOUT_EXPLICIT | JUSTIFY_CENTER_X, width: 1050, height: 20, x: 0, y: 40)
  @lblsubtitle.font = FXFont.new(app, 'Geneva', 10, FONTWEIGHT_BOLD)
  @lblsubtitle.backColor = FXRGB(3, 187, 133)
  # Date
  @date = Time.now.strftime('%d/%m/%Y')
  @lbldate = FXLabel.new(self, "anio_lectivo: #{cambiar_formato_anio_lectivo(@date)}", opts: LAYOUT_EXPLICIT | JUSTIFY_RIGHT,
                                                                                       width: 1050, height: 20, x: 0, y: 60, padRight: 20)
  @lbldate.font = FXFont.new(app, 'Geneva', 12, FONTWEIGHT_BOLD)
  @lbldate.backColor = FXRGB(3, 187, 133)

  # section datos
  @lbl_anio_lectivo = FXLabel.new(self, 'Año lectivo', opts: LAYOUT_EXPLICIT, width: 150,
                                                       height: 20, x: 10, y: 150)
  @lbl_anio_lectivo.backColor = FXRGB(3, 187, 133)
  @input_anio_lectivo = FXTextField.new(self, 10, opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 170,
                                                  y: 150)
  @input_anio_lectivo.text = @registro[12]
  @lbl_nivel = FXLabel.new(self, 'Nivel: ', opts: LAYOUT_EXPLICIT, width: 150, height: 20,
                                            x: 330, y: 150)
  @lbl_nivel.backColor = FXRGB(3, 187, 133)
  @input_nivel = FXTextField.new(self, 10, opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 490,
                                           y: 150)
  @input_nivel.text = @registro[10]
  @lbl_sector = FXLabel.new(self, 'Sector: ', opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 650,
                                              y: 150)
  @lbl_sector.backColor = FXRGB(3, 187, 133)
  @input_sector = FXTextField.new(self, 10, opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 810,
                                            y: 150)
  @input_sector.text = @registro[11]
  @lbl_name = FXLabel.new(self, 'Nombres: ', opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 10,
                                             y: 180)
  @lbl_name.backColor = FXRGB(3, 187, 133)
  @input_name = FXTextField.new(self, 10, opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 170,
                                          y: 180)
  @input_name.text = @registro[1]
  @lbl_apellidos = FXLabel.new(self, 'Apellidos: ', opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 330,
                                                    y: 180)
  @lbl_apellidos.backColor = FXRGB(3, 187, 133)
  @input_apellidos = FXTextField.new(self, 10, opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 490,
                                               y: 180)
  @input_apellidos.text = @registro[2]
  @lbl_lugar_nacimiento = FXLabel.new(self, 'Lugar de nacimiento: ', opts: LAYOUT_EXPLICIT, width: 150,
                                                                     height: 20, x: 10, y: 210)
  @lbl_lugar_nacimiento.backColor = FXRGB(3, 187, 133)
  @input_lugar_nacimiento = FXTextField.new(self, 10, opts: LAYOUT_EXPLICIT, width: 150, height: 20,
                                                      x: 170, y: 210)
  @input_lugar_nacimiento.text = @registro[4]
  @lbl_fecha_nacimiento = FXLabel.new(self, 'Fecha de nacimiento (AAAA/MM/DD): ', opts: LAYOUT_EXPLICIT,
                                                                                  width: 250, height: 20, x: 340, y: 210)
  @lbl_fecha_nacimiento.backColor = FXRGB(3, 187, 133)
  @input_fecha_nacimiento = FXTextField.new(self, 10, opts: LAYOUT_EXPLICIT, width: 150, height: 20,
                                                      x: 590, y: 210)
  @input_fecha_nacimiento.text = @registro[3]
  @lbl_cedula = FXLabel.new(self, 'Cédula: ', opts: LAYOUT_EXPLICIT, width: 80, height: 20, x: 750,
                                              y: 210)
  @lbl_cedula.backColor = FXRGB(3, 187, 133)
  @input_cedula = FXTextField.new(self, 10, opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 850,
                                            y: 210)
  @input_cedula.text = @registro[5]
  @lbl_nombres_catequista = FXLabel.new(self, 'Nombres Catequista: ', opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 10,
                                                                      y: 240)
  @lbl_nombres_catequista.backColor = FXRGB(3, 187, 133)
  @input_nombres_catequista = FXTextField.new(self, 10, opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 170,
                                                        y: 240)
  @input_nombres_catequista.text = @registro[7]
  @lbl_apellidos_catequista = FXLabel.new(self, 'Apellidos catequista: ', opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 340,
                                                                          y: 240)
  @lbl_apellidos_catequista.backColor = FXRGB(3, 187, 133)
  @input_apellidos_catequista = FXTextField.new(self, 10, opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 510,
                                                          y: 240)
  @input_apellidos_catequista.text = @registro[8]
  @lbl_parroco = FXLabel.new(self, 'Párroco: ', opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 680,
                                            y: 240)
  @lbl_parroco.backColor = FXRGB(3, 187, 133)
  @input_parroco = FXTextField.new(self, 10, opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 840,
                                            y: 240)
  @input_parroco.text = @registro[13]

  # create buttons
  @btnupdate = FXButton.new(self, 'Actualizar', opts: LAYOUT_EXPLICIT | BUTTON_NORMAL, width: 100, height: 30,
                                                x: 790, y: 280)
  @btncancel = FXButton.new(self, 'Cancelar', opts: LAYOUT_EXPLICIT | BUTTON_NORMAL, width: 100, height: 30,
                                              x: 900, y: 280)

  # connect buttons
  @btnupdate.connect(SEL_COMMAND) do
    anio_lectivo = @input_anio_lectivo.text.empty? ? nil : @input_anio_lectivo.text
    nivel = @input_nivel.text.empty? ? nil : @input_nivel.text
    sector = @input_sector.text.empty? ? nil : @input_sector.text
    name = @input_name.text.empty? ? nil : @input_name.text
    apellidos = @input_apellidos.text.empty? ? nil : @input_apellidos.text
    lugar_nacimiento = @input_lugar_nacimiento.text.empty? ? nil : @input_lugar_nacimiento.text
    fecha_nacimiento = @input_fecha_nacimiento.text.empty? ? nil : @input_fecha_nacimiento.text
    cedula = @input_cedula.text.empty? ? nil : @input_cedula.text
    nombres_catequista = @input_nombres_catequista.text.empty? ? nil : @input_nombres_catequista.text
    apellidos_catequista = @input_apellidos_catequista.text.empty? ? nil : @input_apellidos_catequista.text
    parroco = @input_parroco.text.empty? ? nil : @input_parroco.text

    # tables
    # tabla catequistas (id, nombres, apellidos, fecha de nacimiento, lugar de nacimiento, cedula)
    # tabla alumnos (id, nombres, apellidos, lugar_nacimiento, fecha_nacimiento, cedula, fk_catequistas, fk_niveles)
    # tabla niveles (id, nivel, sector, anio_lectivo)
    # Iniciar una transacción
    $conn.transaction do
      # Actualizar la tabla catequistas
      $conn.exec('UPDATE catequistas SET nombres = $1, apellidos = $2 WHERE id = $3',
                 [nombres_catequista, apellidos_catequista, registro[6]])

      # Actualizar la tabla niveles
      $conn.exec(
        'UPDATE niveles SET anio_lectivo = $1, nivel = $2, sector = $3, parroco = $4 WHERE id = $5', [
          anio_lectivo, nivel, sector, parroco, registro[9]
        ]
      )

      # Actualizar la tabla alumnos
      $conn.exec('UPDATE alumnos SET nombres = $1, apellidos = $2, lugar_nacimiento = $3, fecha_nacimiento = $4, cedula = $5 WHERE id = $6',
                 [name, apellidos, lugar_nacimiento, fecha_nacimiento, cedula, registro[0]])

      # ¿Desea guardar los cambios? SI: commit msg: datos actualizados correctamente, NO: rollback, close
      if FXMessageBox.question(self, MBOX_YES_NO, 'Pregunta', '¿Desea guardar los cambios?') == MBOX_CLICKED_YES
        # Confirmar la transacción
        $conn.exec('COMMIT')
        FXMessageBox.information(self, MBOX_OK, 'Información', 'Datos actualizados correctamente')
      else
        $conn.exec('ROLLBACK')
      end
      close
    end
  end

  @btncancel.connect(SEL_COMMAND) do
    FXMessageBox.warning(self, MBOX_OK, 'Advertencia', 'No se guardarán los cambios')
    close
  end
end

Instance Method Details

#cambiar_formato_anio_lectivo(anio_lectivo) ⇒ Object

Cambiar el formato de la anio_lectivo de YYYY-MM-DD a DD de nombre_mes de YYYY



176
177
178
179
180
181
182
183
184
185
# File 'lib/parroquia/catecismo/actualizar_alumno.rb', line 176

def cambiar_formato_anio_lectivo(anio_lectivo)
  # split "-" or "/"
  anio_lectivo = anio_lectivo.split(%r{-|/})
  # si el formato de anio_lectivo es YYYY-MM-DD o YYYY/MM/DD, sino si es DD-MM-YYYY o DD/MM/YYYY
  if anio_lectivo[0].length == 4
    "#{anio_lectivo[2]} de #{nombre_mes(anio_lectivo[1])} de #{anio_lectivo[0]}"
  else
    "#{anio_lectivo[0]} de #{nombre_mes(anio_lectivo[1])} de #{anio_lectivo[2]}"
  end
end

#createObject



187
188
189
190
# File 'lib/parroquia/catecismo/actualizar_alumno.rb', line 187

def create
  super
  show(PLACEMENT_SCREEN)
end

#nombre_mes(mes) ⇒ Object

Nombre del mes



157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# File 'lib/parroquia/catecismo/actualizar_alumno.rb', line 157

def nombre_mes(mes)
  meses = {
    '01' => 'enero',
    '02' => 'febrero',
    '03' => 'marzo',
    '04' => 'abril',
    '05' => 'mayo',
    '06' => 'junio',
    '07' => 'julio',
    '08' => 'agosto',
    '09' => 'septiembre',
    '10' => 'octubre',
    '11' => 'noviembre',
    '12' => 'diciembre'
  }
  meses[mes]
end