[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[5197] branches/1.3
- Subject: SF.net SVN: ledger-smb:[5197] branches/1.3
- From: ..hidden..
- Date: Fri, 16 Nov 2012 10:51:23 +0000
Revision: 5197
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=5197&view=rev
Author: einhverfr
Date: 2012-11-16 10:51:22 +0000 (Fri, 16 Nov 2012)
Log Message:
-----------
Fixed alignment issue on contact screen on Chrome
Also fixed the option to do on-disk caching of templates
Also fixed aging report showing unapproved invoices
Modified Paths:
--------------
branches/1.3/Changelog
branches/1.3/LedgerSMB/RP.pm
branches/1.3/LedgerSMB/Template/HTML.pm
branches/1.3/UI/Contact/contact.css
Modified: branches/1.3/Changelog
===================================================================
--- branches/1.3/Changelog 2012-11-16 09:19:52 UTC (rev 5196)
+++ branches/1.3/Changelog 2012-11-16 10:51:22 UTC (rev 5197)
@@ -17,6 +17,9 @@
* Rebuild modules after upgrade, ensuring upgrade to latest version (Chris T)
* Fixed credit limit usage calculations (Chris T, h/t Erik H)
* Fixes to get LedgerSMB running clearly using FCGI (Chris T)
+* Fixed unapproved transactions showing up on aging reports (Chris T)
+* Fixed new window menu item not showing up (Erik H)
+* Fixed alignment issue on Contact screen on Chrome (Chris T)
* Fixed cannot reconcile account with negative balance(Havard S, Erik H, h/t Nick P,3586757)
Berend T is Berend Tober
Modified: branches/1.3/LedgerSMB/RP.pm
===================================================================
--- branches/1.3/LedgerSMB/RP.pm 2012-11-16 09:19:52 UTC (rev 5196)
+++ branches/1.3/LedgerSMB/RP.pm 2012-11-16 10:51:22 UTC (rev 5197)
@@ -1839,7 +1839,7 @@
JOIN entity_credit_account c
ON (a.entity_credit_account = c.id)
JOIN company e ON e.entity_id = c.entity_id
- WHERE $where
+ WHERE a.approved AND $where
GROUP BY c.id, c.meta_number, e.legal_name, a.invnumber,
a.transdate, a.ordnumber, a.duedate, a.invoice, a.id,
a.curr, a.ponumber, a.notes, c.language_code
Modified: branches/1.3/LedgerSMB/Template/HTML.pm
===================================================================
--- branches/1.3/LedgerSMB/Template/HTML.pm 2012-11-16 09:19:52 UTC (rev 5196)
+++ branches/1.3/LedgerSMB/Template/HTML.pm 2012-11-16 10:51:22 UTC (rev 5197)
@@ -133,6 +133,7 @@
DELIMITER => ';',
TRIM => 1,
COMPILE_DIR=> $tempdir,
+ COMPILE_EXT=> 'lttc',
DEBUG => ($parent->{debug})? 'dirs': undef,
DEBUG_FORMAT => '',
}) || throw Error::Simple Template->error();
Modified: branches/1.3/UI/Contact/contact.css
===================================================================
--- branches/1.3/UI/Contact/contact.css 2012-11-16 09:19:52 UTC (rev 5196)
+++ branches/1.3/UI/Contact/contact.css 2012-11-16 10:51:22 UTC (rev 5197)
@@ -72,6 +72,7 @@
}
#company_div div.input_group2 {
+ width: 40em;
}
#company_div label {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.