[FIX]purchase:frow is replace by from in tool-tip
authorMayur Maheshwari (OpenERP) <mma@tinyerp.com>
Wed, 21 Dec 2011 11:59:30 +0000 (17:29 +0530)
committerMayur Maheshwari (OpenERP) <mma@tinyerp.com>
Wed, 21 Dec 2011 11:59:30 +0000 (17:29 +0530)
lp bug: https://launchpad.net/bugs/907290 fixed

bzr revid: mma@tinyerp.com-20111221115930-gsh921fcf6p0x23x

addons/purchase/purchase.py

index b61f0d3..5e79c3e 100644 (file)
@@ -181,7 +181,7 @@ class purchase_order(osv.osv):
         'invoiced': fields.function(_invoiced, string='Invoiced & Paid', type='boolean', help="It indicates that an invoice has been paid"),
         'invoiced_rate': fields.function(_invoiced_rate, string='Invoiced', type='float'),
         'invoice_method': fields.selection([('manual','Based on Purchase Order lines'),('order','Based on generated draft invoice'),('picking','Based on receptions')], 'Invoicing Control', required=True,
-            help="Based on Purchase Order lines: place individual lines in 'Invoice Control > Based on P.O. lines' frow where you can selectively create an invoice.\n" \
+            help="Based on Purchase Order lines: place individual lines in 'Invoice Control > Based on P.O. lines' from where you can selectively create an invoice.\n" \
                 "Based on generated invoice: create a draft invoice you can validate later.\n" \
                 "Based on receptions: let you create an invoice when receptions are validated."
         ),