Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

Tasks in custom module

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
task
2 Replies
7998 Tampilan
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
Buang
Avatar
Keyur
Jawaban Terbai

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
Buang
Avatar
Shaun Dawson
Penulis Jawaban Terbai

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
Buang
Keyur

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

Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
How to make the task repeat in the settings but it’s not in the calendar
task
Avatar
0
Apr 24
2090
Odoo-serverfault when mark task as ready
task
Avatar
0
Jan 23
2448
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
4490
How to create task with Assigned to via incoming email ?
task
Avatar
0
Mar 15
4697
Uncaught Error in project task page search bar
task
Avatar
Avatar
1
Mar 15
6471
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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