Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
2 Відповіді
5760 Переглядів

Hi,

I have a python method which execution lasts some time and would like to inform the user about process progres. I wonder if there is a way to do it from inside the method or somehow else? Can anybody provide guidance on it?

Thanks in advance for your reply.

Аватар
Відмінити
Найкраща відповідь

You could publish messages in a chat channel for that and open the chat channel for the user. I planned to do that in a module but i dont do it yet. If you do that please share your results

Аватар
Відмінити
Автор

It seems to me that I will have to submit the process as a cron job besides using chat. Since I haven't done anything neither with crons nor with chat, I will have to find out about them and as soon as I have worked on this solution will be back here to comment it. Thanks a lot for your response.

Автор Найкраща відповідь

Hello,

I am done and it seems to be working allright. Took me some time since channels were not working properly on my installed version and had to find out some bit more. In order to reach the intended behavior, I am calling from my view the function named submit_long_process and this in turn calls the long-process function which writes to the channel.

Thanks a lot Axel. I appreciate again your guidance.

Javier.

@api.one

def submit_long_process(self):

from openerp.exceptions import ValidationError

import datetime

from dateutil.parser import parse

from openerp import fields

id_value='(None, '+str(self.id)+',)'

my_dict={

'name': 'Cron job para enviar mensajes de correo---ok',

'function': 'long_process',

'args': id_value,

'model': 'hr.payslip.run',

'doall': False

}

self.env['ir.cron'].create(my_dict)

self.env.cr.commit()

return True

@api.multi

def long_process(self, id):

k_obj=self.env['mail.message']

values={'body': u'Starting long process.......',

'model': 'mail.channel', 'attachment_ids': [], 'res_id': 4,

'email_from': u'test <test@empresa.com>', 'parent_id': False,

'subtype_id': 1, 'author_id': 6, 'message_type': u'comment',

'partner_ids': [], 'subject': False}

my_id=k_obj._get_message_id(values)

new_rec = k_obj.create({'body': u'Starting long process.......',

'model': 'mail.channel',

'res_id': 4,

'email_from': u'test <test@empresa.com>',

'parent_id': False,

'subtype_id': 1,

'author_id': 6,

'message_type': u'comment',

'record_name': 'canal1',

'reply_to': 'Administrator <admin@example.com>',

'message_type': 'comment',

'email_from': 'Administrator <admin@example.com>',

'message_id': my_id})

{{---------------RUNNING LONG PROCESS-------}}}

return True

 

Аватар
Відмінити

happy to help, thanks for sharing it

Related Posts Відповіді Переглядів Дія
8
квіт. 23
32056
1
бер. 15
5253
0
бер. 15
4503
3
вер. 24
16641
0
квіт. 24
1191