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
    • Discuss
    • 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

Odoo 9 : Make changes on Survey module

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
surveymoduleeditingodoo
5252 Tampilan
Avatar
LatifaShi

Hi everyone I am working on editing the survey module in odoo 9.

When I answer a survey which is composed of pages and then click on submit survey, it calculates the whole score

of the survey and display it .. and what i want is that it calculates the score of each page and display it when i click

on submit survey for example :

it displays :

Your score is : 200 points and i want it to display :

Score of first page : 20 points second page : 50 points and so on ...

here is the code that i want to change but i don't know how should i change this function.

** questionnaire.py (survey.py) : class survey_user_input

    class survey_user_input(osv.Model):
    ''' Metadata for a set of one user's answers to a particular survey '''
    _name = "questionnaire.user_input"
    _rec_name = 'date_create'
    _description = 'Survey User Input'
    def _quizz_get_score(self, cr, uid, ids, name, args, context=None):
        ret = dict()
        for user_input in self.browse(cr, uid, ids, context=context):
            ret[user_input.id] = sum([uil.quizz_mark for uil in user_input.user_input_line_ids] or [0.0])
        return ret
    _columns = {
        'survey_id': fields.many2one('questionnaire.questionnaire', 'Questionnaire', required=True,
                                     readonly=1, ondelete='restrict'),
        'date_create': fields.datetime('Date de creation', required=True,
                                       readonly=1, copy=False),
        'deadline': fields.datetime("Date limite",
                                oldname="date_deadline"),
        'type': fields.selection([('manually', 'Manuellement'), ('link', 'Lien')],
                                 'Type de reponse', required=1, readonly=1,
                                 oldname="response_type"),
        'state': fields.selection([('new', 'Pas encore commence'),
                                   ('skip', 'Partiellement acheve'),
                                   ('done', 'Termine')],
                                  'Statut',
                                  readonly=True),
        'test_entry': fields.boolean('Entree de test', readonly=1),
        'token': fields.char("Piece d'identite", readonly=1, required=1, copy=False),
        # Optional Identification data
        'partner_id': fields.many2one('res.partner', 'Partenaire', readonly=1),
        'email': fields.char("E-mail", readonly=1),
        # Displaying data
        'last_displayed_page_id': fields.many2one('questionnaire.page',
                                              'Derniere page affichee'),
        # The answers !
        'user_input_line_ids': fields.one2many('questionnaire.user_input_line',
                                               'user_input_id', 'Reponses', copy=True),
        # URLs used to display the answers
        'result_url': fields.related('survey_id', 'result_url', type='char',
                                     string="Lien public aux resultats du sondage"),
        'print_url': fields.related('survey_id', 'print_url', type='char',
                                    string="Lien public au sondage vide"),
        'quizz_score': fields.function(_quizz_get_score, type="float", string="Score pour le quiz", store=True)
    }
    _defaults = {
        'date_create': fields.datetime.now,
        'type': 'manually',
        'state': 'new',
        'token': lambda s, cr, uid, c: uuid.uuid4().__str__(),
        'quizz_score': 0.0,
    } 

** questionnaire.py (survey.py) : class survey_user_input_line

     _name = 'questionnaire.user_input_line'
    _description = 'Survey User Input Line'
    _rec_name = 'date_create'
    _columns = {
        'user_input_id': fields.many2one('questionnaire.user_input', 'Entree de l\'utilisateur',
                                         ondelete='cascade', required=1),
        'question_id': fields.many2one('questionnaire.question', 'Question',
                                       ondelete='restrict', required=1),
        'page_id': fields.related('question_id', 'page_id', type='many2one',
                                  relation='questionnaire.page', string="Page"),
        'survey_id': fields.related('user_input_id', 'survey_id',
                                    type="many2one", relation="questionnaire.questionnaire",
                                    string='Questionnaire', store=True),
        'date_create': fields.datetime('Date de creation', required=1),
        'skipped': fields.boolean('Ignore'),
        'answer_type': fields.selection([('text', 'Texte'),
                                         ('number', 'Nombre'),
                                         ('date', 'Date'),
                                         ('free_text', 'Texte Libre'),
                                         ('suggestion', 'Suggestion')],
                                        'Type de reponse'),
        'value_text': fields.char("Reponse texte"),
        'value_number': fields.float("Reponse numerique"),
        'value_date': fields.datetime("Reponse date"),
        'value_free_text': fields.text("Reponse texte libre"),
        'value_suggested': fields.many2one('questionnaire.label', "Reponse suggeree"),
        'value_suggested_row': fields.many2one('questionnaire.label', "Reponse en ligne"),
        'quizz_mark': fields.float("Score donne pour ce choix")
    }

** survey_templates.xml

    <!-- "Thank you" message when the survey is completed -->
    <template id="sfinished" name="Survey Finished">
        <t t-call="website.layout">
            <div class="wrap">
                <div class="container">
                    <t t-call="questionnaire.back" />
                    <div class="jumbotron mt32">
                        <h1>Thank you!</h1>
                        <div t-field="questionnaire.thank_you_message" class="oe_no_empty" />
                        <div> You scored <t t-esc="user_input.quizz_score" /> points.</div>
                        <div>If you want you can <a t-att-href="'/questionnaire/print/%s/%s' % (slug(questionnaire), token)">review your answers</a>.</div>
                    </div>
                </div>
            </div>
        </t>
    </template>
0
Avatar
Buang
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 can we Uninstall odoo module from terminal? Diselesaikan
module odoo
Avatar
Avatar
Avatar
Avatar
3
Sep 25
22362
Odoo survey user invitation and number answer per user problem?
survey odoo
Avatar
0
Mar 15
5055
Odoo - Find module to show group by parent/child value in tree view
module python3 odoo
Avatar
0
Apr 23
3937
Inherit form view in odoo 12
survey odoo odoo12
Avatar
Avatar
2
Des 19
6831
[Odoo 10.0] Show all survey's question result with bar_chart
survey odoo odoo10
Avatar
0
Mei 19
3434
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