Adding to the existing problem, I have the python files as given below,
------------inhouse.py----------- from osv import osv, fields class crm_inhouse(osv.osv): _name = 'crm.inhouse' _columns = { 'partner_id': fields.many2one('res.partner', 'Partner'), #'product_id': fields.char('Serial Number',size=64 ), 'product_id':fields.many2one('product.product', 'Product',required=True), 'serial no': fields.char('Serial Number',size=64, help="Enter the product unique identification number"), 'date': fields.date('Date of Request') } crm_inhouse() ---------__init__.py ------------- import inhouse When i install this custom module i got an error saying , "There is no reference to product.product" Any ideas on this ?, should i include product module ? -------------------- m2f -------------------- -- http://www.openobject.com/forum/viewtopic.php?p=54487#54487 -------------------- m2f -------------------- _______________________________________________ Tinyerp-users mailing list http://tiny.be/mailman2/listinfo/tinyerp-users