
Search In
Managers can belong to any industry or managerial level but their core responsibilities remain the same. They are leaders entrusted to develop their team members, manage projects, oversee team dyn
If you want to put the invoice link and partner_id on the account_move follow the following code :
invoice_id = fields.Many2one('account.invoice', oldname="invoice")
partner_id = fields.Many2one('res.partner', string='Partner', index=True, ond
OK, so you have an idea and you believe that there is a need of a technology solution. Basically you want to get the idea implemented. You pen down your requirements and start looking for an implementation partner.
How do you go about finalizing the
Be it a small industry or a big organization, the data from all of them needs to have access at all the hours of the day, year, or month. Also, why worry about the storage maintenance and hardware maintenance costs when there is cloud hosting&nb
If you want to create date fields to assign current date in .py file in openerp, you can use the below code for this
from datetime import date
from openerp.osv import fields, osv
from openerp.tools.translate import _
class account_invoice(osv.osv_m
To install account module and searching by name in account module in customers invoice form and get results in particular name use this code in account_invoice file in account module in openerp.
Code given below:-
def name_search(self, cr, user, n
Odoo Python Class : use case for code in api v8, underscore lowercase notation for old api.
And Variable name use following classes and Api to given below.
use camelcase for model variable
use underscore lowercase notation for common variable.
since
HTML to PDF using TCPDF in Cakephp 2
Hello friends, today I am writing this blog which will let you know how to convert HTML to PDF using Cakephp 2.x. We are going to use TCPF library to achieve this.
Lets begin with downloading TCPDF from Git
In Odoo first install the accounting module and then if users want all customer related account invoice to be added only to the product price and the quantity of the product calculated and stored in the fields in res.partner, for this follow the step
If you want make sure the invoice due date should contain due date ,entered by user when there is no payment term defined in Odoo you have to customized .py file in account.invoice module.For example you can see below code .
import itertools
from l