You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
3.5 KiB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Copyright (c) 2010 Camptocamp SA (http://www.camptocamp.com)
  5. # All Right Reserved
  6. #
  7. # Author : Nicolas Bessi (Camptocamp), Joel Grand-Guillaume
  8. #
  9. # WARNING: This program as such is intended to be used by professional
  10. # programmers who take the whole responsability of assessing all potential
  11. # consequences resulting from its eventual inadequacies and bugs
  12. # End users who are looking for a ready-to-use solution with commercial
  13. # garantees and support are strongly adviced to contract a Free Software
  14. # Service Company
  15. #
  16. # This program is Free Software; you can redistribute it and/or
  17. # modify it under the terms of the GNU General Public License
  18. # as published by the Free Software Foundation; either version 2
  19. # of the License, or (at your option) any later version.
  20. #
  21. # This program is distributed in the hope that it will be useful,
  22. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. # GNU General Public License for more details.
  25. #
  26. # You should have received a copy of the GNU General Public License
  27. # along with this program; if not, write to the Free Software
  28. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  29. #
  30. ##############################################################################
  31. from openerp.osv import orm, fields
  32. class ResPartnerAdressCategory(orm.Model):
  33. def name_get(self, cr, uid, ids, context={}):
  34. if not len(ids):
  35. return []
  36. reads = self.read(cr, uid, ids, ['name', 'parent_id'], context)
  37. res = []
  38. for record in reads:
  39. name = record['name']
  40. if record['parent_id']:
  41. name = record['parent_id'][1] + ' / ' + name
  42. res.append((record['id'], name))
  43. return res
  44. def _name_get_fnc(self, cr, uid, ids, prop, unknow_none, unknow_dict):
  45. res = self.name_get(cr, uid, ids)
  46. return dict(res)
  47. def _check_recursion(self, cr, uid, ids):
  48. level = 100
  49. while len(ids):
  50. cr.execute('select distinct parent_id from res_partner_address_category\
  51. where id in ('+','.join(map(unicode, ids))+')')
  52. ids = filter(None, map(lambda x: x[0], cr.fetchall()))
  53. if not level:
  54. return False
  55. level -= 1
  56. return True
  57. _description = 'Partner address Categories'
  58. _name = 'res.partner.address.category'
  59. _columns = {
  60. 'name': fields.char('Category Name', required=True, size=64),
  61. 'parent_id': fields.many2one('res.partner.address.category', 'Parent Category', select=True),
  62. 'complete_name': fields.function(_name_get_fnc, method=True, type="char", string='Name'),
  63. 'child_ids': fields.one2many('res.partner.address.category', 'parent_id', 'Childs Category'),
  64. 'active': fields.boolean('Active'),
  65. }
  66. _constraints = [
  67. (_check_recursion, 'Error! You can not create recursive categories.', ['parent_id'])
  68. ]
  69. _defaults = {
  70. 'active': lambda *a: 1,
  71. }
  72. _order = 'parent_id,name'
  73. ResPartnerAdressCategory()
  74. class ResPartnerAddress(orm.Model):
  75. _inherit = "res.partner.address"
  76. _columns = {
  77. 'category_id': fields.many2many(
  78. 'res.partner.address.category',
  79. 'res_partner_address_category_rel',
  80. 'adress_id',
  81. 'category_id',
  82. 'Adress categories',
  83. ),
  84. }
  85. ResPartnerAddress()