parroquia 1.1.22 → 1.1.23
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 +4 -4
- data/lib/parroquia/sacramentos/matrimonio.rb +20 -20
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3c9dc5c4f0fdac766962fab205a03b403f50c7602b37470e11baaf50ad082db3
|
4
|
+
data.tar.gz: d4beb1761f9c0a59fec26c5499ca0b8792e0145210d7f2ab8211324b712c1b47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51e17007fdaf15a170200e0ff48eea47c2fdada7ec7bcc26e43ac1f5890aef485a4cbb81b77de4dce9102d35e27e9878e065b40ad2c4378e4db65e1fb2b57dbe
|
7
|
+
data.tar.gz: 271ca610a7e74ad831fdcdc3abe8c9f6456e50267fe70ab3ab1ea99d485c4c394d96c089e8874b9e89caec83138e87bb0e6a1019bf71b8f239aa87a40c029e7c
|
@@ -171,32 +171,32 @@ class Matrimonio < FXMainWindow
|
|
171
171
|
|
172
172
|
# connect buttons
|
173
173
|
@btnsave.connect(SEL_COMMAND) do
|
174
|
-
tomo = @input_tomo.text
|
175
|
-
page = @input_page.text
|
176
|
-
number = @input_number.text
|
177
|
-
fecha = @input_fecha.text
|
178
|
-
sacramento = @input_sacramento.text
|
179
|
-
parroquia = @input_parroquia.text
|
180
|
-
sector = @input_sector.text
|
181
|
-
parroco = @input_parroco.text
|
182
|
-
celebrante = @input_celebrante.text
|
183
|
-
name_novio = @input_name_novio.text
|
184
|
-
apellido_novio = @input_apellido_novio.text
|
174
|
+
tomo = @input_tomo.text.empty? ? nil : @input_tomo.text
|
175
|
+
page = @input_page.text.empty? ? nil : @input_page.text
|
176
|
+
number = @input_number.text.empty? ? nil : @input_number.text
|
177
|
+
fecha = @input_fecha.text.empty? ? nil : @input_fecha.text
|
178
|
+
sacramento = @input_sacramento.text.empty? ? nil : @input_sacramento.text
|
179
|
+
parroquia = @input_parroquia.text.empty? ? nil : @input_parroquia.text
|
180
|
+
sector = @input_sector.text.empty? ? nil : @input_sector.text
|
181
|
+
parroco = @input_parroco.text.empty? ? nil : @input_parroco.text
|
182
|
+
celebrante = @input_celebrante.text.empty? ? nil : @input_celebrante.text
|
183
|
+
name_novio = @input_name_novio.text.empty? ? nil : @input_name_novio.text
|
184
|
+
apellido_novio = @input_apellido_novio.text.empty? ? nil : @input_apellido_novio.text
|
185
185
|
cedula_novio = @input_cedula_novio.text.empty? ? nil : @input_cedula_novio.text
|
186
186
|
nombres_novia = @input_name_novia.text.empty? ? nil : @input_name_novia.text
|
187
187
|
apellidos_novia = @input_apellido_novia.text.empty? ? nil : @input_apellido_novia.text
|
188
188
|
cedula_novia = @input_cedula_novia.text.empty? ? nil : @input_cedula_novia.text
|
189
189
|
testigo_novio = @input_nombres_testigo_novio.text.empty? ? nil : @input_nombres_testigo_novio.text
|
190
190
|
testigo_novia = @input_nombres_testigo_novia.text.empty? ? nil : @input_nombres_testigo_novia.text
|
191
|
-
certifica = @input_certifica.text
|
192
|
-
provincia_rc = @input_provincia_rc.text
|
193
|
-
canton_rc = @input_canton_rc.text
|
194
|
-
parroquia_rc = @input_parroquia_rc.text
|
195
|
-
anio_rc = @input_anio_rc.text
|
196
|
-
tomo_rc = @input_tomo_rc.text
|
197
|
-
pagina_rc = @input_pag_rc.text
|
198
|
-
acta_rc = @input_acta_rc.text
|
199
|
-
fecha_rc = @input_date_rc.text
|
191
|
+
certifica = @input_certifica.text.empty? ? nil : @input_certifica.text
|
192
|
+
provincia_rc = @input_provincia_rc.text.empty? ? nil : @input_provincia_rc.text
|
193
|
+
canton_rc = @input_canton_rc.text.empty? ? nil : @input_canton_rc.text
|
194
|
+
parroquia_rc = @input_parroquia_rc.text.empty? ? nil : @input_parroquia_rc.text
|
195
|
+
anio_rc = @input_anio_rc.text.empty? ? nil : @input_anio_rc.text
|
196
|
+
tomo_rc = @input_tomo_rc.text.empty? ? nil : @input_tomo_rc.text
|
197
|
+
pagina_rc = @input_pag_rc.text.empty? ? nil : @input_pag_rc.text
|
198
|
+
acta_rc = @input_acta_rc.text.empty? ? nil : @input_acta_rc.text
|
199
|
+
fecha_rc = @input_date_rc.text.empty? ? nil : @input_date_rc.text
|
200
200
|
|
201
201
|
# tables
|
202
202
|
# tabla libros (id, tomo, pagina, numero)
|