This question has been flagged
2 Replies
13314 Views

Hello,  

How can i execute a simple class/set of methods written in python code that does not uses Odoo ORM in odoo?

Kindly help or guide me how can i achieve this.

Avatar
Discard
Best Answer

Hello, Sara


You can call orm methods without use of odoo orm with the use of xmlrpc call. You have to connect your server & Database to through xmlrpc methods written as python script.


Reference Document: \https\:\/\/www\.odoo\.com\/documentation\/8\.0\/api\_integration\.html\\\

\\
\\\

Sample\ script\:\ \http\:\/\/findnerd\.com\/list\/view\/How\-to\-Use\-XML\-RPC\-of\-Odoo\-8\/7666\/\\\

\

Just go through it . Best of luck 

 

Avatar
Discard
Best Answer

Hello, You can create a class object to use a view model and write a action definition in controller to execute the logic with that model.. 

Example:

class test(object):

     def __init__(self):

         ........



Avatar
Discard