
Search In
If you want to setup Google Drive in OpenERP (Odoo) follow the below mentioned steps: -
Step-1 install Google Drive⢠integration module.
Step-2 Go to the Settings menu and click it.
Step-3 Go to Google Drive ->Template
Step-4 Go to T
If you want to Extend the default Header in OpenERP(Odoo) follow the below mentioned code in your .xml file:
<template id="snippet_testimonial" name="Testimonial snippet">
<section class="snippet_testimonial">
<div class="contai
To get a many2one field of another model in your model as a drop-down list, you have to define a column or a field and a write a function for it.
Suppose, you want to get a list of invoices in a drop down list based on the customer selected or base
If you want to find out Access controls List in OpenERP(Odoo) follow the below mentioned steps:-
Step-1 Go to Settings Menu and click it.
Step-2 Go to Security button and Click it
Step-3 Access controls List and click it.
Step-4 In the belo
If you want to manage the point of sale payment method then follow the following code in your .py file.
import time
import pos_box_entries
from openerp import netsvc
from openerp.osv import osv, fields
from openerp.tools.translate import
The data mapping fixates on the powerful data between systems, It leads to more significant consistency, which results into preponderating productivity, reducing perpetual maintenance costs, amending readability of software and additionally making it
In below example, I have written Python script to remove 'provision' from selection list when configuring Cash Flow Codes. Paste below python code in .py file :
def fields_get(self, cr, uid, fields=None, context=None):
res = super(account_cashfl
In below example, I have written Python script to remove 'provision' from selection list when configuring Cash Flow Codes. Use below python code in your .py file :
def fields_get(self, cr, uid, fields=None, context=None):
res = super(account_cashf
If you want get multiple statement_lines.Then you have to follow the following code in your .py file.
import logging
import sets
from openerp import models, fields, api
_logger = logging.getLogger(__name__)
class barcode_rule(models.Model
Step-1 Install partner_res module.
Step-2 After that, install partner_res module.
In below example, I have customised partner_report module. You can directly use the below partner_res module in your addons and run in Odoo server.
import time
fro