[IMP]product: remove space between the price and the currency
[odoo/odoo.git] / addons / l10n_ro / res_partner.py
1
2 # -*- encoding: utf-8 -*-
3 ##############################################################################
4 #
5 #    OpenERP, Open Source Management Solution   
6 #    Copyright (C) 2012 (<http://www.erpsystems.ro>). All Rights Reserved
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 from openerp.osv import fields, osv
24
25 class res_partner(osv.osv):
26     _name = "res.partner"
27     _inherit = "res.partner"
28     _columns = {
29         'nrc' : fields.char('NRC', size=16, help='Registration number at the Registry of Commerce'),
30     }
31
32     # The SQL constraints are no-ops but present only to display the right error message to the
33     # user when the partial unique indexes defined below raise errors/  
34     # The real constraints need to be implemented with PARTIAL UNIQUE INDEXES (see auto_init),
35     # due to the way accounting data is delegated by contacts to their companies in OpenERP 7.0.
36     _sql_constraints = [
37        ('vat_uniq', 'unique (id)', 'The vat of the partner must be unique !'),
38        ('nrc_uniq', 'unique (id)', 'The code of the partner must be unique !')
39     ]
40
41     def _auto_init(self, cr, context=None):
42         result = super(res_partner, self)._auto_init(cr, context=context)
43         # Real implementation of the vat/nrc constraints: only "commercial entities" need to have
44         # unique numbers, and the condition for being a commercial entity is "is_company or parent_id IS NULL".
45         # Contacts inside a company automatically have a copy of the company's commercial fields
46         # (see _commercial_fields()), so they are automatically consistent.
47         cr.execute("""
48             DROP INDEX IF EXISTS res_partner_vat_uniq_for_companies;
49             DROP INDEX IF EXISTS res_partner_nrc_uniq_for_companies;
50             CREATE UNIQUE INDEX res_partner_vat_uniq_for_companies ON res_partner (vat) WHERE is_company OR parent_id IS NULL;
51             CREATE UNIQUE INDEX res_partner_nrc_uniq_for_companies ON res_partner (nrc) WHERE is_company OR parent_id IS NULL;
52         """)
53         return result
54
55     def _commercial_fields(self, cr, uid, context=None):
56         return super(res_partner, self)._commercial_fields(cr, uid, context=context) + ['nrc']
57
58 res_partner()
59
60 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: