[FIX] sale_crm: Rename 'Close Opportunity' to 'Mark Won'

bzr revid: stw@openerp.com-20120803074013-4lzh8092oiu7xdcd
This commit is contained in:
Stephane Wirtel 2012-08-03 09:40:13 +02:00
parent e48b6a9a89
commit 6a92f8856b
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ class crm_make_sale(osv.osv_memory):
_columns = {
'shop_id': fields.many2one('sale.shop', 'Shop', required=True),
'partner_id': fields.many2one('res.partner', 'Customer', required=True, domain=[('customer','=',True)]),
'close': fields.boolean('Close Opportunity', help='Check this to close the opportunity after having created the sale order.'),
'close': fields.boolean('Mark Won', help='Check this to close the opportunity after having created the sale order.'),
}
_defaults = {
'shop_id': _get_shop_id,