*** empty log message ***
[fa-stable.git] / applications / customers.php
1 <?php\r
2         \r
3         class customers_app extends application \r
4         {\r
5                 function customers_app() \r
6                 {\r
7                         $this->application("orders",_("Sales"));\r
8                 \r
9                         $this->add_module(_("Transactions"));\r
10                         $this->add_lapp_function(0, _("Sales Order Entry"),"sales/sales_order_entry.php?NewOrder=Yes");\r
11                         $this->add_lapp_function(0, _("Select a Sales Order to Invoice"),"sales/inquiry/sales_orders_view.php?&OutstandingOnly=1");\r
12                         $this->add_rapp_function(0, _("Customer Payments"),"sales/customer_payments.php?");\r
13                         $this->add_rapp_function(0, "","");                     \r
14                         $this->add_rapp_function(0, _("Sales Invoices"),"sales/sales_order_entry.php?NewInvoice=Yes");                  \r
15                         $this->add_rapp_function(0, _("Customer Credit Notes"),"sales/credit_note_entry.php?&NewCredit=Yes");\r
16                         $this->add_rapp_function(0, _("Allocate Customer Payments or Credit Notes"),"sales/allocations/customer_allocation_main.php?");\r
17 \r
18                         $this->add_module(_("Inquiries and Reports"));\r
19                         $this->add_lapp_function(1, _("Sales Order Inquiry"),"sales/inquiry/sales_orders_view.php?");                   \r
20                         $this->add_lapp_function(1, _("Customer Transaction Inquiry"),"sales/inquiry/customer_inquiry.php?");\r
21                         $this->add_lapp_function(1, "","");\r
22                         $this->add_lapp_function(1, _("Customer Allocation Inquiry"),"sales/inquiry/customer_allocation_inquiry.php?");\r
23                         \r
24                         $this->add_rapp_function(1, _("Customer and Sales Reports"),"reporting/reports_main.php?Class=0");\r
25                         \r
26                         $this->add_module(_("Maintenance"));\r
27                         $this->add_lapp_function(2, _("Add and Manage Customers"),"sales/manage/customers.php?");\r
28                         $this->add_lapp_function(2, _("Customer Branches"),"sales/manage/customer_branches.php?");\r
29                         $this->add_rapp_function(2, _("Sales Types"),"sales/manage/sales_types.php?");\r
30                         $this->add_rapp_function(2, _("Sales Persons"),"sales/manage/sales_people.php?");\r
31                         $this->add_rapp_function(2, _("Sales Areas"),"sales/manage/sales_areas.php?");\r
32                         $this->add_rapp_function(2, _("Credit Status Setup"),"sales/manage/credit_status.php?");\r
33                 }\r
34         }\r
35         \r
36 \r
37 ?>