[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb: [263] trunk
- Subject: SF.net SVN: ledger-smb: [263] trunk
- From: ..hidden..
- Date: Mon, 23 Oct 2006 12:51:26 -0700
Revision: 263
http://svn.sourceforge.net/ledger-smb/?rev=263&view=rev
Author: einhverfr
Date: 2006-10-23 12:51:03 -0700 (Mon, 23 Oct 2006)
Log Message:
-----------
Moved io lineitem column list to LedgerSMB::Sysconfig;
Modified Paths:
--------------
trunk/Changelog
trunk/LedgerSMB/Sysconfig.pm
trunk/bin/io.pl
Modified: trunk/Changelog
===================================================================
--- trunk/Changelog 2006-10-23 17:03:24 UTC (rev 262)
+++ trunk/Changelog 2006-10-23 19:51:03 UTC (rev 263)
@@ -1,5 +1,6 @@
Changelog for LedgerSMB 1.2.0
+* Moved IS/IR/OE the linitem column list to the LedgerSMB::Sysconfig Chris T)
* Removed back-translation of function names for i18n (Seneca)
* Invoice now has an Onhand column (Chris T)
* Added logging module (Jason R)
Modified: trunk/LedgerSMB/Sysconfig.pm
===================================================================
--- trunk/LedgerSMB/Sysconfig.pm 2006-10-23 17:03:24 UTC (rev 262)
+++ trunk/LedgerSMB/Sysconfig.pm 2006-10-23 19:51:03 UTC (rev 263)
@@ -7,7 +7,7 @@
$session='DB';
$logging=0; # No logging on by default
..hidden.. = qw(unit onhand sellprice discount linetotal);
-
1;
Modified: trunk/bin/io.pl
===================================================================
--- trunk/bin/io.pl 2006-10-23 17:03:24 UTC (rev 262)
+++ trunk/bin/io.pl 2006-10-23 19:51:03 UTC (rev 263)
@@ -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 @@
}
- push @column_index, qw(unit onhand sellprice discount linetotal);
+ push @column_index, @{LSMBConfig::io_lineitem_columns};
my $colspan = $#column_index + 1;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.