res_currency.py 227 B

12345678
  1. # -*- coding: utf-8 -*-
  2. from openerp import api, fields, models
  3. class res_currency(models.Model):
  4. _name = 'res.currency'
  5. _inherit = 'res.currency'
  6. format = fields.Char('Currency Format', size=15, default='#,#.##')