Thanks for the video.. I did same as u did till 5:33.. But I didn't get even a button at that step 6:19.. And I continued doing same till ur video ends and getting error...can u pls help me... I'm on this task since 2 day.. Pls... Thanks in advance I'm doing in Odoo 14 and getting error.. The same I did in Odoo 13 and it gets working... Can u pls tell me what I need to change in Odoo v14.. Because I have to do this on Odoo14
@@OdooMates I have a query. can u pls help me.. I have created a wizard for printing the report .. the wizard have two fields from date and to date... I have a join date in my model.. I have to print reports for those who joined in between the from date and two date... Now the wizard button prints all the records in my model as I didn't give the condition for that.. Can u pls say what condition does I need to give in the function.. I don't know how to give the condition as those are dates.... I sent you a mail with the corresponding code and wizard.. Pls check that too Hope u will help me... Thanks in advance
hello buddy I have a question. when I clicked on 'create appointment' button the new model pops up but i need to select the patient again. How can I automatically get the 'patient name' since the create appointment button is found in a specific patient form view? thanks
if i create the patient appointment through create button in wizard and store into appointment model, the record i have created through wizard in appointment , it will be temporary or permanent ?
Hope you are in good health and thanks for the great tutorials. I have a question. How can we create/show a pop-up which contain some input fields in website??? OR Show a pop-up on button click in odoo website which contains some input fields.
I get a lot of help watching some of your videos, but you do guys do anything besides copying code from other modules and hacking it up? I find it incredibly difficult to learn from things that say "just search in the code for this and then copy it and change it". It's just a recipe for repeating mistakes from someone else's code.
Don't feel it as good method ? Rather than creating from scratch, adding each line, it feels better to take any existing code as template and to build from there, sorry if the same feels difficult for you
@@OdooMates The problem with this approach is that you are copying up old mistakes. I've seen it in a bunch of your videos, where you're copying up old (but still supported) ways of doing things. This also doesn't explain any of the WHY things need to be done, so when people run into something that they need to do that they can't just copy an example from ... they haven't really learned anything except how to search in the Odoo code base to find how it was done by someone else once upon a time, no matter if it was done well or correct.
If you see any non supported methods in any videos, feel free to comment it , so that we can pin that comment and that Will help others. As of my knowledge I haven't copied any non supported methods, Nice if you point it out. Also we have done tutorials in 12, 13 and 14
hi bro @Edwar Rinaldo, i think you have asked about the error displayed when clicking on create button in this video ,there is no method defined in the python file(wizard model) for create button that is placed in the wizard form,so there is no function executed when clicked on the button so that the error is occured.
@@shadanh3556 Not sure, so i will recommend you to check the settings -> technical -> database structure -> models, open the both the models, and see the available fields and see whether there is ..
thanks for this videos. i tried to create a wizard for import a csv.file, so i follow the steps in this video but it does not work. could you help please?
@@OdooMates just one field in the appointments form there is a many2one field showing the patient and the field in the wizard which shows patients records are not showing only create and edit is there but my other many2one fields working fine
Once again your tutorials have saved me after hours of trying ! Many thanks again ! :)
happy to hear it
Thanks for the video.. I did same as u did till 5:33.. But I didn't get even a button at that step 6:19.. And I continued doing same till ur video ends and getting error...can u pls help me... I'm on this task since 2 day..
Pls...
Thanks in advance
I'm doing in Odoo 14 and getting error..
The same I did in Odoo 13 and it gets working...
Can u pls tell me what I need to change in Odoo v14..
Because I have to do this on Odoo14
in 14, access rights has to set for transient models too, is that might be the reason for ths issue ?
@@OdooMates Ok ,the issue is solved.. Thanks...
@@OdooMates I have a query. can u pls help me..
I have created a wizard for printing the report .. the wizard have two fields from date and to date... I have a join date in my model.. I have to print reports for those who joined in between the from date and two date... Now the wizard button prints all the records in my model as I didn't give the condition for that.. Can u pls say what condition does I need to give in the function.. I don't know how to give the condition as those are dates....
I sent you a mail with the corresponding code and wizard.. Pls check that too
Hope u will help me...
Thanks in advance
@@MSFPMUSIC hope we discussed it over the email
how did you solve this problem I have the same here !?
Great explanation! Thank you!
Glad you enjoyed it!
Hello, how would it be possible to set up the patient directly at the opening of the wizard ? With context ?
Yes possible, you can pass default value in context
th-cam.com/video/b4SeEVm39pY/w-d-xo.html
Hi Odoo Mates, how can i remove/hide the 'x' icon on the upper right of the wizard dialog?
Thank you!! It was very helpful!
Glad it was helpful!
Aesome tutorial, Do make a tutorial how to create new api's, and 3rd party integration.
odoo web service: th-cam.com/video/isjhwKAL63M/w-d-xo.html
hello buddy I have a question. when I clicked on 'create appointment' button the new model pops up but i need to select the patient again. How can I automatically get the 'patient name' since the create appointment button is found in a specific patient form view? thanks
You can pass default value in context see this : th-cam.com/video/XEs_01mDsCw/w-d-xo.html
Thank you Sir very well explained.
thanks brother
if i create the patient appointment through create button in wizard and store into appointment model,
the record i have created through wizard in appointment , it will be temporary or permanent ?
Hope you are in good health and thanks for the great tutorials.
I have a question.
How can we create/show a pop-up which contain some input fields in website???
OR
Show a pop-up on button click in odoo website which contains some input fields.
Using js and bootstrap modal you can do it.
Is there any reference code or link???
Can we inherit the wizard function from another model?
Yes as in the same way we do for normal models
Hey thanks man this tutorial really help me at works!
glad that it helped
@@OdooMates but how to define price in wizard? It's like to pay something
@@winsen6002 you can add a field in wizard to enter the amount
Thank you !! how can we do the same but for a notebook in for view ? Thank you again !!
you mean add a button in notebook page and open the wizard ?
@@OdooMates i mean add a button and when we click it the notebook function ( editable=bottom) show up with one2many fields ......
I get a lot of help watching some of your videos, but you do guys do anything besides copying code from other modules and hacking it up? I find it incredibly difficult to learn from things that say "just search in the code for this and then copy it and change it". It's just a recipe for repeating mistakes from someone else's code.
Don't feel it as good method ? Rather than creating from scratch, adding each line, it feels better to take any existing code as template and to build from there, sorry if the same feels difficult for you
@@OdooMates The problem with this approach is that you are copying up old mistakes. I've seen it in a bunch of your videos, where you're copying up old (but still supported) ways of doing things. This also doesn't explain any of the WHY things need to be done, so when people run into something that they need to do that they can't just copy an example from ... they haven't really learned anything except how to search in the Odoo code base to find how it was done by someone else once upon a time, no matter if it was done well or correct.
If you see any non supported methods in any videos, feel free to comment it , so that we can pin that comment and that Will help others. As of my knowledge I haven't copied any non supported methods, Nice if you point it out. Also we have done tutorials in 12, 13 and 14
hallo, i like your tutorial. many thanks, i have one question, how about the error when click create button ? can you more explained... many thanks
can you just send us the error,
hi bro @Edwar Rinaldo, i think you have asked about the error displayed when clicking on create button in this video ,there is no method defined in the python file(wizard model) for create button that is placed in the wizard form,so there is no function executed when clicked on the button so that the error is occured.
@@jamshadalalikkal9300 thats i mean, thanks
@@jamshadalalikkal9300 thanks for clarifying the doubt
@@EdwarRinaldo u r welcome 👍
Do you know how to get data on wizard from current record?
using context you can get active_id and then using browse you can take the current record
@@OdooMates hello.. hope you feeling good.. I want to ask you is there any relation between project and helpdesk module? In odoo community
@@shadanh3556 Not sure, so i will recommend you to check the settings -> technical -> database structure -> models, open the both the models, and see the available fields and see whether there is ..
@@OdooMates ok thank you!!🤍
@@shadanh3556 welcome
thank you for your effort , just a a question please , how to change field value in a model from a button in wizard,
in wizard fetch the original record using active_id in context, then using write method, we can update.
see: th-cam.com/video/icl4IEWWmuU/w-d-xo.html
How can I use the button outside of that form, for example, in the tree view before the create Patient button.
thx for the video
Please show how you created appointment logic also for wizard
This one: th-cam.com/video/Jssb15ADeyg/w-d-xo.html ?
Thanku so much :)
hi there
is there any way to create a wizard in a duplicate button from odoo?
thanks for this videos. i tried to create a wizard for import a csv.file, so i follow the steps in this video but it does not work. could you help please?
Sure, so the wizard is not opening ?
thank you
why you haven't showed create & cancel button code for creating & canceling appointment?
Create button will come by default, for adding buttons in the form see: th-cam.com/video/3PA7XAky8mA/w-d-xo.html
For creating record from code: th-cam.com/video/Jssb15ADeyg/w-d-xo.html
@@OdooMates Thank you
where iss test_name def???
May i know in which minute in the video this test_name is shown ...
13:20 This was just a placeholder and gets changed later
best eeffort,keep it up
If you feel the videos are helpful, please like the videos and support us by subscribing the channel and referring it with Odoo friends :)
How we can get Patient in wizard of current open record doctor's Please describe about that Thanks.
Nice✌️
Thanks
Thanks.
Welcome :)
My appointment from wont show the dropdown of many2one field patient and same for the wizard the menu to one dropdown wont show my created patients
you mean records are not shown in many2one fields ?
@@OdooMates just one field in the appointments form there is a many2one field showing the patient and the field in the wizard which shows patients records are not showing only create and edit is there but my other many2one fields working fine
@@thisuraweerakkody3841 is there any domain ?
@@OdooMates no domain
@@OdooMates this happens due tomy active field in the model I guess
tutorial about :
1 - what is api and how to create it
2 - ORM
Regarding Odoo ORM we are planning one soon
@@OdooMates thanks to the best Odoo channel
man u're so great thanks
Thanks for the comments.. Hope you will support us by referring the channel to your Odoo friend's :)
@@OdooMates of course
Thanks man
Like the videos and subscribe the channel and support us
i tried type= action but keyError :False is comining
We have replied in the email, keyerror can be of many reasons
@@OdooMates I solve it putting instead of {} use() solving this erro odoo13 sir