ConstructionConsent - adding journal entry on create owner or import owner create
This commit is contained in:
@@ -121,6 +121,12 @@ class ConstructionConsentOwnerController extends mfBaseController
|
||||
if(!$item->save()) {
|
||||
$this->layout()->setFlash("Beim Speichern ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.", "error");
|
||||
} else {
|
||||
$journal = ConstructionConsentJournal::create([
|
||||
"constructionconsent_id" => $cc->id,
|
||||
"text" => "Eigentümer " . $item->firstname . " " . $item->lastname . " wurde hinzugefügt"
|
||||
]);
|
||||
$journal->save();
|
||||
|
||||
$this->layout()->setFlash("Besitzer wurde erfolgreich gespeichert.", "success");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user