# -*- coding: utf-8 -*- from openerp import _, api, models, fields import datetime import logging _logger = logging.getLogger(__name__) TARGET_STATUS_SELECTION = [ ('unsubscribed', 'Unsubscribed'), ('suspended', 'Suspended') ] EXTRA_COOPERATIVE_STATE_SELECTION = [ ('not_concerned', 'Not Concerned'), ('unsubscribed', 'Unsubscribed'), ('exempted', 'Exempted'), ('vacation', 'On Vacation'), ('up_to_date', 'Up to date'), ('alert', 'Alert'), ('suspended', 'Suspended'), ('delay', 'Delay'), ('blocked', 'Blocked'), ('unpayed', 'Unpayed'), ('gone', 'Gone'), ('associated', 'Associated') ] class ResPartner(models.Model): _inherit = 'res.partner' # Columns Section makeups_to_do = fields.Integer( "Number of make-ups to done", default= 0) target_status = fields.Selection( selection=TARGET_STATUS_SELECTION, default='') cooperative_state = fields.Selection( selection=EXTRA_COOPERATIVE_STATE_SELECTION, default='not_concerned') extra_shift_done = fields.Integer( "Number of shift done with both of the associate", default= 0) @api.model def run_process_target_status(self): """Method called by cron task""" # final_ftop_point, target_status conf = self.env['ir.config_parameter'] makeups_todo_after_unsubscribed = conf.get_param("lacagette_membership.makeups_to_do_after_unsubscribed") result = 'done' for p in self.env['res.partner']\ .search([('target_status', '!=', "")]): try: new_values = {'target_status': "", "date_alert_stop": False} final_points = p.final_ftop_point if p.shift_type == "ftop" else p.final_standard_point if final_points < 0: new_values['cooperative_state'] = p.target_status if new_values['cooperative_state'] == "unsubscribed": new_values['makeups_to_do'] = makeups_todo_after_unsubscribed # Get points difference to set points to -2 current_points = p['final_' + p.shift_type + '_point'] target_points = -2 points_diff = abs(current_points - target_points) if points_diff != 0: if current_points > target_points: points_update = - points_diff else: points_update = points_diff data = { 'name': "Désinscription : passage à -2 pts", 'shift_id': False, 'type': p.shift_type, 'partner_id': p.id, 'point_qty': points_update } self.env['shift.counter.event'].create(data) """ unlink model: "shift.template.registration" to delete all future shifts linked to this coop. """ now = datetime.datetime.now().isoformat() for streg in self.env['shift.template.registration']\ .search([('partner_id', '=', p.id)]): streg.unlink() for sreg in self.env['shift.registration']\ .search([('partner_id', '=', p.id), ('date_begin', '>', now)]): sreg.unlink() # Close extensions for ext in self.env['shift.extension']\ .search([('partner_id', '=', p.id), ('date_start', '<=', now), ('date_stop', '>=', now)]): ext.update({'date_stop': now}) try: mail_template = self.env.ref('coop_membership.unsubscribe_email') if mail_template: mail_template.send_mail(p.id) except Exception as e: _logger.error("run_process_target_status - send mail : %s - Process not interrupted", str(e)) p.update(new_values) except Exception as e: _logger.error("run_process_target_status : %s", str(e)) result = 'error' return result #@api.onchange('cooperativestate') : could be used only if it is called from client @api.model def run_close_unnecessary_opened_extensions(self): """Method called by cron task""" sql = """ SELECT s.id FROM shift_extension as s WHERE s.date_stop > now() AND partner_id IN (SELECT id FROM res_partner WHERE cooperative_state in ('up_to_date', 'unsubscribed')) """ self.env.cr.execute(sql) extension_ids = self.env.cr.fetchall() if len(extension_ids) > 0: extension_model = self.env['shift.extension'] today = datetime.datetime.now().strftime("%Y-%m-%d") for ext in extension_model.search([('id', 'in', extension_ids)]): ext.update({'date_stop': today}) @api.multi def can_have_extension(self): """Return if the member can ask for an extension""" answer = True conf = self.env['ir.config_parameter'] max_nb = int(conf.get_param("lacagette_membership.max_successive_extensions")) if max_nb == 1: args = [('member_id', '=', self.id)] states = self.env['member.state.change']\ .search(args, order='write_date DESC', limit=2) """ member.state.change may have no record for the current member """ if len(states) > 0: if (len(states) == 1 and states[0]['state'] == 'delay' or len(states) == 2 and states[1]['state'] == 'delay'): answer = False else: # need to load data member = self.env['res.partner'].search([('id', '=', self.id)])[0] # should exist an other way to do it , but haven't found it if member.cooperative_state != "up_to_date": answer = False else: # TODO : Must have a look to previous extensions pass return answer def set_special_state(self, cr, uid, partner, context=None): if partner['state'] == 'cancel_special': partner['state'] = 'unsubscribed' return self.write(cr, uid, [partner['id']], {'cooperative_state': partner['state']} , context=context) def _write_state_change(self, state): data = {'member_id': self.id, 'state': state} self.env['member.state.change'].create(data) @api.multi def update(self, vals): _logger.info("valeurs recues pour update partner = %s", str(vals)) state_to_record = "" if 'cooperative_state' in vals: state_to_record = vals['cooperative_state'] elif 'current_cooperative_state' in vals: state_to_record = vals['current_cooperative_state'] del vals['current_cooperative_state'] if len(state_to_record) > 0: self._write_state_change(state_to_record) return super(ResPartner, self).update(vals) @api.multi def write(self, vals): _logger.info("valeurs recues pour write partner = %s", str(vals)) if 'cooperative_state' in vals: self._write_state_change(vals['cooperative_state']) return super(ResPartner, self).write(vals)