2016-11-11 72 views
0

关于树状图记录的点击我想打开一个formview。当这个formview被打开时,我有两个one2many字段需要动态填充(在我的情况下,我有一个产品列表,并点击一个产品,我想搜索这个产品有多少库存移动)Openerp v7 API函数字段'one2many'类型

def get_last_sales(self, cr, uid, ids, context=None): 
    customer_loc_id = self.pool.get('stock.location').search(cr, uid, [('usage', '=', 'customer')]) 
    result = self.pool.get('stock.move').search(cr, uid, [('product_id', '=', ids), ('location_dest_id', '=', customer_loc_id)]) 
    print result 
    #raise Exception 
    return result 

def get_last_productions(self, cr, uid, ids, context=None, args=None, kwargs=None): 
    production_loc_id = self.pool.get('stock.location').search(cr, uid, [('usage', '=', 'production')]) 
    result = self.pool.get('stock.move').search(cr, uid, [('product_id', '=', ids), ('location_dest_id', '=', production_loc_id)]) 
    return result 

我想要的是与fields.function字段类似的功能。这应该工作,但它不会:

'last_sales':fields.function(_get_last_sales, type='one2many', relation='stock.move', readonly=True, store=store_triggers)

Server Traceback (most recent call last): File "/home/george/odoo/mattia_v7/openerp/addons/web/session.py", line 89, in send return openerp.netsvc.dispatch_rpc(service_name, method, args) File "/home/george/odoo/mattia_v7/openerp/netsvc.py", line 296, in dispatch_rpc result = ExportService.getService(service_name).dispatch(method, params) File "/home/george/odoo/mattia_v7/openerp/service/web_services.py", line 626, in dispatch res = fn(db, uid, *params) File "/home/george/odoo/mattia_v7/openerp/osv/osv.py", line 190, in execute_kw return self.execute(db, uid, obj, method, *args, **kw or {}) File "/home/george/odoo/mattia_v7/openerp/osv/osv.py", line 132, in wrapper return f(self, dbname, *args, **kwargs) File "/home/george/odoo/mattia_v7/openerp/osv/osv.py", line 199, in execute res = self.execute_cr(cr, uid, obj, method, *args, **kw) File "/home/george/odoo/mattia_v7/openerp/osv/osv.py", line 187, in execute_cr return getattr(object, method)(cr, uid, *args, **kw) File "/home/george/odoo/mattia_v7/openerp/osv/orm.py", line 3718, in read result = self._read_flat(cr, user, select, fields, context, load) File "/home/george/odoo/mattia_v7/openerp/osv/orm.py", line 3841, in _read_flat res2 = self._columns[f].get(cr, self, ids, f, user, context=context, values=res) File "/home/george/odoo/mattia_v7/openerp/osv/fields.py", line 1152, in get result = self._fnct(obj, cr, uid, ids, name, self._arg, context) File "/home/george/odoo/mattia_v7/openerp/addons/product/product.py", line 461, in _product_lst_price res[product.id] = product.list_price File "/home/george/odoo/mattia_v7/openerp/osv/orm.py", line 503, in __getattr__ return self[name] File "/home/george/odoo/mattia_v7/openerp/osv/orm.py", line 469, in __getitem__ elif field_column._type in ('one2many', 'many2many') and len(result_line[field_name]): TypeError: object of type 'bool' has no len()

我可以https://www.odoo.com/forum/help-1/question/can-i-store-field-function-with-the-type-one2many-356

看到,这似乎并没有得到支持。 答案是否正确?有没有解决这个问题的方法?

+0

请用* _get_last_sales *方法更新您的问题。 –

+0

@Odedra更新了我的问题 –

回答

1

是,存储x2many功能或计算领域毫无意义可言。为什么?这两种类型都需要一些特殊的设置,不能在字段定义上进行设置。在one2many上,你需要在另一个模型上使用相关的外键。在很多情况下,您必须为两个模型键定义表格。

我对odoo的使用经验显示:使用未保存的many2many函数字段(函数需要返回其常用字典中的id列表)。

此外,您的功能不正确,因为@Odedra在他的回答中提到过。

1

尝试用下面的代码:

def get_last_sales(self, cr, uid, ids, context=None): 

    customer_loc_id = self.pool.get('stock.location').search(cr, uid, [('usage', '=', 'customer')]) 
    result = {} 

    if customer_loc_id: 

     for record in self.browse(cr, uid, ids): 

      result[record.id] = self.pool.get('stock.move').search(cr, uid, [('product_id', '=', record.id), ('location_dest_id', '=', customer_loc_id[0])]) 

    return result 

def get_last_productions(self, cr, uid, ids, context=None, args=None, kwargs=None): 

    production_loc_id = self.pool.get('stock.location').search(cr, uid, [('usage', '=', 'production')]) 
    result = {} 

    if production_loc_id: 

     for record in self.browse(cr, uid, ids): 

      result[record.id] = self.pool.get('stock.move').search(cr, uid, [('product_id', '=', record.id), ('location_dest_id', '=', production_loc_id[0])]) 

    return result 

'last_sales':fields.function(_get_last_sales, type='one2many', relation='stock.move', readonly=True, string='Last Sales') 
+0

请更具体一点,这段代码做了什么?我为什么要这样做? –

+0

这段代码将解决你的问题。在你的代码中,有很多问题。例如,您没有将值传递给特定的记录ID。当我们使用* = *运算符时,我们需要设置适当的值。在你的情况下,你已经通过了名单。 *(customer_loc_id)*和*(production_loc_id)* –

+0

感谢您的时间和回复@Odedra。但我的主要问题并不在于这些方法。我的主要问题是如何打开我的记录的表单视图时调用方法。请忽略这些方法我已经将它们删除了,我只是插入它们以查看它们是否会被调用。 –