Skip to main content

Posts

Showing posts with the label Python

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

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