X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=applications%2Fsuppliers.php;h=1e5c73e04e2b1d8aa33a4fd21ace7a23464eff44;hb=e3423fc85f1f3557ed45fefc8089afbf7d1a2731;hp=a16312575240dbeff5b0e37d4490bd0206dc373a;hpb=818719f38b8327cdca616d58b13913dbd174d96a;p=fa-stable.git diff --git a/applications/suppliers.php b/applications/suppliers.php index a1631257..1e5c73e0 100644 --- a/applications/suppliers.php +++ b/applications/suppliers.php @@ -1,51 +1,63 @@ . + See the License here . ***********************************************************************/ - include_once("./modules/installed_modules.php"); - class suppliers_app extends application +class suppliers_app extends application +{ + function suppliers_app() { - function suppliers_app() + global $installed_extensions; + $this->application("AP",_("&Purchases")); + + $this->add_module(_("Transactions")); + $this->add_lapp_function(0, _("Purchase &Order Entry"), + "purchasing/po_entry_items.php?NewOrder=Yes", 'SA_PURCHASEORDER'); + $this->add_lapp_function(0, _("&Outstanding Purchase Orders Maintenance"), + "purchasing/inquiry/po_search.php?", 'SA_SUPPTRANSVIEW'); + $this->add_rapp_function(0, _("&Payments to Suppliers"), + "purchasing/supplier_payment.php?", 'SA_SUPPLIERPAYMNT'); + $this->add_rapp_function(0, "",""); + $this->add_rapp_function(0, _("Supplier &Invoices"), + "purchasing/supplier_invoice.php?New=1", 'SA_SUPPLIERINVOICE'); + $this->add_rapp_function(0, _("Supplier &Credit Notes"), + "purchasing/supplier_credit.php?New=1", 'SA_SUPPLIERCREDIT'); + $this->add_rapp_function(0, _("&Allocate Supplier Payments or Credit Notes"), + "purchasing/allocations/supplier_allocation_main.php?", 'SA_SUPPLIERALLOC'); + + $this->add_module(_("Inquiries and Reports")); + $this->add_lapp_function(1, _("Purchase Orders &Inquiry"), + "purchasing/inquiry/po_search_completed.php?", 'SA_SUPPTRANSVIEW'); + $this->add_lapp_function(1, _("Supplier Transaction &Inquiry"), + "purchasing/inquiry/supplier_inquiry.php?", 'SA_SUPPTRANSVIEW'); + $this->add_lapp_function(1, "",""); + $this->add_lapp_function(1, _("Supplier Allocation &Inquiry"), + "purchasing/inquiry/supplier_allocation_inquiry.php?", 'SA_SUPPLIERALLOC'); + + $this->add_rapp_function(1, _("Supplier and Purchasing &Reports"), + "reporting/reports_main.php?Class=1", 'SA_SUPPTRANSVIEW'); + + $this->add_module(_("Maintenance")); + $this->add_lapp_function(2, _("&Suppliers"), + "purchasing/manage/suppliers.php?", 'SA_SUPPLIER'); + if (count($installed_extensions) > 0) { - global $installed_modules; - $this->application("AP",_("Purchases")); - - $this->add_module(_("Transactions")); - $this->add_lapp_function(0, _("Purchase &Order Entry"),"purchasing/po_entry_items.php?NewOrder=Yes"); - $this->add_lapp_function(0, _("&Outstanding Purchase Orders Maintenance"),"purchasing/inquiry/po_search.php?"); - $this->add_rapp_function(0, _("&Payments to Suppliers"),"purchasing/supplier_payment.php?"); - $this->add_rapp_function(0, "",""); - $this->add_rapp_function(0, _("Supplier &Invoices"),"purchasing/supplier_invoice.php?New=1"); - $this->add_rapp_function(0, _("Supplier &Credit Notes"),"purchasing/supplier_credit.php?New=1"); - $this->add_rapp_function(0, _("&Allocate Supplier Payments or Credit Notes"),"purchasing/allocations/supplier_allocation_main.php?"); - - $this->add_module(_("Inquiries and Reports")); - $this->add_lapp_function(1, _("Purchase Orders &Inquiry"),"purchasing/inquiry/po_search_completed.php?"); - $this->add_lapp_function(1, _("Supplier Transaction &Inquiry"),"purchasing/inquiry/supplier_inquiry.php?"); - $this->add_lapp_function(1, "",""); - $this->add_lapp_function(1, _("Supplier Allocation &Inquiry"),"purchasing/inquiry/supplier_allocation_inquiry.php?"); - - $this->add_rapp_function(1, _("Supplier and Purchasing &Reports"),"reporting/reports_main.php?Class=1"); - - $this->add_module(_("Maintenance")); - $this->add_lapp_function(2, _("&Suppliers"),"purchasing/manage/suppliers.php?"); - if (count($installed_modules) > 0) + foreach ($installed_extensions as $mod) { - foreach ($installed_modules as $mod) - { - if ($mod["tab"] == "AP") - $this->add_rapp_function(2, $mod["name"], "modules/".$mod["path"]."/".$mod["filename"]."?"); - } - } + if (@$mod['active'] && $mod['type'] == 'plugin' && $mod["tab"] == "AP") + $this->add_rapp_function(2, $mod["title"], + "modules/".$mod["path"]."/".$mod["filename"]."?", + isset($mod["access"]) ? $mod["access"] : 'SA_OPEN' ); + } } } - +} + ?> \ No newline at end of file