Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Tasks in custom module

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
task
2 Risposte
8009 Visualizzazioni
Avatar
Shaun Dawson

I have a custom module, and I'd like to do the following two things:

  1. When an object gets into a particular state, automatically create a project.task item.
  2. When the task is Done, send a signal to my custom object workflow (to send it into the next state)

I know how to do #1 (by calling self.pool.get('project.task').create in my state action function). But, any idea how to do #2?

0
Avatar
Abbandona
Avatar
Keyur
Risposta migliore

Hi Shaun,

You can overwrite task done method in your custom module. Then you can do your code that change the state of your object to next state or call a workflow that change your next state.

Suppose task is done in action_close method. So you can overwrite action_close method & do your code.

def action_close(self, cr, uid, ids, context=None):
    res = super(task, self).action_cancel(cr, uid, ids, context)
    // Code to make your object record in next state
    return res

Hope this way it would work.

Thanks

2
Avatar
Abbandona
Avatar
Shaun Dawson
Autore Risposta migliore

Thanks for the pointer, Keyur.

In the interest of completion, I'll include exactly what I did so that there's a definitely working example in this answer.

(I'm modeling the requirement to perform a test on some equipment. The test_module.test model is the results of the test. When one of these objects is created, I want to create a Task that will track actually doing it.)

First, I added the logic to create a Task when my Test is created:

#this is in class test_module_test...
def test_pending(self, cr, uid, ids):
    project_task = self.pool.get('project.task')
    for test in self.browse(cr, uid, ids, context=None):
        #create the task for this new test
        print "Creating task for Test"
        task_id = project_task.create(cr, uid, {
            'name': test.task_name(),
            'user_id': test.task_uid(),
            'description': test.task_description(),
            test.column_for_test_id_in_task: test.id,
        }, context=None)

        self.write(cr,uid, ids, {'state':'pending', 'created_on': time.strftime('%Y-%m-%d')})
    return True

Then, in my modules.py file, I added the following class:

This class inherits from project.task, overriding the case_close method to signal my Test that it has been submitted.

class test_module_test_task(osv.osv):
    _name='project.task'
    _inherit='project.task'
    _columns = {
        'test_id': fields.many2one('eggrule.se_environmental_test', "SE Env. Test", ondelete='restrict'),
    }

    def case_close(self, cr, uid, ids, context=None):
        #if the super method succeeds...
        if super(test_module_test_task, self).case_close(cr, uid, ids, context=context):
            print "About to signal task workflows, if there are any"
            wf_service = netsvc.LocalService("workflow")
            #for each object that we were passed...
            for task in self.browse(cr, uid, ids):
                #if there is an environmental test...
                if task.test_id:
                    #signal it...
                    wf_service.trg_validate(uid, 'test_module.test', task.test_id.id, "test_submitted", cr)
            return True
        #else, the super method failed... (can't happen)
        return False

Voila!

0
Avatar
Abbandona
Keyur

Wow!!! That's great...You are doing it right...Thanks for your detail explanation.

Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
How to make the task repeat in the settings but it’s not in the calendar
task
Avatar
0
apr 24
2094
Odoo-serverfault when mark task as ready
task
Avatar
0
gen 23
2457
How to create a new stage where i can create Tasks as Task templates but without it showing in Tasks?
task
Avatar
0
mar 15
4496
How to create task with Assigned to via incoming email ?
task
Avatar
0
mar 15
4704
Uncaught Error in project task page search bar
task
Avatar
Avatar
1
mar 15
6473
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now