Exemplo n.º 1
0
 def hr_holidays_request_validate(self, res_id, token):
     comparison, record, redirect = MailController._check_token_and_record_or_redirect(
         'hr.leave', int(res_id), token)
     if comparison and record:
         try:
             record.action_approve()
         except Exception:
             return MailController._redirect_to_messaging()
     return redirect
Exemplo n.º 2
0
 def crm_lead_convert(self, res_id, token):
     comparison, record, redirect = MailController._check_token_and_record_or_redirect('crm.lead', int(res_id), token)
     if comparison and record:
         try:
             record.convert_opportunity(record.partner_id)
         except Exception:
             _logger.exception("Could not convert crm.lead to opportunity")
             return MailController._redirect_to_messaging()
     return redirect
Exemplo n.º 3
0
 def crm_lead_case_mark_lost(self, res_id, token):
     comparison, record, redirect = MailController._check_token_and_record_or_redirect('crm.lead', int(res_id), token)
     if comparison and record:
         try:
             record.action_set_lost()
         except Exception:
             _logger.exception("Could not mark crm.lead as lost")
             return MailController._redirect_to_messaging()
     return redirect
Exemplo n.º 4
0
 def mod347_reject(self, res_id, token):
     (
         comparison,
         record,
         redirect,
     ) = MailController._check_token_and_record_or_redirect(
         "l10n.es.aeat.mod347.partner_record",
         int(res_id),
         token,
     )
     if comparison and record:
         try:
             record.sudo().action_exception()
         except Exception:
             return http.request.render(
                 "l10n_es_aeat_mod347.communication_failed")
     return http.request.render("l10n_es_aeat_mod347.communication_success")