Skip to content

Commit

Permalink
Anpassungen lt. Dokument von @Kargoscha eingearbeitet. Issue #34
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Feb 15, 2021
1 parent 31b610b commit b43954a
Show file tree
Hide file tree
Showing 3 changed files with 95 additions and 9 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 = "0.9.2";
version = "1.0.0";
author = "Jens Kutschke"
updated = "13.02.2021"
updated = "15.02.2021"
98 changes: 92 additions & 6 deletions src/1.12.0.0/famr01_ui.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -777,6 +777,15 @@ public class famr01_ui implements com.jdimension.jlawyer.client.plugins.form.For
textField(name: "_EHE_INTRECHT", text: '', columns:30)
}
}

tr {
td (colfill:true) {
label(text: 'Staatsangehörigkeit z.Zt. der Eheschließung:')
}
td {
textField(name: "_EHE_STAANG", text: '', columns:30)
}
}

}
}
Expand All @@ -800,6 +809,15 @@ public class famr01_ui implements com.jdimension.jlawyer.client.plugins.form.For
formattedTextField(name: "_TR_EINK_MDT", text: '', columns:10, format: betragFormat)
}
}

tr {
td (colfill:true) {
label(text: 'Beruf Mandant:')
}
td {
textField(name: "_TR_BERUF_MDT", text: '', columns:30)
}
}

tr {
td (colfill:true) {
Expand All @@ -809,7 +827,14 @@ public class famr01_ui implements com.jdimension.jlawyer.client.plugins.form.For
formattedTextField(name: "_TR_EINK_GATTE", text: '', columns:10, format: betragFormat)
}
}

tr {
td (colfill:true) {
label(text: 'Beruf Ehegatte:')
}
td {
textField(name: "_TR_BERUF_GATTE", text: '', columns:30)
}
}



Expand All @@ -821,6 +846,15 @@ public class famr01_ui implements com.jdimension.jlawyer.client.plugins.form.For
checkBox(text: 'Gütliche Trennung', name: "_TR_GUETLICH", selected: false)
}
}

tr {
td (colfill:true) {
label(text: ' ')
}
td {
checkBox(text: 'Versorgungsausgleich geklärt (Verzicht)', name: "_TR_VAUSGLEICH", selected: false)
}
}

tr {
td (colfill:true) {
Expand Down Expand Up @@ -875,7 +909,14 @@ public class famr01_ui implements com.jdimension.jlawyer.client.plugins.form.For
checkBox(text: 'Umgangsrecht geklärt', name: "_TR_UMGARE", selected: false)
}
}

tr {
td (colfill:true) {
label(text: ' ')
}
td {
checkBox(text: 'es liegt ein notarieller Vertrag vor', name: "_TR_NOTARVERTRAG", selected: false)
}
}

tr {
td (colfill:true) {
Expand Down Expand Up @@ -924,6 +965,14 @@ public class famr01_ui implements com.jdimension.jlawyer.client.plugins.form.For
textField(name: "_K1_GEB", text: '', columns:10)
}
}
tr {
td (colfill:true) {
label(text: 'Kind 1 Geburtsort:')
}
td {
textField(name: "_K1_GEBORT", text: '', columns:30)
}
}
tr {
td (colfill:true) {
label(text: 'Kind 1 eigenes Einkommen:')
Expand Down Expand Up @@ -951,6 +1000,14 @@ public class famr01_ui implements com.jdimension.jlawyer.client.plugins.form.For
textField(name: "_K2_GEB", text: '', columns:10)
}
}
tr {
td (colfill:true) {
label(text: 'Kind 2 Geburtsort:')
}
td {
textField(name: "_K2_GEBORT", text: '', columns:30)
}
}
tr {
td (colfill:true) {
label(text: 'Kind 2 eigenes Einkommen:')
Expand All @@ -969,7 +1026,14 @@ public class famr01_ui implements com.jdimension.jlawyer.client.plugins.form.For
textField(name: "_K3_NAME", text: '', columns:30)
}
}

tr {
td (colfill:true) {
label(text: 'Kind 3 Geburtsort:')
}
td {
textField(name: "_K3_GEBORT", text: '', columns:30)
}
}

tr {
td (colfill:true) {
Expand Down Expand Up @@ -997,7 +1061,14 @@ public class famr01_ui implements com.jdimension.jlawyer.client.plugins.form.For
textField(name: "_K4_NAME", text: '', columns:30)
}
}

tr {
td (colfill:true) {
label(text: 'Kind 4 Geburtsort:')
}
td {
textField(name: "_K4_GEBORT", text: '', columns:30)
}
}

tr {
td (colfill:true) {
Expand Down Expand Up @@ -1027,6 +1098,21 @@ public class famr01_ui implements com.jdimension.jlawyer.client.plugins.form.For
'Ehegatte'
], name: "_TR_KINDGELD", editable: true, actionPerformed: {

}
)
}
}
tr {
td (colfill:true) {
label(text: 'bei minderjährigen Kindern Wohnort bei welchem Elternteil:')
}
td {
comboBox(items: [
'Mandant',
'Ehegatte',
'weder noch'
], name: "_TR_KINDER_WO", editable: true, actionPerformed: {

}
)
}
Expand Down Expand Up @@ -1063,7 +1149,7 @@ public class famr01_ui implements com.jdimension.jlawyer.client.plugins.form.For
label(text: ' ')
}
td {
checkBox(text: 'PKH', name: "_SCH_PKH", selected: false)
checkBox(text: 'VKH', name: "_SCH_VKH", selected: false)
}
}

Expand All @@ -1082,4 +1168,4 @@ public class famr01_ui implements com.jdimension.jlawyer.client.plugins.form.For
}

}


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="0.9.2" 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.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"/>

</forms>

0 comments on commit b43954a

Please sign in to comment.