Posts

Showing posts from August, 2017

Uninstall ODOO module using terminal

How to Uninstall Module from commend line: step-1 :        Goto Terminal>Type sudo su postgres step-2:         Type "psql database_name" step-3:               update ir_module_module set state='to remove' where name='module_name' and state='installed';

Create Sequence number

Create Sequence Number in ODOO Sequence number: In Xml: <?xml version="1.0" encoding="utf-8"?> <openerp>     <data noupdate="1">   #no change         <!-- Sequences for sale.order -->         <record id="customer_lead" model="ir.sequence.type">             <field name="name">sequence customer</field>             <field name="code">customer.sequence</field>         </record>         <record id="seq_cust_name" model="ir.sequence">             <field name="name">sequence customer</field>            ...

Odoo Autostart-Server

ODOO Auto-Start Server 1)   Locate openerp-server.conf file from odoo server files.                  Default path  :  /opt/openerp/server/install/openerp-server.conf                  Manual Search  from terminal:            locate openerp-server.conf 2) Open file and set following basic parameters for default configuration: [options] ; This is the password that allows database operations: ; admin_passwd = admin db_host = False db_port = False db_user = odoo db_password = False dbfilter = .* xmlrpc_port = 8069 addons_path = /usr/lib/python2.7/dist-packages/openerp/addons ; (Custom addons path can be added and separated by commas (,)) 3)Check your odoo server is running from above configured openerp-server.conf file. 4)     Create new script f...

Interview Questions

Interview Questions-August   1. What is your biggest weakness? 2. What would you do if you walked into the break room and staff was gossiping, what would you do? 3. A patient is visibly upset and wants to talk with you, but you’re busy with other patients. What do you do? 4. Where do you see yourself in five years? 5. Describe a time when you had to use skills outside your usual role. 6. What are you known for from your friends, family and workmates? 7. What inspires you? 8. Can you handle a fast paced and demanding work environment? 9. Why should we hire you? 10. What was the best customer service you’ve received? 11. Describe a time when you had to influence others. 12. What was a project you encountered difficulty with and how did you resolve it? 13. How do you feel your background and skills can benefit the organization? 14. What is your communication approach on projects? 15. What tools do you use to stay organized and how does tha...