
Search In
Hi Friends,
Please help me with the error ,How to make the rental product and how to make invoice for it ,in OPENERP-8 (ODOO).
In Odoo, first, create database on server then install like: sale and account module and mapping with country account like as united state currency is $ then install module:
United States – Accounting install. And If users want to send an email
To Add Extra Fields in account module in openerp use below code
In OpenERP Add Extra fields in account module to create new module name is invoice_cartage
and add these 4 file.
1- __init__.py file ---
import invoice_crtage
2- __openerp__.py fi
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
Workflows can be moved along by sending them signals. Instead of using the top-level execute_kw, signals are sent using exec_workflow. For example code is like below.
client = models.execute_kw(
db, uid, password,
'res.partner', 'search_read
Hi Friends, Please help me with the Problem below
I want to make the rental product along with invoice for it in OPENERP-8 (ODOO).
Step-1 install the account_invoice_copy module.
Step-2 After that customize .py file in account_invoice_copy module.
In below example, I have custmozied .py file. You can directly copy the below python code in your .py file -
def copy(self, c
In Odoo first we create existing own module and inherits the account invoice object in your own module. Than fetch all object like as a account.move , account.journal, account.period in your own module and update the account.journal and also invoice_
Installation of Subscription Module in Open ERP
Step 1:- Install -> Subscription Module.
Step 2:- Go to Settings -Technical - Automation - Recurring Types -create record must be Invoice.
Step 3:- Go to Settings - Technical -Automation- Rec
In Odoo first, you have to install accounting module and in our system add existing fields and inherit the accounting module in our own module.
We will follow these step given below:
Step1- First we create our own module and inherits the ac