summaryrefslogtreecommitdiff
path: root/bin/io.pl
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2006-10-23 19:51:03 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2006-10-23 19:51:03 +0000
commitaf66021ef163a3f51895db8eb89c957d292f8997 (patch)
tree250a5a54fc24816f3e5ee730288b37047cefbb52 /bin/io.pl
parentaeebfdb93c0fe6cae8346564f243bc78b4f6ec0a (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/io.pl')
-rwxr-xr-xbin/io.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/io.pl b/bin/io.pl
index 263058a8..c2245c15 100755
--- a/bin/io.pl
+++ b/bin/io.pl
@@ -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;