Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Odoo 9 : Make changes on Survey module

Odoberať

Get notified when there's activity on this post

This question has been flagged
surveymoduleeditingodoo
5254 Zobrazenia
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
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
How can we Uninstall odoo module from terminal? Solved
module odoo
Avatar
Avatar
Avatar
Avatar
3
sep 25
22364
Odoo survey user invitation and number answer per user problem?
survey odoo
Avatar
0
mar 15
5056
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
dec 19
6832
[Odoo 10.0] Show all survey's question result with bar_chart
survey odoo odoo10
Avatar
0
máj 19
3434
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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