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.

181 lines
8.2 KiB

5 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
5 years ago
7 years ago
  1. # -*- coding: utf-8 -*-
  2. from openerp import api, fields, models
  3. class ResPartner(models.Model):
  4. _inherit = 'res.partner'
  5. # def _auto_init(self, cr, context=None):
  6. # """
  7. # Convert the column birthdate into date if it's not the case to avoid warning and data loss with orm conversion
  8. # """
  9. # cr.execute("select data_type from information_schema.columns where table_name = 'res_partner' and column_name= 'birthdate';")
  10. # res = cr.fetchone()
  11. # if not 'date' in res:
  12. # cr.execute("ALTER TABLE res_partner ALTER COLUMN birthdate TYPE date USING birthdate::date;")
  13. #
  14. # return super(ResPartner, self)._auto_init(cr, context=context)
  15. @api.multi
  16. def _invoice_total(self):
  17. account_invoice_report = self.env['account.invoice.report']
  18. if not self.ids:
  19. self.total_invoiced = 0.0
  20. return True
  21. all_partners_and_children = {}
  22. all_partner_ids = []
  23. for partner in self:
  24. # price_total is in the company currency
  25. all_partners_and_children[partner] = self.search([('id', 'child_of', partner.id)]).ids
  26. all_partner_ids += all_partners_and_children[partner]
  27. # searching account.invoice.report via the orm is comparatively
  28. # expensive (generates queries "id in []" forcing to build the
  29. # full table).
  30. # In simple cases where all invoices are in the same currency than
  31. # the user's company access directly these elements
  32. # generate where clause to include multicompany rules
  33. where_query = account_invoice_report._where_calc([
  34. ('partner_id', 'in', all_partner_ids),
  35. ('state', 'not in', ['draft', 'cancel']),
  36. ('company_id', '=', self.env.user.company_id.id),
  37. ('type', 'in', ('out_invoice', 'out_refund')),
  38. ('release_capital_request', '=', False),
  39. ])
  40. account_invoice_report._apply_ir_rules(where_query, 'read')
  41. from_clause, where_clause, where_clause_params = where_query.get_sql()
  42. # price_total is in the company currency
  43. query = """
  44. SELECT SUM(price_total) as total, partner_id
  45. FROM account_invoice_report account_invoice_report
  46. WHERE %s
  47. GROUP BY partner_id
  48. """ % where_clause
  49. self.env.cr.execute(query, where_clause_params)
  50. price_totals = self.env.cr.dictfetchall()
  51. for partner, child_ids in all_partners_and_children.items():
  52. partner.total_invoiced = sum(price['total'] for price in price_totals if price['partner_id'] in child_ids)
  53. @api.multi
  54. def _get_share_type(self):
  55. product_obj = self.env['product.product']
  56. share_type_list = [('', '')]
  57. for share_type in product_obj.search([('is_share', '=', True)]):
  58. share_type_list.append([share_type.default_code,
  59. share_type.short_name])
  60. return share_type_list
  61. @api.multi
  62. @api.depends('share_ids')
  63. def _compute_effective_date(self):
  64. # TODO change it to compute it from the share register
  65. for partner in self:
  66. if partner.share_ids:
  67. partner.effective_date = partner.share_ids[0].effective_date
  68. @api.multi
  69. @api.depends('share_ids', 'share_ids.share_product_id',
  70. 'share_ids.share_product_id.default_code',
  71. 'share_ids.share_number')
  72. def _compute_cooperator_type(self):
  73. for partner in self:
  74. share_type = ''
  75. for line in partner.share_ids:
  76. share_type = str(line.share_product_id.default_code)
  77. if share_type != '':
  78. partner.cooperator_type = share_type
  79. @api.multi
  80. @api.depends('share_ids')
  81. def _compute_share_info(self):
  82. for partner in self:
  83. number_of_share = 0
  84. total_value = 0.0
  85. for line in partner.share_ids:
  86. number_of_share += line.share_number
  87. total_value += line.share_unit_price * line.share_number
  88. partner.number_of_share = number_of_share
  89. partner.total_value = total_value
  90. cooperator = fields.Boolean(string='Cooperator',
  91. help="Check this box if this contact is a"
  92. " cooperator(effective or not).")
  93. member = fields.Boolean(string='Effective cooperator',
  94. help="Check this box if this cooperator"
  95. " is an effective member.")
  96. coop_candidate = fields.Boolean(string="Cooperator candidate",
  97. compute="_compute_coop_candidate",
  98. store=True,
  99. readonly=True)
  100. old_member = fields.Boolean(string='Old cooperator',
  101. help="Check this box if this cooperator is"
  102. " no more an effective member.")
  103. gender = fields.Selection([('male', 'Male'),
  104. ('female', 'Female'),
  105. ('other', 'Other')],
  106. string='Gender')
  107. national_register_number = fields.Char(string='National Register Number')
  108. share_ids = fields.One2many('share.line',
  109. 'partner_id',
  110. string='Share Lines')
  111. cooperator_register_number = fields.Integer(string='Cooperator Number')
  112. number_of_share = fields.Integer(compute=_compute_share_info,
  113. multi='share',
  114. string='Number of share',
  115. readonly=True)
  116. total_value = fields.Float(compute=_compute_share_info,
  117. multi='share',
  118. string='Total value of shares',
  119. readonly=True)
  120. company_register_number = fields.Char(string='Company Register Number')
  121. cooperator_type = fields.Selection(selection=_get_share_type,
  122. compute=_compute_cooperator_type,
  123. string='Cooperator Type',
  124. store=True)
  125. effective_date = fields.Date(sting="Effective Date",
  126. compute=_compute_effective_date,
  127. store=True)
  128. representative = fields.Boolean(string="Legal Representative")
  129. subscription_request_ids = fields.One2many('subscription.request',
  130. 'partner_id',
  131. string="Subscription request")
  132. data_policy_approved = fields.Boolean(string="Approved Data Policy")
  133. internal_rules_approved = fields.Boolean(string="Approved Internal Rules")
  134. @api.multi
  135. @api.depends('subscription_request_ids.state')
  136. def _compute_coop_candidate(self):
  137. for partner in self:
  138. if partner.member:
  139. is_candidate = False
  140. else:
  141. if len(partner.subscription_request_ids.filtered(lambda record: record.state == 'done')) > 0:
  142. is_candidate = True
  143. else:
  144. is_candidate = False
  145. partner.coop_candidate = is_candidate
  146. def has_representative(self):
  147. if self.child_ids.filtered('representative'):
  148. return True
  149. return False
  150. def get_representative(self):
  151. return self.child_ids.filtered('representative')
  152. def get_cooperator_from_email(self, email):
  153. return self.search([('cooperator', '=', True),
  154. ('email', '=', email)])
  155. # def get_cooperator_from_nin(self, national_id_number):
  156. # return self.search([('cooperator', '=', True),
  157. # ('national_register_number', '=',
  158. # national_id_number)])
  159. def get_cooperator_from_crn(self, comp_reg_number):
  160. return self.search([('cooperator', '=', True),
  161. ('company_register_number', '=', comp_reg_number)])