parroquia 1.1.27 → 1.1.28
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/actualizar_permiso_prebautismal.rb +9 -9
- data/lib/parroquia/sacramentos/certificado_prebautismal.rb +0 -1
- data/lib/parroquia/sacramentos/permiso_bautismo.rb +0 -1
- data/lib/parroquia/sacramentos/permiso_prematrimonial.rb +0 -1
- data/lib/parroquia/sacramentos/resultados.rb +3 -2
- 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: 07cdbbf6794358d62d36388478051d176d1d08baca13550e7efdd2c118a9ea19
|
4
|
+
data.tar.gz: 79b602591639cc2059fdc0a66a0f5b8506c3bbee1de0ed70d5d2260b03751aa4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7104ae96cfc6fbd2ac52dca7f230e2e16b614d979b1172b20d4a15a0c9ab51183ef0cc8e40c238ef1e37d94fcd7b547457dd6e51379dd0c75f3a13f98a00e29
|
7
|
+
data.tar.gz: d86c4a8bd9086e11fc6ba755cc7205555d94eacabc5665b9b5d8015798f6a28b8f92cdbd1c2bdfae20564423361d530227bbf12876430e6acb513b71a0c2b08a
|
@@ -5,7 +5,7 @@ include Fox
|
|
5
5
|
|
6
6
|
class ActualizarPermisoBautismo < FXMainWindow
|
7
7
|
def initialize(app, registro)
|
8
|
-
super(app, 'Editando Registro', width: 1050, height:
|
8
|
+
super(app, 'Editando Registro', width: 1050, height: 430)
|
9
9
|
self.backColor = FXRGB(3, 187, 133)
|
10
10
|
@registro = registro
|
11
11
|
# Title
|
@@ -111,29 +111,29 @@ class ActualizarPermisoBautismo < FXMainWindow
|
|
111
111
|
y: 300)
|
112
112
|
@input_cedula_padrino.text = registro[14]
|
113
113
|
@lbl_madrina = FXLabel.new(self, 'Madrina: ', opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 10,
|
114
|
-
y:
|
114
|
+
y: 330)
|
115
115
|
@lbl_madrina.backColor = FXRGB(3, 187, 133)
|
116
116
|
@input_madrina = FXTextField.new(self, 10, opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 170,
|
117
|
-
y:
|
117
|
+
y: 330)
|
118
118
|
@input_madrina.text = registro[6]
|
119
119
|
@lbl_cedula_madrina = FXLabel.new(self, 'Cédula de la madrina: ', opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 340,
|
120
|
-
y:
|
120
|
+
y: 330)
|
121
121
|
@lbl_cedula_madrina.backColor = FXRGB(3, 187, 133)
|
122
122
|
@input_cedula_madrina = FXTextField.new(self, 10, opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 510,
|
123
|
-
y:
|
123
|
+
y: 330)
|
124
124
|
@input_cedula_madrina.text = registro[15]
|
125
125
|
@lbl_certifica = FXLabel.new(self, 'Autoriza: ', opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 10,
|
126
|
-
y:
|
126
|
+
y: 360)
|
127
127
|
@lbl_certifica.backColor = FXRGB(3, 187, 133)
|
128
128
|
@input_certifica = FXTextField.new(self, 10, opts: LAYOUT_EXPLICIT, width: 150, height: 20, x: 170,
|
129
|
-
y:
|
129
|
+
y: 360)
|
130
130
|
@input_certifica.text = registro[4]
|
131
131
|
|
132
132
|
# create buttons
|
133
133
|
@btnupdate = FXButton.new(self, 'Actualizar', opts: LAYOUT_EXPLICIT | BUTTON_NORMAL, width: 100, height: 30,
|
134
|
-
x: 790, y:
|
134
|
+
x: 790, y: 390)
|
135
135
|
@btncancel = FXButton.new(self, 'Cancelar', opts: LAYOUT_EXPLICIT | BUTTON_NORMAL, width: 100, height: 30,
|
136
|
-
x: 900, y:
|
136
|
+
x: 900, y: 390)
|
137
137
|
|
138
138
|
# connect buttons
|
139
139
|
@btnupdate.connect(SEL_COMMAND) do
|
@@ -464,8 +464,9 @@ class ResultadosConsulta < FXMainWindow
|
|
464
464
|
pdf.text "APELLIDOS: #{registro[24]}.", align: :justify
|
465
465
|
pdf.move_down 10
|
466
466
|
# Fecha de nacimiento
|
467
|
-
pdf.text "LUGAR DE NACIMIENTO #{registro[25]}.
|
468
|
-
|
467
|
+
pdf.text "LUGAR DE NACIMIENTO #{registro[25]}.", align: :justify
|
468
|
+
pdf.move_down 10
|
469
|
+
pdf.text "FECHA DE NACIMIENTO: #{cambiar_formato_fecha(registro[26])}.", align: :justify
|
469
470
|
pdf.move_down 10
|
470
471
|
# Padres
|
471
472
|
pdf.text "Hijo/ja de #{registro[9]} y de #{registro[10]}.", align: :justify
|