Skip to main content

My SAMPLE CASES FOR ODOO

 

My SAMPLE CASES FOR ODOO

VERSION 0.0.1 (18-aug-2020)

Introduction

Odoo is an ERP application but can be used for small business to medium business for free. I want to create a sample or maybe assumption when small business is using Odoo.

Right now (18 Aug 2020) I don’t know anything on how to use Odoo for e-Commerce business or maybe a Kiosk, small Cafe or even a retail store.

I know how to code python, I learn how to use python in Odoo framework, also I can create Custom Modules. But on how to use them, it’s still a grey area or even no colors. So this document will be a step for myself how to use Odoo in most cases and business, of course I’m only use the open source one.

I’m not an Odoo partner or work for Odoo. So this is not a sales promotion for Odoo. Just simply want to know how Odoo meant to be use.

This writing also meant to be use for my own learning document or even cheat sheet. To better understanding or to be better at using Odoo.

You can watch trailer for what Odoo can do at Odoo web site of course. https://www.odoo.com/page/tour

For starter let’s just dive in few google search. In hope maybe someone have a good understanding or already have running business or even just about to start with Odoo.

Keywords : odoo sample case.

Many cases can be read here https://www.willdooit.com/page/case-studies but it’s only overview on what are the problem and what solution Odoo will give.

Keywords : using Odoo

not much can be found. Only video from Odoo webinar. This one is How to manage a retail Company https://www.youtube.com/watch?v=3gYOJV6bDbQ they using Odoo free trial that is the Pro one. Not the Open Source one

This one talk about Develop app with Odoo Framework https://www.youtube.com/watch?v=rcuDKI6Hewk

this one talk about basic Odoo 8 for your business https://www.youtube.com/watch?v=nmvZH2BVQH0 they also sell Odoo class for a price. Wow $99 that’s really some pricey learning video.

So I guess everything already being upload or wrote or even used in video for Odoo. They done it in few webinar check it out https://www.youtube.com/user/openERPonline.

Then this writing will be creating sample cases based on real world or just based on assumption. I still don’t know where to start but I’ll be using Odoo video as base learning method and work it on my real world problem I guess. Many have been used for medium to large company but I still don’t know if its applicable for smaller business.

Maybe I start with kiosk or a simple web store, maybe a shoe retailer or an online food delivery company. Anyway I have not decided yet.

I’m going to end my writing for now. I will update this soon. After few trial with some of cases.

**Update

I found several case with challenge, problem, solution and success story with just few Google keywords. I'm using "odoo use case" on search engine and found some that maybe you might want to take a look

https://www.willdooit.com/page/case-studies 
This web site tell their experience when Integrating Odoo with some existing System.

https://www.featuredcustomers.com/vendor/odoo/case-studies

This is the main case studies from Odoo itself.

I don't think they publish on how they do it. All of this just a trailer. I'm sure they have a lot of meeting and customization happened. The hardest part would be on how to handle the user to commit in learning and using new Application.

Check out my tutorial or cheat sheet for Module development in Odoo https://javalearning-adventure.blogspot.com/2020/07/learning-odoo-module-development.html

Comments

Popular posts from this blog

JavaScript Real Time Calculation

I've been around looking for javascript that can do Real Time Calculation. javascript real time calculation, javascript real time calculation textbox. by some lucky keywords i found this code. this is exactly the code that i want. it really do the real time calculation. and it doesn't need onChange or OnBlur function. Just try it Example + = this is the javascript code <script type='text/javascript' > function startCalc(){   interval = setInterval("calc()",1); } function calc(){   one = document.autoSumForm.firstBox.value;   two = document.autoSumForm.secondBox.value;   document.autoSumForm.thirdBox.value = (one * 1) + (two * 1); } function stopCalc(){   clearInterval(interval); } </script> this is the html code <form name="autoSumForm">   <input class="right" type=text name="firstBox" value="" onFocus="startCalc();" onBlur="stopCalc();"><br...

iOS 5 Creating eCommerce with Shopping Cart App Part 1

[Created 11-28-2012] it seems like there are tons of tutorial ios and xcode for beginner out there. you can view the list at my post here http://javalearning-adventure.blogspot.com/2012/11/learning-xcode.html that's the link that i always update if i find anything. this tutorial will consist of step by step in creating Shopping Cart App. There will be Browse Product, Shopping Cart, and Checkout Method. I will update these later after i satisfied with the end result. These tutorial will also include web programming using php. but these php will only using basic sample not the very complex with mysql database and everything. these php pages will only creating json output. i think you don't need to learn php and json. you should only learn how to handle json using objective-c. I am still a beginner in xcode and objective-c, its still only 1 month since i started these tutorial. requirements suppose to be iOS 5 with xcode 4. [i will update these later][postponed...

BlackBerry ListField Tutorial Part 3

This Part 3 will consist of Networking, ListField, JSON and Thread. I'm really sorry for pending this part 3. I've been busy making money and still failed. Its just really hard to live in third world country by coding. anyway, There are few Library that you will need creating ListField with JSON data, but we wont touch that area first. we need to learn the basic. * note added : Aug 26 2013 The basic should be : Networking Thread ListField [if i find anything, will be add here]