Ajay Chauhan(OpenERP) has proposed merging lp:~openerp-dev/openobject-addons/trunk-bug-1099391-cha into lp:openobject-addons.
Requested reviews: OpenERP Core Team (openerp) For more details, see: https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-1099391-cha/+merge/143439 Hello, I have solved https://bugs.launchpad.net/openobject-addons/+bug/1099391. solved the issue of getting 'False' in 'Additional Information'. Thanks, Ajay Chauhan -- https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-1099391-cha/+merge/143439 Your team OpenERP R&D Team is subscribed to branch lp:~openerp-dev/openobject-addons/trunk-bug-1099391-cha.
=== modified file 'purchase/wizard/purchase_line_invoice.py' --- purchase/wizard/purchase_line_invoice.py 2012-12-18 22:50:15 +0000 +++ purchase/wizard/purchase_line_invoice.py 2013-01-16 05:19:21 +0000 @@ -58,7 +58,8 @@ def multiple_order_invoice_notes(orders): notes = "" for order in orders: - notes += "%s \n" % order.notes + if order.notes: + notes += "%s \n" % order.notes return notes
_______________________________________________ Mailing list: https://launchpad.net/~openerp-dev-gtk Post to : openerp-dev-gtk@lists.launchpad.net Unsubscribe : https://launchpad.net/~openerp-dev-gtk More help : https://help.launchpad.net/ListHelp