I have developed a module 'newpatient' which I am unable to install through a Compressed file folder. I have read the OpenERP dev. book as well as this blog on creation of new module. When installing after a copy-paste job from this blog, the module 'notebook' gets installed & working. I apply the same steps (Even checked the code n times now) to my module but still CAN'T get it installed. Even though I get the msg on ERP client ' Modules installed', the module is not in the 'Modules' list. What could be possibly wrong?

Here's the code. the newpatient.py file:

from osv import fields, osv
import time

class newpatient(osv.osv):
_name = "Newpatient"
_description = "Creating new patient"
_columns = {'name':fields.char('Name',size=30,required=True),
            'address':fields.char('Address',size=50,required=True),
            }
newpatient()

The __init__.py file:

import newpatient

The __openerp__.py file:

{
"name" : "Newpatient",
"version" : "1.0",
"author" : "K Y",
"category" : "Generic Modules/Others",
"depends" : ["base"],
"init_xml" : [newpatient_view.xml],
"demo_xml" : [],
"update_xml" : [],
"installable": True,
"active": False
}

Really stuck. Would appreciate some help.

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

I'm not sure but try with

_name="newpatient"

To check if the module is installed, go to "Administration / Customisation / Database Structure" and look for newpatient (because it could be your view that isn't well formated)

Tell me if it works...

link|improve this answer
I guess that the case was a problem. I created a new module named 'npatient' and put exactly the same names(npatient) in both openerp.py & npatient.py & it worked. But the behavior is not consistent. Even when I've repeated these steps for other trial modules, they are not installed. I would do some testing further & let you know, the results. But at least I can explore some features now. Thanks so much for your help :) – Ashish Yadav Aug 31 '11 at 12:40
Welcome to Stack Overflow, @Ashish. If this answer solved your problem, please click on the green check mark on the left to mark it as the accepted answer. – Don Kirkby Aug 31 '11 at 16:44
Thanks Don for reminding me. – Ashish Yadav Sep 24 '11 at 12:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.