Products in Order Form now dynamic

This commit is contained in:
Frank Schubert
2022-06-02 17:22:19 +02:00
parent e08dda9bee
commit 66417f53b6
7 changed files with 328 additions and 47 deletions

View File

@@ -133,6 +133,13 @@ class UserController extends mfBaseController {
} else {
$user->permissions->admin = "false";
}
if($r->technician == "true") {
$user->permissions->technician = "true";
} else {
$user->permissions->technician = "false";
}
$user->permissions->save();
}