Fixed acruals posting dates.
[fa-stable.git] / reporting / rep501.php
index b697925f1f87654b8c6d232db434d91a46085a97..22c00c34855850075c00726ff2a5649d32decf3d 100644 (file)
@@ -9,7 +9,7 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
 ***********************************************************************/
-$page_security = 2;
+$page_security = 'SA_DIMENSIONREP';
 // ----------------------------------------------------------------
 // $ Revision: 2.0 $
 // Creator:    Joe Hunt
@@ -32,8 +32,8 @@ function getTransactions($from, $to)
        $sql = "SELECT *
                FROM
                        ".TB_PREF."dimensions
-               WHERE reference >= '$from'
-               AND reference <= '$to'
+               WHERE id >= ".db_escape($from)."
+               AND id <= ".db_escape($to)."
                ORDER BY
                        reference";
 
@@ -87,13 +87,13 @@ function print_dimension_summary()
        $aligns = array('left', 'left', 'left', 'left', 'left', 'left', 'right');
 
     $params =   array(         0 => $comments,
-                                   1 => array('text' => _('Dimension'), 'from' => $fromdim, 'to' => $todim));
+                                   1 => array('text' => _('Dimension'), 'from' => get_dimension_string($fromdim), 'to' => get_dimension_string($todim)));
 
     $rep = new FrontReport(_('Dimension Summary'), "DimensionSummary", user_pagesize());
 
     $rep->Font();
     $rep->Info($params, $cols, $headers, $aligns);
-    $rep->Header();
+    $rep->NewPage();
 
        $res = getTransactions($fromdim, $todim);
        while ($trans=db_fetch($res))