X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep704.php;h=23a52fca4b9b5006d0f73518e538d21e54f7d78f;hb=63ae1f3e711999bb87e02c4a7fdab7fda6c3f5d1;hp=d3cf9047cac4c5d3c0ba3c01958d90c85a5e9748;hpb=0489317205141deaecefe3a7243d11a3e38a51d0;p=fa-stable.git diff --git a/reporting/rep704.php b/reporting/rep704.php index d3cf9047..23a52fca 100644 --- a/reporting/rep704.php +++ b/reporting/rep704.php @@ -49,7 +49,7 @@ function print_GL_transactions() $orientation = $_POST['PARAM_7']; $destination = $_POST['PARAM_8']; } - else if ($dim == 1) + elseif ($dim == 1) { $dimension = $_POST['PARAM_4']; $comments = $_POST['PARAM_5']; @@ -71,23 +71,31 @@ function print_GL_transactions() $rep = new FrontReport(_('GL Account Transactions'), "GLAccountTransactions", user_pagesize(), 9, $orientation); $dec = user_price_dec(); - //$cols = array(0, 80, 100, 150, 210, 280, 340, 400, 450, 510, 570); - $cols = array(0, 65, 105, 125, 175, 230, 290, 345, 405, 465, 525); - //------------0--1---2---3----4----5----6----7----8----9----10------- - //-----------------------dim1-dim2----------------------------------- - //-----------------------dim1---------------------------------------- - //------------------------------------------------------------------- - $aligns = array('left', 'left', 'left', 'left', 'left', 'left', 'left', 'right', 'right', 'right'); - if ($dim == 2) + { + $cols = array(0, 65, 105, 125, 175, 230, 290, 345, 405, 465, 525); + //------------0--1---2----3----4----5----6----7----8----9----10------- + //------------------------dim1-dim2----------------------------------- $headers = array(_('Type'), _('Ref'), _('#'), _('Date'), _('Dimension')." 1", _('Dimension')." 2", _('Person/Item'), _('Debit'), _('Credit'), _('Balance')); + } elseif ($dim == 1) + { + $cols = array(0, 65, 105, 125, 175, 230, 230, 345, 405, 465, 525); + //------------0--1---2----3----4----5----6----7----8----9----10------- + //------------------------dim1---------------------------------------- $headers = array(_('Type'), _('Ref'), _('#'), _('Date'), _('Dimension'), "", _('Person/Item'), _('Debit'), _('Credit'), _('Balance')); + } else + { + $cols = array(0, 65, 105, 125, 175, 175, 175, 345, 405, 465, 525); + //------------0--1---2----3----4----5----6----7----8----9----10------- + //-------------------------------------------------------------------- $headers = array(_('Type'), _('Ref'), _('#'), _('Date'), "", "", _('Person/Item'), _('Debit'), _('Credit'), _('Balance')); + } + $aligns = array('left', 'left', 'left', 'left', 'left', 'left', 'left', 'right', 'right', 'right'); if ($dim == 2) { @@ -99,7 +107,7 @@ function print_GL_transactions() 4 => array('text' => _('Dimension')." 2", 'from' => get_dimension_string($dimension2), 'to' => '')); } - else if ($dim == 1) + elseif ($dim == 1) { $params = array( 0 => $comments, 1 => array('text' => _('Period'), 'from' => $from, 'to' => $to), @@ -114,7 +122,7 @@ function print_GL_transactions() 2 => array('text' => _('Accounts'),'from' => $fromacc,'to' => $toacc)); } if ($orientation == 'L') - $rep->recalculate_cols($cols); + recalculate_cols($cols); $rep->Font(); $rep->Info($params, $cols, $headers, $aligns); @@ -201,4 +209,3 @@ function print_GL_transactions() $rep->End(); } -?> \ No newline at end of file