1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-27 00:06:14 +01:00
This commit is contained in:
MatteoPistorello 2024-03-06 12:23:31 +01:00
commit 4c4c4080dc

View File

@ -28,12 +28,12 @@ trait RecordTrait
public function getModule()
{
return !empty($this->module) ? Module::find($this->module) : null;
return !empty($this->module) ? Module::find((new Module())->getByName($this->module)->id_record) : null;
}
public function getPlugin()
{
return !empty($this->plugin) ? (new Plugin())->getByName($this->plugin) : null;
return !empty($this->plugin) ? Plugin::find((new Plugin())->getByName($this->plugin)->id_record) : null;
}
/**