[Erp5-report] r25022 - in /erp5/trunk/bt5/erp5_accounting: SkinTemplateItem/portal_skins/er...

nobody at svn.erp5.org nobody at svn.erp5.org
Tue Jan 6 15:04:59 CET 2009


Author: jerome
Date: Tue Jan  6 15:04:57 2009
New Revision: 25022

URL: http://svn.erp5.org?rev=25022&view=rev
Log:
this gap_id.isdigit() check no longer make sense

Modified:
    erp5/trunk/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/Account_getFormattedTitle.xml
    erp5/trunk/bt5/erp5_accounting/bt/revision

Modified: erp5/trunk/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/Account_getFormattedTitle.xml
URL: http://svn.erp5.org/erp5/trunk/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/Account_getFormattedTitle.xml?rev=25022&r1=25021&r2=25022&view=diff
==============================================================================
--- erp5/trunk/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/Account_getFormattedTitle.xml [utf8] (original)
+++ erp5/trunk/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/Account_getFormattedTitle.xml [utf8] Tue Jan  6 15:04:57 2009
@@ -59,8 +59,8 @@
 gap_id = account.Account_getGapId()\n
 title  = account.getTitle()\n
 \n
-if gap_id.isdigit():\n
-  title = "%s - %s"%(gap_id, title)\n
+if gap_id:\n
+  title = "%s - %s" % (gap_id, title)\n
 \n
 return title\n
 </string> </value>

Modified: erp5/trunk/bt5/erp5_accounting/bt/revision
URL: http://svn.erp5.org/erp5/trunk/bt5/erp5_accounting/bt/revision?rev=25022&r1=25021&r2=25022&view=diff
==============================================================================
--- erp5/trunk/bt5/erp5_accounting/bt/revision [utf8] (original)
+++ erp5/trunk/bt5/erp5_accounting/bt/revision [utf8] Tue Jan  6 15:04:57 2009
@@ -1,1 +1,1 @@
-841
+842




More information about the Erp5-report mailing list