~vauxoo/addons-vauxoo/7.0-add_project_followers_rule-dev-ernesto

« back to all changes in this revision

Viewing changes to invoice_date_ref/invoice_date.py

  • Committer: Fernando.rangel
  • Date: 2013-07-18 17:48:35 UTC
  • mto: This revision was merged to the branch mainline in revision 651.
  • Revision ID: fernando.rangel@vauxoo.com-20130718174835-bx64q5nqgkzkyubw
[ADD][invoice_date_ref]add field date ref

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
from openerp.osv import osv, fields
 
3
 
 
4
class account_invoice(osv.Model):
 
5
 
 
6
    _inherit = 'account.invoice'
 
7
    _columns = {
 
8
    
 
9
        'date_info' : fields.date("Fecha Informativa:"),
 
10
    }
 
11