diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-10-23 19:51:03 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-10-23 19:51:03 +0000 |
commit | af66021ef163a3f51895db8eb89c957d292f8997 (patch) | |
tree | 250a5a54fc24816f3e5ee730288b37047cefbb52 /bin | |
parent | aeebfdb93c0fe6cae8346564f243bc78b4f6ec0a (diff) |
Moved io lineitem column list to LedgerSMB::Sysconfig;
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@263 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/io.pl | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -39,6 +39,7 @@ ####################################################################### use LedgerSMB::Tax; +use LedgerSMB::Sysconfig; # any custom scripts for this one if (-f "bin/custom/io.pl") { @@ -120,7 +121,7 @@ sub display_row { } - push @column_index, qw(unit onhand sellprice discount linetotal); + push @column_index, @{LSMBConfig::io_lineitem_columns}; my $colspan = $#column_index + 1; |