Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

based on user selected field value changing onchange selection field using javascript odoo 12 (portal form)

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
1 Rispondi
7282 Visualizzazioni
Avatar
paidy kumar

template


<template id = "openeducat_create_subject_registration" name = "Create Subject Registration" > 
<t t-call = "portal.portal_layout" >
<t t-call = "portal.portal_searchbar" > <t t-set = "title" > Subject Registration Form </t> </t> <t t-if = "not student_id" > <p> There are currently no information for your account !!! </p> </t> <







"background-color:white; padding: 20px 40px 20px 40px;">
<div class="mt32">
<form action="/subject/registration/submit" method="post" role="form"
enctype="multipart/form-data">
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
<div class="row col-md-12">
<div class="row col-md-6">
<input type = "hidden" name = "student_id" t-attf-class = "form-control"
t-att-value = "student_id.id" /> <div class = "col-md-4 mt8" > <lable for = "course_id" > Course: </lable> </div> <div class = "col-md-8" > <select id = "course_dropdown" class = "form-control"name = "course_id" onchange = "myFunction ()" >






<option value = "" class = "disabled selected" >
<lable> Select your option </lable>
</option>
<t t-foreach = "course" t-as = "course_id" >
<option t-att- value = "course_id.id" >
<t t-esc = "course_id.name" />
</ option>
</t>
</select>
</div>
<script>
odoo.define ('portal_student.registration', function (require) {
var Model = require ('op.batch');
function myFunction () {
var Users = new Model (' op.batch ');
var course = document.getElementById ("course_dropdown");
Users.query ([' name ',' course_id '])
.filter ([[' course_id ',' = ', course.val]] )
.limit (15)
.all (). then (function (users) {
for (i in users) {
document.getElementById ("batch_id"). value = i.name;
}
});
}}
</script>
<div class = "col-md-4 mt16" >
<lable for = "batch_id" > Batch: </lable>
</div>
<div class = "col-md-8 mt8" >
<select class = ""batch_id" >
<option value = "" class = "disabled selected" >
<lable> Select your option </lable>
</option>
<option>
<t id = "batch_id" t-esc = "batch_id" />
</option>
</select>
</div>
</div>
<div class ="row col-md-6" >
<div class = "col-md-6 mt8" >
<lable for = "min_unit_load" > Minimum Unit Load: </lable>
</div>
<div class = "col-md -6 " >
<input type = " number " name = " min_unit_load " t-attf-class = " form-control "
t-attf-value = " student_id.min_unit_load " /> </ div> <div class =

"col-md-6 mt16" >
<lable for = "max_unit_load" > Maximum Unit Load: </lable>
</div>
<div class = "col-md-6 mt8" >
<input type = "number" name = "max_unit_load" t-attf-class = "form-control"
t-attf-value = "student_id.max_unit_load" /> </div> </div> </div> <div class = "mt32" />




<div t-if = "user_id.sudo (). is_student" class = "row col-md-12" >
<div class = "col-md-2 mt8" >
<lable for = "compulsory_subject_ids" > Compulsory Subjects: </lable>
</div>
<div class = "col-md-10" style = "padding-left: 5px;" >
<select class = "form-control js-example-basic-multiple subjects"
name = " required = "1" >
<t t-foreach = "subjects or []" t-as = "subject" >
<t t-if = "subject.subject_type == 'compulsory'" >
<option t-att-value = "subject.id" >
<t t-esc = "subject.name" />
</option>
</t>
</t>
</select>
</div>
</div>
<div t-if = "user_id.sudo (). is_student" class = "row mt8 col-md-12" >
<div class = "col-md-2 mt8" >
<lable for = "elective_subject_ids " > Elective Subjects: </lable>
</div>
<div class = " col-md-10 " style = " padding-left: 5px; " >
<select class = "
multiple = "True" required = "1" >
<t t-foreach = "subjects or []" t-as = "subject" >
<t t-if = "subject.subject_type == 'elective'" >
<option t-att-value = "subject.id" >
<t t-esc = "subject.name" />
</option>
</t>
</t>
</select>
</div>
</div>
<div class = "clearfix mb16 mt16 row col-md-12" >
<div class = "col-md-4" >
<button type = "submit" class = "btn btn-primary " >
SUBMIT
<span class = " fa fa-long-arrow-right " />
</button>
</div>
</div>
</form>
</div>
</ div>
</t>
</template>

controller.py

@ http.route ( '/ subject / registration / create /' , type = 'http' , auth = 'public' , website = True ) 
def subject_registration ( self , ** kw ):
students = request.env [ 'op. student ' ] .sudo (). search ([( ' user_id ' , ' = ' , request.session.uid)])
for student in students:
student_id = request.env [ ' op.subject.registration ' ] .sudo ( ) .search ([( 'student_id','=' , student.name)])
course = request.env [ 'op.course' ] .sudo (). search ([])
subjects = request.env [ 'op.subject' ] .sudo (). search ([])
values ​​= {
'student_id' : student_id ,
'course' : course , 'subjects' : subjects , } return request.render ( "portal_student.openeducat_create_subject_registration" , values)




please help me i dont know odoo's javascript please check my script and please let me know the issue thanks in advance



0
Avatar
Abbandona
Zelalem Biru

did you have any solution, kindly looking for it

Avatar
chirag chauhan
Risposta migliore

$(document).on("change", "#o_dist_details_id"(id), function (){
var el = $(this);

// your code
});

0
Avatar
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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