parroquia 1.1.17 → 1.1.18

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 17d84e3f220d60264a4e17fda530e18f70e38c33838f98ddead03b6f1e2c35bd
4
- data.tar.gz: ddb70e03b3dc2175955b7c45d7e965822f81655b6f5abaa5d93b173c7c043f47
3
+ metadata.gz: 44b026dd8f018eb2beba41332e9ed4d760c52241c2d6f9e8c8fca12ac0172b22
4
+ data.tar.gz: caa7ba6fd653f3c731f18ab7157117ac3cbbe5cc9d82ae3a47880ed746a9f1c7
5
5
  SHA512:
6
- metadata.gz: addbcf3c1f1e9de2d76f82f3c7d302a18cbb0f59410527d610573666f2d7c09c4c9a59b99b2020e29ad2a834d54f8d7073e5dc5c8b7dd44c994221e04aac3f65
7
- data.tar.gz: b7f25fe7c968db18c34a5376d96678675bd3c49893d8b39eda0e6e7371556933a8dff6e3d3d179798a80092cfd25ea0b740fa9f627533162a2d356c976ce4a32
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
 
@@ -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.17
4
+ version: 1.1.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francisco Javier Borja Lobato