Added pipework/linework comments to each page

This commit is contained in:
Frank Schubert
2022-05-03 17:09:14 +02:00
parent b5983b27f1
commit ed2dda4443
6 changed files with 48 additions and 19 deletions

View File

@@ -10,6 +10,7 @@ class Building extends mfBaseModel {
private $status;
private $pipeworker;
private $terminations;
private $termination_workflow_comments;
private $workflowitems;
private $files;
private $pipework_enabler;
@@ -223,6 +224,17 @@ class Building extends mfBaseModel {
return $this->terminations;
}
if($name == "termination_workflow_comments") {
$comments = "";
foreach($this->getProperty("terminations") as $term) {
if($term->workflow_comment) {
$comment .= $term->code.": ".trim($term->workflow_comment)."\n\n";
}
}
$this->termination_workflow_comments = $comment;
return $this->termination_workflow_comments;
}
if($name == "workflowitems") {
$this->loadWorkflowItems();
foreach(WorkflowitemModel::search(["object_type" => "building", "active" => 1]) as $item) {