openerp-dev-web team mailing list archive
-
openerp-dev-web team
-
Mailing list archive
-
Message #04072
[Merge] lp:~openerp-dev/openobject-addons/trunk-bug-732518-jam into lp:openobject-addons
Jigar Amin - OpenERP has proposed merging lp:~openerp-dev/openobject-addons/trunk-bug-732518-jam into lp:openobject-addons.
Requested reviews:
Bhumika (OpenERP) (sbh-openerp)
Related bugs:
Bug #732518 in OpenERP Addons: "6.0.1 CRM - Opportunity - convert to quot problem"
https://bugs.launchpad.net/openobject-addons/+bug/732518
For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-732518-jam/+merge/53011
Hello,
Changes with Merge proposal
lp:732518 : sale_crm : Opportunity - Convert to Quote Should only show list customer
Kindly Review this
Thank You
--
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-732518-jam/+merge/53011
Your team OpenERP R&D Team is subscribed to branch lp:~openerp-dev/openobject-addons/trunk-bug-732518-jam.
=== modified file 'sale_crm/wizard/crm_make_sale.py'
--- sale_crm/wizard/crm_make_sale.py 2011-01-14 00:11:01 +0000
+++ sale_crm/wizard/crm_make_sale.py 2011-03-11 12:56:33 +0000
@@ -142,7 +142,7 @@
_columns = {
'shop_id': fields.many2one('sale.shop', 'Shop', required=True),
- 'partner_id': fields.many2one('res.partner', 'Customer', 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.'),
}
_defaults = {
Follow ups