All Projects → MohammedRashad → Odoo-REST-API

MohammedRashad / Odoo-REST-API

Licence: GPL-3.0 License
RESTful Web Service for interfacing with Odoo ERP

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to Odoo-REST-API

odoo app
Odoo App Community version
Stars: ✭ 34 (+3.03%)
Mutual labels:  odoo, odoo-apps
addons-onestein
Odoo modules developed by Onestein
Stars: ✭ 58 (+75.76%)
Mutual labels:  odoo, odoo-apps
generic-addons
Set of generic addons for Odoo
Stars: ✭ 26 (-21.21%)
Mutual labels:  odoo, odoo-apps
Odoo
Odoo. Open Source Apps To Grow Your Business.
Stars: ✭ 23,596 (+71403.03%)
Mutual labels:  odoo, odoo-apps
odoo backend theme
No description or website provided.
Stars: ✭ 16 (-51.52%)
Mutual labels:  odoo, odoo-apps
koa-rest-router
Most powerful, flexible and composable router for building enterprise RESTful APIs easily!
Stars: ✭ 67 (+103.03%)
Mutual labels:  restful-api
gobang04
五子棋社区,前后端完全分离,SSM框架,CORS跨域访问,SSO单点登录,Bootstrap界面,RESTful构架风格,Netty即时通信,Token口令授权,Web端与客户端通信。异步请求,面向接口编程。
Stars: ✭ 14 (-57.58%)
Mutual labels:  restful-api
TriTan-CMS
TriTan CMS is a developer centric content management framework that allows you to go completely headless or nearly headless. With the mighty TriTan, you can build amazing RESTful applications and robust websites.
Stars: ✭ 19 (-42.42%)
Mutual labels:  restful-api
poco restful webservice
A RESTful API using Poco C++ Libraries.
Stars: ✭ 54 (+63.64%)
Mutual labels:  restful-api
vsphere-automation-sdk-rest
REST (Postman and JavaScript) samples and API reference documentation for vSphere using the VMware REST API
Stars: ✭ 194 (+487.88%)
Mutual labels:  restful-api
pdf
This is web application, micro-stackoverflow, built with Spring MVC 5, Hibernate 5, AOP and Spring Security etc . Unregistered user can search for questions and look into details including answer however registered member can post questions and answers.
Stars: ✭ 24 (-27.27%)
Mutual labels:  restful-api
Desenvolvimento-Android-do-absoluto-zero-para-iniciantes
Visite meu site e conheça todos os meus cursos 100% on-line.
Stars: ✭ 33 (+0%)
Mutual labels:  restful-api
travels-java-api
An API for travel management. It is built with Java, Spring Boot, and Spring Framework. A toy-project to serve as a theoretical basis for the Medium series of articles I wrote about Java+Spring.
Stars: ✭ 139 (+321.21%)
Mutual labels:  restful-api
RestSharpFramework
Framework for testing RESTful Services with RestSharp and C# HTTP Client
Stars: ✭ 18 (-45.45%)
Mutual labels:  restful-api
odoo asterisk
Odoo based Asterisk IP-PBX
Stars: ✭ 38 (+15.15%)
Mutual labels:  odoo
live-rates.com
Forex Real-time Streaming, Web-service & Rest API
Stars: ✭ 30 (-9.09%)
Mutual labels:  restful-api
instagram-api-clone
Instagram RESTful API clone made with Django REST framework
Stars: ✭ 56 (+69.7%)
Mutual labels:  restful-api
bert sa
bert sentiment analysis tensorflow serving with RESTful API
Stars: ✭ 35 (+6.06%)
Mutual labels:  restful-api
RuralEducation
An app that helps rural students in their education.I used Firebase Realtime database,authentication,Networking requests,User Chats,Google Places Api,Paytm Payment Gateway Integration,Google places Autocomplete Api,Firebase Chat
Stars: ✭ 22 (-33.33%)
Mutual labels:  restful-api
flask-base-api
A complete boilerplate Flask RESTful API code.
Stars: ✭ 45 (+36.36%)
Mutual labels:  restful-api

Odoo REST Web Service

RESTful Web Service for Interfacing with Odoo

Introduction

Working on other version with python -- odoo 13

Odoo is a suite of web based open source business apps.
The main Odoo Apps include an Open Source CRM, Website Builder, eCommerce, Warehouse Management, Project Management, Billing & Accounting, Point of Sale, Human Resources, Marketing, Manufacturing, Purchase Management, ...

Odoo Apps can be used as stand-alone applications, but they also integrate seamlessly so you get a full-featured Open Source ERP when you install several Apps.

This API provides a simple way for interfacing with Odoo and it's various modules. Though orignally implemented for Customers and Sales modules, it can be used for virtually any other module by just changing the model name and columns.

API Documentation

The API interfaces with odoo using RPC Calls performed by the ripcord library for PHP, all the handling of the RPC and Authentication is in the Odoo.php file, which has the following structure :

Odoo($url, $db, $username, $password) // The constructor 

login() // Performs the login operation using ripcord

To start using the API, go to index.php

//In index.php, add your parameters here
$url = '';
$db = '';
$username = '';
$password = '';

Endpoints :

  • Customer module
    • get
    • add
    • all
    • edit

The Customer Module example exhibits the ability to perform a full CRUD operation on the module for any fields, more fields can be easily added to the code in the Customer.php, the main component of any function in the customer module is the "execute_kw" function that performs the RPC call

  • Sales Module
    • add
    • display

The Sales Module example exhibits the ability to perform read and write operations for more complex modules like adding invoices and completing orders , more fields can be easily added to the code in the Customer.php, the main component of any function in the customer module is the "execute_kw" function that performs the RPC call

This API can be easily extended by refering to the documentation of odoo functions from the official website.

License

The API is licensed under GNU GPL v3, usage and reproduction of this work must be with respect to its terms

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].