Fixed: default null values for date
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
7072f07879
commit
c0c7071ca5
|
@ -73,6 +73,11 @@ class MemberController extends Controller
|
|||
'subscriptions' => Subscription::pluck('name', 'id'),
|
||||
'data' => [
|
||||
'country_id' => Country::default(),
|
||||
'efz' => null,
|
||||
'ps_at' => null,
|
||||
'without_education_at' => null,
|
||||
'without_efz_at' => null,
|
||||
'more_ps_at' => null,
|
||||
],
|
||||
'mode' => 'create',
|
||||
]);
|
||||
|
|
|
@ -3,13 +3,8 @@
|
|||
<save-button form="memberedit"></save-button>
|
||||
<popup heading="Ein Konflikt ist aufgetreten" v-if="conflict === true">
|
||||
<div>
|
||||
<p class="mt-4">
|
||||
Dieses Mitglied wurde vorher bereits aktualisiert. Daher könnte ein Update zu Datenverlust führen.
|
||||
</p>
|
||||
<p class="mt-2">
|
||||
Wir empfehlen, die Daten aus NaMi zunächst neu zu synchronisieren und dann die Änderungen hier in
|
||||
der Adrema erneut vorzunehmen.
|
||||
</p>
|
||||
<p class="mt-4">Dieses Mitglied wurde vorher bereits aktualisiert. Daher könnte ein Update zu Datenverlust führen.</p>
|
||||
<p class="mt-2">Wir empfehlen, die Daten aus NaMi zunächst neu zu synchronisieren und dann die Änderungen hier in der Adrema erneut vorzunehmen.</p>
|
||||
<div class="grid grid-cols-2 gap-3 mt-6">
|
||||
<a href="#" @click.prevent="resync" class="text-center btn btn-primary">Neu synchronisieren</a>
|
||||
<a href="#" @click.prevent="forceWrite" class="text-center btn btn-danger">Änderungen schreiben</a>
|
||||
|
@ -22,149 +17,44 @@
|
|||
<box heading="Stammdaten">
|
||||
<div class="grid sm:grid-cols-2 gap-3">
|
||||
<div class="grid grid-cols-2 gap-3">
|
||||
<f-select
|
||||
id="gender_id"
|
||||
name="gender_id"
|
||||
:options="genders"
|
||||
v-model="inner.gender_id"
|
||||
label="Geschlecht"
|
||||
size="sm"
|
||||
></f-select>
|
||||
<f-select id="gender_id" name="gender_id" :options="genders" v-model="inner.gender_id" label="Geschlecht" size="sm"></f-select>
|
||||
<f-text id="salutation" v-model="inner.salutation" size="sm" label="Anrede"></f-text>
|
||||
</div>
|
||||
<f-select
|
||||
:options="nationalities"
|
||||
id="nationality_id"
|
||||
v-model="inner.nationality_id"
|
||||
label="Staatsangehörigkeit"
|
||||
name="nationality_id"
|
||||
size="sm"
|
||||
required
|
||||
></f-select>
|
||||
<f-select :options="nationalities" id="nationality_id" v-model="inner.nationality_id" label="Staatsangehörigkeit" name="nationality_id" size="sm" required></f-select>
|
||||
<f-text id="firstname" v-model="inner.firstname" size="sm" label="Vorname" required></f-text>
|
||||
<f-text id="lastname" v-model="inner.lastname" size="sm" label="Nachname" required></f-text>
|
||||
<f-text id="address" v-model="inner.address" size="sm" label="Adresse" required></f-text>
|
||||
<f-text
|
||||
id="further_address"
|
||||
v-model="inner.further_address"
|
||||
size="sm"
|
||||
label="Adresszusatz"
|
||||
></f-text>
|
||||
<f-text id="further_address" v-model="inner.further_address" size="sm" label="Adresszusatz"></f-text>
|
||||
<f-text id="zip" v-model="inner.zip" size="sm" label="PLZ" required></f-text>
|
||||
<f-text id="location" v-model="inner.location" size="sm" label="Ort" required></f-text>
|
||||
<f-text
|
||||
type="date"
|
||||
id="birthday"
|
||||
v-model="inner.birthday"
|
||||
size="sm"
|
||||
label="Geburtsdatum"
|
||||
required
|
||||
></f-text>
|
||||
<f-select
|
||||
:options="regions"
|
||||
name="region_id"
|
||||
id="region_id"
|
||||
v-model="inner.region_id"
|
||||
label="Bundesland"
|
||||
size="sm"
|
||||
></f-select>
|
||||
<f-select
|
||||
:options="countries"
|
||||
id="country_id"
|
||||
v-model="inner.country_id"
|
||||
label="Land"
|
||||
name="country_id"
|
||||
size="sm"
|
||||
required
|
||||
></f-select>
|
||||
<f-text
|
||||
id="other_country"
|
||||
v-model="inner.other_country"
|
||||
label="Andere Staatsangehörigkeit"
|
||||
size="sm"
|
||||
></f-text>
|
||||
<f-text type="date" id="birthday" v-model="inner.birthday" size="sm" label="Geburtsdatum" required></f-text>
|
||||
<f-select :options="regions" name="region_id" id="region_id" v-model="inner.region_id" label="Bundesland" size="sm"></f-select>
|
||||
<f-select :options="countries" id="country_id" v-model="inner.country_id" label="Land" name="country_id" size="sm" required></f-select>
|
||||
<f-text id="other_country" v-model="inner.other_country" label="Andere Staatsangehörigkeit" size="sm"></f-text>
|
||||
</div>
|
||||
</box>
|
||||
<box heading="Kontakt">
|
||||
<div class="grid gap-3 sm:grid-cols-2">
|
||||
<f-text id="main_phone" v-model="inner.main_phone" size="sm" label="Telefon (Eltern)"></f-text>
|
||||
<f-text id="mobile_phone" v-model="inner.mobile_phone" size="sm" label="Handy (Eltern)"></f-text>
|
||||
<f-text
|
||||
id="work_phone"
|
||||
v-model="inner.work_phone"
|
||||
size="sm"
|
||||
label="Tel geschäftlich (Eltern)"
|
||||
></f-text>
|
||||
<f-text
|
||||
id="children_phone"
|
||||
v-model="inner.children_phone"
|
||||
size="sm"
|
||||
label="Telefon (Kind)"
|
||||
></f-text>
|
||||
<f-text id="work_phone" v-model="inner.work_phone" size="sm" label="Tel geschäftlich (Eltern)"></f-text>
|
||||
<f-text id="children_phone" v-model="inner.children_phone" size="sm" label="Telefon (Kind)"></f-text>
|
||||
<f-text id="email" v-model="inner.email" size="sm" label="E-Mail"></f-text>
|
||||
<f-text id="email_parents" v-model="inner.email_parents" size="sm" label="E-Mail eltern"></f-text>
|
||||
<f-text id="fax" v-model="inner.fax" size="sm" label="Fax"></f-text>
|
||||
<f-textarea
|
||||
class="sm:col-span-2"
|
||||
rows="3"
|
||||
id="letter_address"
|
||||
v-model="inner.letter_address"
|
||||
label="Brief-Adresse"
|
||||
size="sm"
|
||||
></f-textarea>
|
||||
<f-textarea class="sm:col-span-2" rows="3" id="letter_address" v-model="inner.letter_address" label="Brief-Adresse" size="sm"></f-textarea>
|
||||
</div>
|
||||
</box>
|
||||
<box heading="System">
|
||||
<div class="grid gap-3">
|
||||
<f-select
|
||||
:options="billKinds"
|
||||
id="bill_kind"
|
||||
v-model="inner.bill_kind"
|
||||
label="Rechnung versenden über"
|
||||
name="bill_kind"
|
||||
size="sm"
|
||||
></f-select>
|
||||
<f-select
|
||||
:options="subscriptions"
|
||||
id="subscription_id"
|
||||
v-model="inner.subscription_id"
|
||||
label="Beitrag"
|
||||
name="subscription_id"
|
||||
size="sm"
|
||||
></f-select>
|
||||
<f-select :options="billKinds" id="bill_kind" v-model="inner.bill_kind" label="Rechnung versenden über" name="bill_kind" size="sm"></f-select>
|
||||
<f-select :options="subscriptions" id="subscription_id" v-model="inner.subscription_id" label="Beitrag" name="subscription_id" size="sm"></f-select>
|
||||
<f-switch id="has_nami" size="sm" v-model="inner.has_nami" label="In Nami eintragen"></f-switch>
|
||||
<f-switch
|
||||
id="send_newspaper"
|
||||
v-model="inner.send_newspaper"
|
||||
label="Mittendrin versenden"
|
||||
size="sm"
|
||||
></f-switch>
|
||||
<f-text
|
||||
class="sm:col-span-2"
|
||||
type="date"
|
||||
id="joined_at"
|
||||
v-model="inner.joined_at"
|
||||
label="Eintrittsdatum"
|
||||
size="sm"
|
||||
></f-text>
|
||||
<f-textarea
|
||||
rows="3"
|
||||
id="comment"
|
||||
class="col-span-2"
|
||||
v-model="inner.comment"
|
||||
label="Kommentar"
|
||||
size="sm"
|
||||
></f-textarea>
|
||||
<f-switch id="send_newspaper" v-model="inner.send_newspaper" label="Mittendrin versenden" size="sm"></f-switch>
|
||||
<f-text class="sm:col-span-2" type="date" id="joined_at" v-model="inner.joined_at" label="Eintrittsdatum" size="sm"></f-text>
|
||||
<f-textarea rows="3" id="comment" class="col-span-2" v-model="inner.comment" label="Kommentar" size="sm"></f-textarea>
|
||||
<div class="contents" v-if="mode === 'create'">
|
||||
<f-select
|
||||
:options="activities"
|
||||
id="first_activity_id"
|
||||
v-model="inner.first_activity_id"
|
||||
label="Erste Tätigkeit"
|
||||
name="first_activity_id"
|
||||
size="sm"
|
||||
required
|
||||
></f-select>
|
||||
<f-select :options="activities" id="first_activity_id" v-model="inner.first_activity_id" label="Erste Tätigkeit" name="first_activity_id" size="sm" required></f-select>
|
||||
<f-select
|
||||
v-if="inner.first_activity_id"
|
||||
:options="subactivities[inner.first_activity_id]"
|
||||
|
@ -183,95 +73,30 @@
|
|||
<div class="grid grid-cols-[max-content_5rem] gap-1">
|
||||
<f-switch id="has_efz" v-model="hasEfz" size="sm" label="Führungszeugnis eingesehen"></f-switch>
|
||||
<div>
|
||||
<f-text
|
||||
v-if="inner.efz !== null"
|
||||
type="date"
|
||||
id="efz"
|
||||
v-model="inner.efz"
|
||||
label="am"
|
||||
size="sm"
|
||||
></f-text>
|
||||
<f-text v-if="inner.efz !== null" type="date" id="efz" v-model="inner.efz" label="am" size="sm"></f-text>
|
||||
</div>
|
||||
<f-switch id="has_ps" v-model="hasPs" size="sm" label="Hat Präventionsschulung"></f-switch>
|
||||
<div>
|
||||
<f-text
|
||||
v-if="inner.ps_at !== null"
|
||||
type="date"
|
||||
id="ps_at"
|
||||
v-model="inner.ps_at"
|
||||
label="am"
|
||||
size="sm"
|
||||
></f-text>
|
||||
<f-text v-if="inner.ps_at !== null" type="date" id="ps_at" v-model="inner.ps_at" label="am" size="sm"></f-text>
|
||||
</div>
|
||||
<f-switch
|
||||
id="has_more_ps"
|
||||
v-model="hasMorePs"
|
||||
size="sm"
|
||||
label="Hat Vertierungsschulung"
|
||||
></f-switch>
|
||||
<f-switch id="has_more_ps" v-model="hasMorePs" size="sm" label="Hat Vertierungsschulung"></f-switch>
|
||||
<div>
|
||||
<f-text
|
||||
v-if="inner.more_ps_at !== null"
|
||||
type="date"
|
||||
id="more_ps_at"
|
||||
v-model="inner.more_ps_at"
|
||||
label="am"
|
||||
size="sm"
|
||||
></f-text>
|
||||
<f-text v-if="inner.more_ps_at !== null" type="date" id="more_ps_at" v-model="inner.more_ps_at" label="am" size="sm"></f-text>
|
||||
</div>
|
||||
<f-switch
|
||||
id="has_without_education"
|
||||
v-model="hasWithoutEducation"
|
||||
label="Einsatz ohne Schulung"
|
||||
size="sm"
|
||||
></f-switch>
|
||||
<f-switch id="has_without_education" v-model="hasWithoutEducation" label="Einsatz ohne Schulung" size="sm"></f-switch>
|
||||
<div>
|
||||
<f-text
|
||||
v-if="inner.without_education_at !== null"
|
||||
type="date"
|
||||
id="without_education_at"
|
||||
v-model="inner.without_education_at"
|
||||
label="am"
|
||||
size="sm"
|
||||
></f-text>
|
||||
<f-text v-if="inner.without_education_at !== null" type="date" id="without_education_at" v-model="inner.without_education_at" label="am" size="sm"></f-text>
|
||||
</div>
|
||||
<f-switch
|
||||
id="has_without_efz"
|
||||
size="sm"
|
||||
v-model="hasWithoutEfz"
|
||||
label="Einsatz ohne EFZ"
|
||||
></f-switch>
|
||||
<f-switch id="has_without_efz" size="sm" v-model="hasWithoutEfz" label="Einsatz ohne EFZ"></f-switch>
|
||||
<div>
|
||||
<f-text
|
||||
v-if="inner.without_efz_at !== null"
|
||||
type="date"
|
||||
id="without_efz_at"
|
||||
v-model="inner.without_efz_at"
|
||||
label="am"
|
||||
size="sm"
|
||||
></f-text>
|
||||
<f-text v-if="inner.without_efz_at !== null" type="date" id="without_efz_at" v-model="inner.without_efz_at" label="am" size="sm"></f-text>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid gap-1">
|
||||
<f-switch id="has_svk" size="sm" v-model="inner.has_svk" label="SVK unterschrieben"></f-switch>
|
||||
<f-switch
|
||||
id="has_vk"
|
||||
size="sm"
|
||||
v-model="inner.has_vk"
|
||||
label="Verhaltenskodex unterschrieben"
|
||||
></f-switch>
|
||||
<f-switch
|
||||
id="multiply_pv"
|
||||
v-model="inner.multiply_pv"
|
||||
label="Multiplikator*in Präventionsschulung"
|
||||
size="sm"
|
||||
></f-switch>
|
||||
<f-switch
|
||||
id="multiply_more_pv"
|
||||
v-model="inner.multiply_more_pv"
|
||||
label="Multiplikator*in Vertierungsschulung"
|
||||
size="sm"
|
||||
></f-switch>
|
||||
<f-switch id="has_vk" size="sm" v-model="inner.has_vk" label="Verhaltenskodex unterschrieben"></f-switch>
|
||||
<f-switch id="multiply_pv" v-model="inner.multiply_pv" label="Multiplikator*in Präventionsschulung" size="sm"></f-switch>
|
||||
<f-switch id="multiply_more_pv" v-model="inner.multiply_more_pv" label="Multiplikator*in Vertierungsschulung" size="sm"></f-switch>
|
||||
</div>
|
||||
</div>
|
||||
</box>
|
||||
|
@ -294,7 +119,7 @@ function issetComputed(val) {
|
|||
export default {
|
||||
data: function () {
|
||||
return {
|
||||
inner: {},
|
||||
inner: {...this.data},
|
||||
active: 0,
|
||||
};
|
||||
},
|
||||
|
@ -316,9 +141,7 @@ export default {
|
|||
|
||||
methods: {
|
||||
submit() {
|
||||
this.mode === 'create'
|
||||
? this.$inertia.post(`/member`, this.inner)
|
||||
: this.$inertia.patch(`/member/${this.inner.id}`, this.inner);
|
||||
this.mode === 'create' ? this.$inertia.post(`/member`, this.inner) : this.$inertia.patch(`/member/${this.inner.id}`, this.inner);
|
||||
},
|
||||
resync() {
|
||||
this.$inertia.get(`/member/${this.inner.id}/resync`);
|
||||
|
@ -337,9 +160,5 @@ export default {
|
|||
hasWithoutEfz: issetComputed('without_efz_at'),
|
||||
hasWithoutEducation: issetComputed('without_education_at'),
|
||||
},
|
||||
|
||||
created() {
|
||||
this.inner = this.data;
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
|
|
@ -31,8 +31,9 @@ class CreateTest extends TestCase
|
|||
$this->assertInertiaHas('Biber', $response, "subactivities.{$activity->id}.{$subactivity->id}");
|
||||
$this->assertInertiaHas('€ Mitglied', $response, "activities.{$activity->id}");
|
||||
$this->assertInertiaHas(['name' => 'E-Mail', 'id' => 'E-Mail'], $response, 'billKinds.0');
|
||||
}
|
||||
|
||||
$this->assertInertiaHas(['efz' => null, 'ps_at' => null, 'more_ps_at' => null, 'without_education_at' => null, 'without_efz_at' => null], $response, 'data');
|
||||
}
|
||||
|
||||
public function testItDoesntDisplayActivitiesAndSubactivitiesNotInNami(): void
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue