Added Products

This commit is contained in:
Frank Schubert
2021-07-05 16:12:28 +02:00
parent 5c99e8008e
commit 4fae807663
21 changed files with 1040 additions and 13 deletions

View File

@@ -20,6 +20,16 @@ class NetworkModel {
}
}
$me = new User();
$me->loadMe();
if($model->create_by === null) {
$model->create_by = $me->id;
}
if($model->edit_by === null) {
$model->edit_by = $me->id;
}
return $model;
}