fix notifications

This commit is contained in:
yuri
2018-09-10 10:24:09 +03:00
parent 54085a59c3
commit b2ea073c16
3 changed files with 27 additions and 2 deletions
+12
View File
@@ -31,6 +31,18 @@ namespace Espo\Entities;
class Note extends \Espo\Core\ORM\Entity
{
private $aclIsProcessed = false;
public function setAclIsProcessed()
{
$this->aclIsProcessed = true;
}
public function isAclProcessed()
{
return $this->aclIsProcessed;
}
public function loadAttachments()
{
$data = $this->get('data');