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>

Learning Odoo 13 Module Development and Review

USING ODOO 13 Introduction This writing supposed to be a cheat sheet for helping myself to learn about Odoo, Odoo Development and also anyone who want to read this.   Odoo already have a good documentation in their websites you can check it here https://www.odoo.com/documentation/13.0/ What you need Odoo source you can get the source from odoo.com or github https://www.odoo.com/page/download or https://github.com/odoo/odoo. Right now I'm using the  https://www.odoo.com/page/download  . I did using the github twice so I'm already familiar with it but now i want to explore something new and maybe we will find something. Python v3.6++ (intermediate level). https://www.python.org/downloads/windows/ You can learn some basic “web development with python” first if you still new at programming. Search with google. Postgresql https://www.postgresql.org/download/ I’m using win Os for development and Visual Studio Code for IDE What should you re

BlackBerry ListField Tutorial Part 2

Blackberry ListField with Clicked Row this time i create based on rtm4bb code. it used manager as TableRowManager to create the field for each row. first i create MenuListField.java