Skip to content

Commit

Permalink
Merge pull request #37 from jlawyerorg/develop
Browse files Browse the repository at this point in the history
Persönliche Angaben hinzugefügt. Issue #34
  • Loading branch information
j-dimension authored Feb 16, 2021
2 parents 47e96cb + 4f5a19d commit df7eeea
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/1.12.0.0/famr01_meta.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,6 @@ For more information on this, and how to apply and follow the GNU AGPL, see

name = "Familienrecht"
description = "Familienrecht"
version = "1.0.0";
version = "1.1.0";
author = "Jens Kutschke"
updated = "15.02.2021"
updated = "16.02.2021"
53 changes: 52 additions & 1 deletion src/1.12.0.0/famr01_ui.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,58 @@ public class famr01_ui implements com.jdimension.jlawyer.client.plugins.form.For
//borderLayout()
tableLayout (id: 'pluginParent', cellpadding: 5) {

tr {
td (colfill:true, align: 'left') {
panel(border: titledBorder(title: 'Persönliche Angaben')) {
tableLayout (cellpadding: 5) {

tr {
td (colfill:true) {
label(text: 'Geburtsname:')
}
td {
textField(name: "_PA_GEBNAME", text: '', columns:30)
}
}
tr {
td (colfill:true) {
label(text: 'jetzige ausländische Staatsangehörigkeit:')
}
td {
textField(name: "_PA_STAANG", text: '', columns:30)
}
}
tr {
td (colfill:true) {
label(text: 'sichere Postadresse:')
}
td {
textField(name: "_PA_ADRESSE", text: '', columns:50)
}
}
tr {
td (colfill:true) {
label(text: 'sichere E-Mail-Adresse:')
}
td {
textField(name: "_PA_EMAIL", text: '', columns:30)
}
}
tr {
td (colfill:true) {
label(text: 'sichere Telefonnummer:')
}
td {
textField(name: "_PA_TEL", text: '', columns:30)
}
}

}
}
}
}


tr {
td (colfill:true, align: 'left') {
panel(border: titledBorder(title: 'Hochzeit')) {
Expand Down Expand Up @@ -791,7 +843,6 @@ public class famr01_ui implements com.jdimension.jlawyer.client.plugins.form.For
}
}
}




Expand Down
2 changes: 1 addition & 1 deletion src/j-lawyer-forms.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
<form id="inkasso02" type="plugin" depends="formslib" name="Inkasso" description="Inkasso und Forderungsmanagement (Autoren: BAUMFALK SERVICES)" placeholder="INKASSO" version="2.0.4" for="1.13.0.5,1.14.0.0" url="https://www.j-lawyer.org/downloads/j-lawyer-plugins/forms/1.12.0.0" files="inkasso02_meta.groovy,inkasso02_ui.groovy"/>
<form id="arbeitsrecht02" type="plugin" depends="formslib" name="Kündigungsschutzklage" description="Arbeitsrecht Kündigungsschutzklage (Autoren: BAUMFALK SERVICES)" placeholder="KSCHUTZ" version="2.0.6" for="1.13.0.5,1.14.0.0" url="https://www.j-lawyer.org/downloads/j-lawyer-plugins/forms/1.12.0.0" files="arbeitsrecht02_meta.groovy,arbeitsrecht02_ui.groovy"/>

<form id="famr01" type="plugin" depends="formslib" name="Familienrecht" description="Familienrecht" placeholder="FAMR" version="1.0.0" for="1.13.0.5,1.14.0.0" url="https://www.j-lawyer.org/downloads/j-lawyer-plugins/forms/1.12.0.0" files="famr01_meta.groovy,famr01_ui.groovy"/>
<form id="famr01" type="plugin" depends="formslib" name="Familienrecht" description="Familienrecht" placeholder="FAMR" version="1.1.0" for="1.13.0.5,1.14.0.0" url="https://www.j-lawyer.org/downloads/j-lawyer-plugins/forms/1.12.0.0" files="famr01_meta.groovy,famr01_ui.groovy"/>

</forms>

0 comments on commit df7eeea

Please sign in to comment.