Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Odoo 9 : Make changes on Survey module

Subscriure's

Get notified when there's activity on this post

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

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

Registrar-se
Related Posts Respostes Vistes Activitat
How can we Uninstall odoo module from terminal? Solved
module odoo
Avatar
Avatar
Avatar
Avatar
3
de set. 25
22368
Odoo survey user invitation and number answer per user problem?
survey odoo
Avatar
0
de març 15
5058
Odoo - Find module to show group by parent/child value in tree view
module python3 odoo
Avatar
0
d’abr. 23
3940
Inherit form view in odoo 12
survey odoo odoo12
Avatar
Avatar
2
de des. 19
6832
[Odoo 10.0] Show all survey's question result with bar_chart
survey odoo odoo10
Avatar
0
de maig 19
3435
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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