[Erp5-report] r23220 - in /erp5/trunk/bt5/erp5_accounting: SkinTemplateItem/portal_skins/er...
nobody at svn.erp5.org
nobody at svn.erp5.org
Thu Aug 28 13:10:45 CEST 2008
Author: yusei
Date: Thu Aug 28 13:10:42 2008
New Revision: 23220
URL: http://svn.erp5.org?rev=23220&view=rev
Log:
Don't convert Message object to string. This is used when user see workflow history.
Modified:
erp5/trunk/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/PaymentTransaction_copyInvoiceProperties.xml
erp5/trunk/bt5/erp5_accounting/bt/revision
Modified: erp5/trunk/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/PaymentTransaction_copyInvoiceProperties.xml
URL: http://svn.erp5.org/erp5/trunk/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/PaymentTransaction_copyInvoiceProperties.xml?rev=23220&r1=23219&r2=23220&view=diff
==============================================================================
--- erp5/trunk/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/PaymentTransaction_copyInvoiceProperties.xml (original)
+++ erp5/trunk/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/PaymentTransaction_copyInvoiceProperties.xml Thu Aug 28 13:10:42 2008
@@ -67,7 +67,8 @@
<key> <string>_body</string> </key>
<value> <string>from Products.ERP5Type.Message import Message\n
\n
-N_ = lambda msg, **kw: str(Message(\'erp5_ui\', msg, **kw))\n
+# Return Message object, so that this message will be translated when it is rendered later.\n
+N_ = lambda msg, **kw: Message(\'erp5_ui\', msg, **kw)\n
\n
payment_transaction = context\n
\n
Modified: erp5/trunk/bt5/erp5_accounting/bt/revision
URL: http://svn.erp5.org/erp5/trunk/bt5/erp5_accounting/bt/revision?rev=23220&r1=23219&r2=23220&view=diff
==============================================================================
--- erp5/trunk/bt5/erp5_accounting/bt/revision (original)
+++ erp5/trunk/bt5/erp5_accounting/bt/revision Thu Aug 28 13:10:42 2008
@@ -1,1 +1,1 @@
-747
+748
More information about the Erp5-report
mailing list