Merge lp:~openerp-dev/openobject-addons/7.0-bug-1064691-ggh into lp:openobject-addons/7.0

Proposed by Farid Ghanchi
Status: Merged
Merged at revision: 9110
Proposed branch: lp:~openerp-dev/openobject-addons/7.0-bug-1064691-ggh
Merge into: lp:openobject-addons/7.0
Diff against target: 12 lines (+1/-1)
1 file modified
product/report/product_label.xsl (+1/-1)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/7.0-bug-1064691-ggh
Reviewer Review Type Date Requested Status
OpenERP Core Team Pending
Review via email: mp+142688@code.launchpad.net

Description of the change

Hello,

In 7.0 When printing product labels report,
Without a space between the price and the currency (1.9USD instead of 1.95 USD).

Thanks.

To post a comment you must log in.
Revision history for this message
Martin Trigaux (OpenERP) (mat-openerp) wrote :

Patch merged, thanks for the fix

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'product/report/product_label.xsl'
2--- product/report/product_label.xsl 2012-08-02 13:40:12 +0000
3+++ product/report/product_label.xsl 2013-01-10 13:21:01 +0000
4@@ -67,7 +67,7 @@
5 <para style="nospace"><xsl:value-of select="code"/></para>
6 </td>
7 <td>
8- <para style="nospace" t="1"><xsl:value-of select="price"/> <xsl:value-of select="currency"/></para>
9+ <para style="nospace" t="1"><xsl:value-of select="price"/><xsl:text> </xsl:text><xsl:value-of select="currency"/></para>
10 </td>
11 </tr>
12 <tr>