Soaeb Abdullah How to Install Odoo 13 Using Docker To run Odoo on docker, we have to set-up two docker containers. For that, we can use docker images 1. Odoo Image: Odoo has an official image (Odoo Image) on Docker in order to install Odoo on th... Docker Odoo13
Umme Huzaifa How to add an attribute instead of replacing an existing field in odoo 13? For example, for an existing field "percent_commission", we will add an attribute "readonly". Here is the format: <field name ="percent_commission" position ="attributes" > <attribute name ="readon...
Umme Huzaifa How to add Two different views for the same model in Odoo 13? Suppose we want to add two different views for a custom model name 'purchase.req'. One is for the base user and another is for the manager. <record model ="ir.actions.act_window" id ="purchase_o...
Umme Huzaifa How do Restrict Users to show their own Entries only? Use a domain filter using [('user_id', '=', uid)] Here is an example below: <record model="ir.actions.act_window" id="purchase_order_action"> <field name="name">Purchase Requisition</field> <field...
Umme Huzaifa HOW TO GET THE CURRENT LOGIN USER ID IN THE FIELD? There are several ways to get this. One of the easiest solutions is to use compute field. Example: current_user_id = fields.Many2one('res.users', string='Current User', readonly=True, compute="_comput...
Umme Huzaifa How to compare fields in a filter? Suppose I want to compare the user_id field with the currently logged-in user id. Since we cannot use two field names in the filter, There is a solution here. We can use another field to check this. H...
Azizul Haq Rana Do you need ERP in startup? ERP software can be beneficial for startups in a number of ways. Some of the reasons why a startup might consider using ERP software include Improved efficiency: ERP software can help streamline and a...
Azizul Haq Rana Creating Products Inventory > master Data> Product > Create To Create Product Please go to Inventory > master Data> Product > Create Fill the general information first following Name: Product Type: Product Category: ...
Umme Huzaifa How To Inherit an Action Button and Add a Confirmation Message in Odoo Suppose you want to add a confirmation message to a purchase order. Here is an example below: <record id ="view_purchase_order_form_confirm_msg" model ="ir.ui.view" > <field name ="name" > view.pu...
Umme Huzaifa How To Fix Invoice Line Value Missing On Saving issue || Adding Field in Invoice Line Suppose we have a custom field free_quantityty in the invoice line. But when we save the invoice the value is disappeared. The reason is that there are two One2Many fields in this model (account.move)...
Soaeb Abdullah রোবট কর্মী করোনা মহামারি শেষে কর্মীসংকট দেখা দেওয়ায় সিঙ্গাপুরের বিভিন্ন প্রতিষ্ঠানে দিন দিন চাহিদা বাড়ছে রোবটের। ফলে ধীরে ধীরে দেশটিতে মানুষের কাজের জায়গা দখল করে নিচ্ছে রোবট। কফি তৈরির পাশাপাশি নির্মাণ প্রতিষ্ঠ...
Azizul Haq Rana Odoo 13 Expire Date Configurations To Activate Expire date feature you have to enable *Two* setting on inventory: 1. Lot/Serial Number 2. Expiration Dates You will find those setting under Inventory-->Configurations-->Settings--> Trace... Expire Date Inventory LOT Lifetime Odoo13