|
From: <dai...@us...> - 2012-02-23 05:57:50
|
Revision: 4955
http://web-erp.svn.sourceforge.net/web-erp/?rev=4955&view=rev
Author: daintree
Date: 2012-02-23 05:57:43 +0000 (Thu, 23 Feb 2012)
Log Message:
-----------
put back ENT_QUOTES etc
Modified Paths:
--------------
trunk/CustomerTransInquiry.php
trunk/WWW_Users.php
trunk/includes/IndexArray.php
Modified: trunk/CustomerTransInquiry.php
===================================================================
--- trunk/CustomerTransInquiry.php 2012-02-22 13:13:19 UTC (rev 4954)
+++ trunk/CustomerTransInquiry.php 2012-02-23 05:57:43 UTC (rev 4955)
@@ -12,7 +12,7 @@
echo '<div class="page_help_text">' . _('Choose which type of transaction to report on.') . '</div>
<br />';
-echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF']) . '" method="post">';
+echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '" method="post">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<table class="selection">
Modified: trunk/WWW_Users.php
===================================================================
--- trunk/WWW_Users.php 2012-02-22 13:13:19 UTC (rev 4954)
+++ trunk/WWW_Users.php 2012-02-23 05:57:43 UTC (rev 4955)
@@ -18,7 +18,9 @@
_('General Ledger'),
_('Asset Manager'),
_('Petty Cash'),
- _('Setup'));
+ _('Setup'),
+ _('DB Management')
+ );
$PDFLanguages = array(_('Latin Western Languages'),
_('Eastern European Russian Japanese Korean Vietnamese Hebrew Arabic Thai'),
Modified: trunk/includes/IndexArray.php
===================================================================
--- trunk/includes/IndexArray.php 2012-02-22 13:13:19 UTC (rev 4954)
+++ trunk/includes/IndexArray.php 2012-02-23 05:57:43 UTC (rev 4955)
@@ -1,5 +1,5 @@
<?php
-$ModuleLink = array('orders', 'AR', 'AP', 'PO', 'stock', 'manuf', 'GL', 'FA', 'PC', 'system');
+$ModuleLink = array('orders', 'AR', 'AP', 'PO', 'stock', 'manuf', 'GL', 'FA', 'PC', 'system', 'DBManagement');
$ReportList = array('orders'=>'ord',
'AR'=>'ar',
'AP'=>'ap',
@@ -9,7 +9,8 @@
'GL'=>'gl',
'FA'=>'fa',
'PC'=>'pc',
- 'system'=>'sys'
+ 'system'=>'sys',
+ 'DBManagement'=>'dbm'
);
/*The headings showing on the tabs accross the main index used also in WWW_Users for defining what should be visible to the user */
@@ -22,7 +23,8 @@
_('General Ledger'),
_('Asset Manager'),
_('Petty Cash'),
- _('Setup'));
+ _('Setup'),
+ _('DB Management'));
$MenuItems['orders']['Transactions']['Caption'] = array( _('Enter An Order or Quotation'),
_('Enter Counter Sales'),
@@ -514,4 +516,58 @@
'/MRPCalendar.php',
'/MRPDemandTypes.php'
);
+
+$MenuItems['DBManagement']['Transactions']['Caption'] = array (_('Change A Customer Code'),
+ _('Change A Customer Branch Code'),
+ _('Change An Inventory Item Code'),
+ _('Change A Supplier Code'),
+ _('Update costs for all BOM items, from the bottom up'),
+ _('Re-apply costs to Sales Analysis'),
+ _('Send All Unsent EDI Invoices and Credits'),
+ _('Delete sales transactions'),
+ _('Reverse all supplier payments on a specified date')
+ );
+
+$MenuItems['DBManagement']['Transactions']['URL'] = array ('/Z_ChangeCustomerCode.php',
+ '/Z_ChangeBranchCode.php',
+ '/Z_ChangeStockCode.php',
+ '/Z_ChangeSupplierCode.php',
+ '/Z_BottomUpCosts.php',
+ '/Z_ReApplyCostToSA.php',
+ '/EDISendInvoices.php',
+ '/Z_DeleteSalesTransActions.php',
+ '/Z_ReverseSuppPaymentRun.php'
+ );
+
+$MenuItems['DBManagement']['Reports']['Caption'] = array (_('Show Local Currency Total Debtor Balances'),
+ _('Show Local Currency Total Suppliers Balances'),
+ _('Show General Transactions That Do Not Balance')
+ );
+
+$MenuItems['DBManagement']['Reports']['URL'] = array ('/Z_CurrencyDebtorsBalances.php',
+ '/Z_CurrencySuppliersBalances.php',
+ '/Z_CheckGLTransBalance.php'
+ );
+
+$MenuItems['DBManagement']['Maintenance']['Caption'] = array (_('Maintain Language Files'),
+ _('Make New Company'),
+ _('Data Export Options'),
+ _('Image Manipulation Utility'),
+ _('Import Stock Items from .csv'),
+ _('Import Fixed Assets from .csv file'),
+ _('Create new company template SQL file and submit to webERP'),
+ _('Re-calculate brought forward amounts in GL'),
+ _('Re-Post all GL transactions from a specified period')
+ );
+
+$MenuItems['DBManagement']['Maintenance']['URL'] = array ('/Z_poAdmin.php',
+ '/Z_MakeNewCOmpany.php',
+ '/Z_DataExportOptions.php',
+ '/Z_GetStockImage.php',
+ '/Z_ImportStocks.php',
+ '/Z_ImportFixedAssets.php',
+ '/Z_CreateCompanyTemplateFile.php',
+ '/Z_UpdateChartDetailsBFwd.php',
+ '/Z_RePostGLFromPeriod.php'
+ );
?>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|