N°3294 - Introduce counters in OQL menu entries

This commit is contained in:
acognet
2021-01-21 17:24:15 +01:00
parent b8aeef1d71
commit 5dcddf2317
4 changed files with 40 additions and 2 deletions

View File

@@ -423,5 +423,15 @@ JS;
return $this;
}
public function GetOrgId(){
$oAppContext = new ApplicationContext();
$iCurrentOrganization = $oAppContext->GetCurrentValue('org_id');
if(!empty($iCurrentOrganization)) {
return $iCurrentOrganization;
}
return '';
}
}