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...

MySQL and Java Developer's Guide

Now we begin the second book and thats called MySQL and Java Developer's Guide. Book before this is quiet advance for beginner but still for beginner. And i notice that previous book had only 4 chapter. Ill read that book again. Okay Lets start. This book consist MySQL and Java plus Connector/J that connect Java to MySQL. This book is perfect for beginner but not beginner in programming. I think that this book is a hardcore book. Everything they wrote even if they use GUI Object like form and button they only use a "Notepad" or should i say "Text Editor". i really love this book. From this book you need to install three things to make the code in the book work. a. Install mySql b. Install Java SDK @ http://java.sun.com/j2se/1.4.1/download.html. c. Installing Connector/J @mysql.com version 3.0 thats from the book. I use this : jdk-1_5_0_11-nb-5_5-win-ml.exe notice the nb-5_5 that means itll install netbeans 5.5. netbean 5.5 is IDE for jdk 1.5. its devel...

Trying IBM Cloud Foundry with Go

  Pre~ So sometime ago I try to search free host for Go and found out that IBM Cloud gave free stuff on their system. I went and try but didn’t read the document too much, I’m just excited to try the GO server. I’ve been learning the buffalo framework for a while then I have to stop because got injured in my ankle and try to rehabilitate them for a few month so I can walk again. Anyway I found free stuff from IBM then I just want to try it out. This writing is just a documentation for me and anyone who see it useful. I didn’t try to write a very detailed or well edited science stuff. This document was meant to be a small cheatsheet for future reference. IBM CLOUD DASHBOARD If you already registered and logged in, you should be redirected to the Dashboard. If you see the menu  from image below you’ll notice there are a lot of stuff ready to be explored. Now I just need to find where I could upload my GO code into server. Anyway I chose the Cloud Foundry just because its o...