跳至内容
菜单
此问题已终结
1 回复
3096 查看

Hi,

in the module sale, the default value on shop_id is _get_default_shop i want to change this default value shop_ids[0] ==> shop_ids[1]

def _get_default_shop(self, cr, uid, context=None):
    company_id = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.id
    shop_ids = self.pool.get('sale.shop').search(cr, uid, [('company_id','=',company_id)], context=context)
    if not shop_ids:
        raise osv.except_osv(_('Error!'), _('There is no default shop for the current user\'s company!'))
    return shop_ids[1]

but the result is always the first id from shop_sale. how I can change this default value .?? Thanks

形象
丢弃
最佳答案

Hi,

This might be due to User Defined Defaults. If the default value for Shop_id exists in Settings/Technical/Actions/User-Defined Defaults, then delete that from there. And recheck the default value.

Hope this may help you.

形象
丢弃
编写者

yes it's exactly what i want. Thanks Nehal

相关帖文 回复 查看 活动
1
7月 25
382
0
7月 25
420
1
5月 25
905
1
5月 25
910
0
3月 25
1050