Merge lp:~openerp-dev/openobject-addons/trunk-bug-1099391-cha into lp:openobject-addons

Proposed by Ajay Chauhan(OpenERP)
Status: Needs review
Proposed branch: lp:~openerp-dev/openobject-addons/trunk-bug-1099391-cha
Merge into: lp:openobject-addons
Diff against target: 11 lines (+2/-1)
1 file modified
purchase/wizard/purchase_line_invoice.py (+2/-1)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/trunk-bug-1099391-cha
Reviewer Review Type Date Requested Status
OpenERP Core Team Pending
Review via email: mp+143439@code.launchpad.net

Description of the change

Hello,

   I have solved https://bugs.launchpad.net/openobject-addons/+bug/1099391. solved the issue of getting 'False' in 'Additional Information'.

Thanks,
Ajay Chauhan

To post a comment you must log in.

Unmerged revisions

8506. By Ajay Chauhan(OpenERP)

[FIX] purchase: solved the issue of getting 'False' in 'Additional Information'

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'purchase/wizard/purchase_line_invoice.py'
2--- purchase/wizard/purchase_line_invoice.py 2012-12-18 22:50:15 +0000
3+++ purchase/wizard/purchase_line_invoice.py 2013-01-16 05:19:21 +0000
4@@ -58,7 +58,8 @@
5 def multiple_order_invoice_notes(orders):
6 notes = ""
7 for order in orders:
8- notes += "%s \n" % order.notes
9+ if order.notes:
10+ notes += "%s \n" % order.notes
11 return notes
12
13

Subscribers

People subscribed via source and target branches

to all changes: