Skip to content

Commit

Permalink
Increased space for built in number columns etc. in reports.
Browse files Browse the repository at this point in the history
  • Loading branch information
apmuthu committed Sep 6, 2016
1 parent 5dbacd3 commit 08b81e2
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 8 deletions.
11 changes: 11 additions & 0 deletions core/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
2016-09-06 Joe Hunt
Increased space for built in number columns etc. in reports.
M reporting/rep101.php
M reporting/rep201.php
M reporting/rep203.php
M reporting/rep601.php
M reporting/rep602.php
M reporting/rep701.php
M reporting/rep706.php
M reporting/rep707.php

2016-08-30 Cambell
Added functions for custom css files registered by modules
M includes/main.inc
Expand Down
2 changes: 1 addition & 1 deletion core/reporting/rep101.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ function print_customer_balances()
if ($no_zeros) $nozeros = _('Yes');
else $nozeros = _('No');

$cols = array(0, 100, 130, 190, 250, 320, 385, 450, 515);
$cols = array(0, 95, 140, 200, 250, 320, 385, 450, 515);

$headers = array(_('Trans Type'), _('#'), _('Date'), _('Due Date'), _('Charges'), _('Credits'),
_('Allocated'), _('Outstanding'));
Expand Down
2 changes: 1 addition & 1 deletion core/reporting/rep201.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ function print_supplier_balances()
if ($no_zeros) $nozeros = _('Yes');
else $nozeros = _('No');

$cols = array(0, 100, 130, 190, 250, 320, 385, 450, 515);
$cols = array(0, 95, 140, 200, 250, 320, 385, 450, 515);

$headers = array(_('Trans Type'), _('#'), _('Date'), _('Due Date'), _('Charges'),
_('Credits'), _('Allocated'), _('Outstanding'));
Expand Down
2 changes: 1 addition & 1 deletion core/reporting/rep203.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function print_payment_report()
if ($no_zeros) $nozeros = _('Yes');
else $nozeros = _('No');

$cols = array(0, 100, 130, 190, 250, 320, 385, 450, 515);
$cols = array(0, 100, 160, 210, 250, 320, 385, 450, 515);

$headers = array(_('Trans Type'), _('#'), _('Due Date'), '', '',
'', _('Total'), _('Balance'));
Expand Down
2 changes: 1 addition & 1 deletion core/reporting/rep601.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function print_bank_transactions()
$rep = new FrontReport(_('Bank Statement'), "BankStatement", user_pagesize(), 9, $orientation);
$dec = user_price_dec();

$cols = array(0, 90, 110, 170, 225, 350, 400, 460, 520);
$cols = array(0, 90, 120, 170, 225, 350, 400, 460, 520);

$aligns = array('left', 'left', 'left', 'left', 'left', 'right', 'right', 'right');

Expand Down
2 changes: 1 addition & 1 deletion core/reporting/rep602.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function print_bank_transactions_reconcile()
$rep = new FrontReport(_('Bank Statement w/Reconcile'), "BankStatementReconcile", user_pagesize(), 9, "L");
$dec = user_price_dec();

$cols = array(0, 90, 110, 170, 225, 450, 500, 550, 600, 660, 700);
$cols = array(0, 90, 120, 170, 225, 450, 500, 550, 600, 660, 700);

$aligns = array('left', 'left', 'left', 'left', 'left', 'right', 'right', 'right', 'center', 'left');

Expand Down
2 changes: 1 addition & 1 deletion core/reporting/rep701.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ function print_Chart_of_Accounts()

$orientation = ($orientation ? 'L' : 'P');

$cols = array(0, 50, 300, 425, 500);
$cols = array(0, 60, 300, 425, 500);

$headers = array(_('Account'), _('Account Name'), _('Account Code'), _('Balance'));

Expand Down
2 changes: 1 addition & 1 deletion core/reporting/rep706.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ function print_balance_sheet()
else
$dec = user_price_dec();

$cols = array(0, 50, 200, 350, 425, 500);
$cols = array(0, 60, 200, 350, 425, 500);
//------------0--1---2----3----4----5--

$headers = array(_('Account'), _('Account Name'), _('Open Balance'), _('Period'),
Expand Down
2 changes: 1 addition & 1 deletion core/reporting/rep707.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ function print_profit_and_loss_statement()
$dec = user_price_dec();
$pdec = user_percent_dec();

$cols = array(0, 50, 200, 350, 425, 500);
$cols = array(0, 60, 200, 350, 425, 500);
//------------0--1---2----3----4----5--

$headers = array(_('Account'), _('Account Name'), _('Period'), _('Accumulated'), _('Achieved %'));
Expand Down

0 comments on commit 08b81e2

Please sign in to comment.