X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Faccess_levels.inc;h=709e46f33d23844ee5cf7cff3b605bf1b90485c4;hb=29e68a1b8dcbe7c7ecb797396945e0cccf2d6cd8;hp=3bb331d78533b8247dcce48599df6d17261549d6;hpb=1dacc4f4632fbaeb1dc0b473739092f812f9660f;p=fa-stable.git diff --git a/includes/access_levels.inc b/includes/access_levels.inc index 3bb331d7..709e46f3 100644 --- a/includes/access_levels.inc +++ b/includes/access_levels.inc @@ -110,6 +110,7 @@ $security_areas =array( 'SA_INVENTORYMOVETYPE' => array(SS_SETUP|11, _("Inventory movement types")), 'SA_WORKCENTRES' => array(SS_SETUP|12, _("Manufacture work centres")), 'SA_FORMSETUP' => array(SS_SETUP|13, _("Forms setup")), + 'SA_CRMCATEGORY' => array(SS_SETUP|14, _("Contact categories")), // // Special and common functions // @@ -166,7 +167,7 @@ $security_areas =array( 'SA_SUPPLIERALLOC' => array(SS_PURCH|8, _("Supplier payments allocations")), 'SA_SUPPLIERANALYTIC' => array(SS_PURCH_A|1, _("Supplier analytical reports")), - 'SA_SUPPBULKREP' => array(SS_SALES_A|2, _("Supplier document bulk reports")), + 'SA_SUPPBULKREP' => array(SS_PURCH_A|2, _("Supplier document bulk reports")), 'SA_SUPPPAYMREP' => array(SS_PURCH_A|3, _("Supplier payments report")), // // Inventory @@ -199,7 +200,7 @@ $security_areas =array( 'SA_WORKORDERANALYTIC' => array(SS_MANUF_A|1, _("Work order analytical reports and inquiries")), 'SA_WORKORDERCOST' => array(SS_MANUF_A|2, _("Manufacturing cost inquiry")), - 'SA_MANUFBULKREP' => array(SS_SALES_A|3, _("Work order bulk reports")), + 'SA_MANUFBULKREP' => array(SS_MANUF_A|3, _("Work order bulk reports")), 'SA_BOMREP' => array(SS_MANUF_A|4, _("Bill of materials reports")), // // Dimensions @@ -222,7 +223,7 @@ $security_areas =array( 'SA_CURRENCY' => array(SS_GL_C|6, _("Currencies")), 'SA_BANKACCOUNT' => array(SS_GL_C|7, _("Bank accounts")), 'SA_TAXRATES' => array(SS_GL_C|8, _("Tax rates")), - 'SA_TAXGROUPS' => array(SS_GL_C|8, _("Tax groups")), + 'SA_TAXGROUPS' => array(SS_GL_C|12, _("Tax groups")), 'SA_FISCALYEARS' => array(SS_GL_C|9, _("Fiscal years maintenance")), 'SA_GLSETUP' => array(SS_GL_C|10, _("Company GL setup")), 'SA_GLACCOUNTTAGS' => array(SS_GL_C|11, _("GL Account tags")), @@ -298,7 +299,7 @@ function get_access_extensions($id) { $security_sections = $security_areas = array(); if (isset($ext['acc_file'])) - include($path_to_root.($ext['type'] == 'plugin' ? '/modules/':'/').$ext['path'].'/'.$ext['acc_file']); + include($path_to_root.($ext['type'] == 'plugin' ? '/modules/':'/').$ext['path'].'/'.$ext['acc_file']); return array($security_areas, $security_sections); }