parroquia 1.1.16 → 1.1.18

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1b8c5ec1b5541215316be18e8cd9e3a224a77d671fa0a6df81822b8ce3ef6a2d
4
- data.tar.gz: a9b2eba679c7afce7e338aec3b5e39db4312179344f15a1e1f3918d8f1b974eb
3
+ metadata.gz: 44b026dd8f018eb2beba41332e9ed4d760c52241c2d6f9e8c8fca12ac0172b22
4
+ data.tar.gz: caa7ba6fd653f3c731f18ab7157117ac3cbbe5cc9d82ae3a47880ed746a9f1c7
5
5
  SHA512:
6
- metadata.gz: fe5b13de6e918d58bbe0b903f05f105a271dd2d847edac568dc98c434fda2cc0377878bfd9daddb890ac74ce66fe5975080d6115e7c65d9f54637f2539ddfb03
7
- data.tar.gz: ff89ec28c1f73806e21819f5ccb8d9fc5629cffa44e6ff5ea3d6ecc794f13c6eed3c9975f4a9b3a4d8e04952525ae30b98f4a5b0c8586682d18bfc29f63bb1f7
6
+ metadata.gz: 39c2c3b96d5a785c1c1355a866a50875e5f5e10ae38790d815e38810fe35282c8ee0f480212e80ac0d81596b9eb7c1265b7fddaf66a9099edb99e304831fe49e
7
+ data.tar.gz: 8daed859d2f0c3d2e84dc3ef6c21a35691329d63f1a59b88c26b6df5c8d13970563ae5ff891ba2dce33b41c7bb42c2e72842c7d7e041de10988db2e4eb0a3c89
@@ -142,7 +142,6 @@ class ActualizarComunion < FXMainWindow
142
142
  lugar_nacimiento = @input_lugar_nacimiento.text
143
143
  fecha_nacimiento = @input_fecha_nacimiento.text
144
144
  cedula = @input_cedula.text.empty? ? nil : @input_cedula.text
145
- padrino = @input_padrino.text.empty? ? nil : @input_padrino.text
146
145
  certifica = @input_certifica.text
147
146
 
148
147
  # tables
@@ -177,8 +176,8 @@ class ActualizarComunion < FXMainWindow
177
176
 
178
177
  # Actualizar la tabla sacramentos
179
178
  $conn.exec(
180
- 'UPDATE sacramentos SET sacramento = $1, fecha = $2, celebrante = $3, certifica = $4, padrino = $5 WHERE id = $6', [
181
- sacramento, fecha, celebrante, certifica, padrino, registro[0]
179
+ 'UPDATE sacramentos SET sacramento = $1, fecha = $2, celebrante = $3, certifica = $4 WHERE id = $6', [
180
+ sacramento, fecha, celebrante, certifica, registro[0]
182
181
  ]
183
182
  )
184
183
 
@@ -56,7 +56,7 @@ class ActualizarMisa < FXMainWindow
56
56
  y: 240)
57
57
  @input_intencion.text = @registro[38]
58
58
  @lbl_fecha = FXLabel.new(self, 'Fecha de la misa (AAAA/MM/DD): ', opts: LAYOUT_EXPLICIT, width: 250,
59
- height: 20, x: 10, y: 300)
59
+ height: 20, x: 10, y: 270)
60
60
  @lbl_fecha.backColor = FXRGB(3, 187, 133)
61
61
  @input_fecha = FXTextField.new(self, 10, opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 280,
62
62
  y: 270)
@@ -125,7 +125,6 @@ class Comunion < FXMainWindow
125
125
  lugar_nacimiento = @input_lugar_nacimiento.text
126
126
  fecha_nacimiento = @input_fecha_nacimiento.text
127
127
  cedula = @input_cedula.text.empty? ? nil : @input_cedula.text
128
- padrino = @input_padrino.text.empty? ? nil : @input_padrino.text
129
128
  certifica = @input_certifica.text
130
129
 
131
130
 
@@ -164,8 +163,8 @@ class Comunion < FXMainWindow
164
163
 
165
164
  # Insertar en la tabla sacramentos
166
165
  @registro_sacramentos = $conn.exec(
167
- 'INSERT INTO sacramentos (sacramento, fecha, celebrante, certifica, padrino) VALUES ($1, $2, $3, $4, $5)', [sacramento,
168
- fecha, celebrante, certifica, padrino]
166
+ 'INSERT INTO sacramentos (sacramento, fecha, celebrante, certifica) VALUES ($1, $2, $3, $4)', [sacramento,
167
+ fecha, celebrante, certifica]
169
168
  )
170
169
 
171
170
  # Confirmar la transacción
@@ -191,7 +190,6 @@ class Comunion < FXMainWindow
191
190
  @input_lugar_nacimiento.text = ''
192
191
  @input_fecha_nacimiento.text = ''
193
192
  @input_cedula.text = ''
194
- @input_padrino.text = ''
195
193
  @input_certifica.text = ''
196
194
  end
197
195
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parroquia
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.16
4
+ version: 1.1.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francisco Javier Borja Lobato