Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
4 Ответы
3440 Представления

two class has same field name  ('name')

when i  inherit  these two class into new class it show

if field_name and field_name not in self._fields:

TypeError: unhashable type: 'list'

is there any way to solve?

 

Аватар
Отменить

can you put your code here ? It is easy to resolve.

Why dont you change one of them

Лучший ответ

Hello,

_name is used to define object like account.invoice, sale.order, purchase.order, res.users.

You have to define  name field in your columns, If  you don't define name field in column than  need to define field in _rec_name.

For more info please refer the below link.

http://dirtyhandsphp.blogspot.in/2014/09/odooopenerp-recname-and-nameget.html

Thanks.

 

Аватар
Отменить
Автор Лучший ответ


class StockMove(osv.osv):

_name = 'mrp.stockmove'

_inherit = ['stock.move', 'ir.attachment']

_columns = {

'production_id': fields.many2one('mrp.production', 'Production Order for Produced Products', select=True, copy=False),

'raw_material_production_id': fields.many2one('mrp.production', 'Production Order for Raw Materials', select=True),

'consumed_for': fields.many2one('mrp.stockmove', 'Consumed for', help='Technical field used to make the traceability of produced products'),

}

def check_tracking(self, cr, uid, move, lot_id, context=None):

 .....................................

.............................


In these two inherited class has 'name' field 

Аватар
Отменить