Added admin workorder filter in order and in network

This commit is contained in:
Frank Schubert
2021-11-16 23:07:12 +01:00
parent 075fe1532f
commit a2f454fc5c
6 changed files with 113 additions and 53 deletions

View File

@@ -76,6 +76,12 @@ class NetworkController extends mfBaseController {
$data['name'] = $r->name;
$data['note'] = $r->note;
if($r->sytemowner_action_status) {
$data['sytemowner_action_status'] = $r->sytemowner_action_status;
} else {
$data['sytemowner_action_status'] = null;
}
$data['edit_by'] = 1;
if($mode == "add") {

View File

@@ -3,6 +3,7 @@
class NetworkModel {
public $name = null;
public $owner_id = null;
public $sytemowner_action_status = null;
public $note = null;
public $create_by = null;