
Search In
If you want to make Cashiers in Point Of Sale in OpenERP(Odoo) follow the below mentioned steps:-
Step-1 Go to Point Of sale module and Click it.
Step-2 Go to Cashiers ->Cashiers
Step-3 Go to Create Button and click it.
Step-4 Click on
Step-1 Install multi_search module.
Step-2 inherit = 'product.product' class in .py(Python file) in multi_search module.
In below example, I have custmozied .py file. You can directly copy the below python code in multi_search module -
class prod
In OpenERP first, install the sale and account module and then create the own module.
Follow these step given below:
Step1- Create your own module and then create merge_partner file and then pass this file in __init__.py file in your own module. Th
Hi which is the best payment gateway in India to accept foreign currency.. And how much transaction fee it charge
Thanks
If you want to get the outstanding residual value in invoice currency in Odoo then follow the following code in your .py file.
# -*- coding: utf-8 -*-
import json
from lxml import etree
from datetime import datetime
from dateutil.relativedelta imp
Here is just one thing to do: create the Python function which is called by the automated action.
The Python function ‘process_demo_check_queue’ will automatically create and update the value called by automated action.
So let us create this in the P
If you want to use name_get method in OpenERP(Odoo) follow the below mentioned code and paste it in your model.py file:
def name_get(self, cr, user, ids, context={}):
if not len(ids):
return []
res = []
for r in self.read(cr, user, ids, [’name’,’zip
If you want to merging data from older database to new database in PostgreSQL or want to merge data from other database(db1) to another database(db2), follow these below steps:
from db1, export all the necessary tables to csv using:
copy (select *
If you want to remove old OpenERP instance from your system follow the below mentioned steps:
Step-1 Go to start menu and click it.
Step-2 Click on programs button.
Step-3 Click Uninstall a program.
Step-4 after that Searching Programs and Feature
To check partner balance in openerp follow these step given below
Step1-First Install Account module, to install Account module in openerp
Step2- Go to Account -> Reporting -> Generic Report -> Partners -> Partners Balance and save