Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Odoo 9 : Make changes on Survey module

Subscribe

Get notified when there's activity on this post

This question has been flagged
surveymoduleeditingodoo
5258 Views
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
Discard
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
How can we Uninstall odoo module from terminal? Solved
module odoo
Avatar
Avatar
Avatar
Avatar
3
Sep 25
22365
Odoo survey user invitation and number answer per user problem?
survey odoo
Avatar
0
Mar 15
5058
Odoo - Find module to show group by parent/child value in tree view
module python3 odoo
Avatar
0
Apr 23
3938
Inherit form view in odoo 12
survey odoo odoo12
Avatar
Avatar
2
Dec 19
6832
[Odoo 10.0] Show all survey's question result with bar_chart
survey odoo odoo10
Avatar
0
May 19
3435
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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