Merge lp:~openerp-dev/openobject-addons/6.1-opw-579319-ksa into lp:openobject-addons/6.1

Proposed by Kirti Savalia(OpenERP)
Status: Needs review
Proposed branch: lp:~openerp-dev/openobject-addons/6.1-opw-579319-ksa
Merge into: lp:openobject-addons/6.1
Diff against target: 12 lines (+1/-1)
1 file modified
report_webkit_sample/report/report_webkit_html.mako (+1/-1)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/6.1-opw-579319-ksa
Reviewer Review Type Date Requested Status
Naresh(OpenERP) Pending
Review via email: mp+124916@code.launchpad.net

Description of the change

Hello,

Steps to reproduce:

Install membership module
1.Create a partner
2.Click on Join Membership
3.Select the membership Product
4.Confirm Membership Invoice (State Draft)
5.Click on WebkitInvoice reports
6.Open invoice

Document and partner ref field displays "False" instead of blank in the Webkit Invoice.

Thanks

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

Hello,

This bug was qualified as Not Relevant on Trunk (means that architecture on trunk has changed and so this bug has no meaning anymore). If this Merge Proposal could not be merged in v6.1 at the release of v7.0, it will be closed.

Thanks,
Naresh Soni

Unmerged revisions

6996. By Kirti Savalia(OpenERP) <email address hidden>

[FIX]:Document and partner ref field displays false instead of blank in the Webkit Invoice

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'report_webkit_sample/report/report_webkit_html.mako'
--- report_webkit_sample/report/report_webkit_html.mako 2011-01-14 00:11:01 +0000
+++ report_webkit_sample/report/report_webkit_html.mako 2012-09-18 13:04:21 +0000
@@ -42,7 +42,7 @@
42 <br/>42 <br/>
43 <table class="basic_table" width="90%">43 <table class="basic_table" width="90%">
44 <tr><td>${_("Document")}</td><td>${_("Invoice Date")}</td><td>${_("Partner Ref.")}</td></tr>44 <tr><td>${_("Document")}</td><td>${_("Invoice Date")}</td><td>${_("Partner Ref.")}</td></tr>
45 <tr><td>${inv.name}</td><td>${formatLang(inv.date_invoice, date=True)|entity}</td><td>&nbsp;</td></tr>45 <tr><td>${inv.name or ''|entity}</td><td>${formatLang(inv.date_invoice, date=True)|entity}</td><td>${inv.number or ''|entity}</td></tr>
46 </table>46 </table>
47 <h1><br /></h1>47 <h1><br /></h1>
48 <table class="list_table" width="90%">48 <table class="list_table" width="90%">