Пікірлер
@wpftutorialvn
@wpftutorialvn Күн бұрын
thanks you. you can create clip about update odoo 17 on win 11 to odoo 18. thanks so much.
@spexer-code2984
@spexer-code2984 3 күн бұрын
How to do for Micrsoft365/outlook Email
@nelsonyip7231
@nelsonyip7231 5 күн бұрын
Can you a video of how to install Odoo 18 on Ubuntu Server
@odooistic
@odooistic 5 күн бұрын
sure, just give me somedays i will share video very soon
@antonijo01
@antonijo01 5 күн бұрын
How to update local odoo to latest odoo code from github?
@odooistic
@odooistic 5 күн бұрын
Open a terminal (or command prompt on Windows) and navigate to the directory where your Odoo source code is located. For example: cd /path/to/your/odoo then Confirm which branch you’re on. This is important because Odoo has different branches for different versions (16.0, 17.0, 18.0, etc.): git branch. If you’re on the correct branch (e.g., 18.0), you can proceed. If not, switch to it: git checkout 18.0. Fetch the latest updates from the Odoo repository and pull them into your branch: git fetch origin git pull origin 18.0 replace 18.0 if its different one
@GauravParaswani
@GauravParaswani 7 күн бұрын
Thanks a ton
@odooistic
@odooistic 6 күн бұрын
you are most welcome
@hirarintsana6837
@hirarintsana6837 11 күн бұрын
Thank u
@odooistic
@odooistic 11 күн бұрын
you are most welcome
@Eltayar
@Eltayar 13 күн бұрын
thanks BRO, how can I inherit the chatter with an XML to add reply button to an existing message
@odooistic
@odooistic 13 күн бұрын
i will definately share code with you soon. thanks so much
@CerimagenCuba
@CerimagenCuba 16 күн бұрын
Thanks, fan to you
@odooistic
@odooistic 16 күн бұрын
i am so glad you liked it. thanks so much
@CerimagenCuba
@CerimagenCuba 16 күн бұрын
thanks Bro
@odooistic
@odooistic 16 күн бұрын
you are most welcome
@CerimagenCuba
@CerimagenCuba 16 күн бұрын
Thanks brother
@Brain-Boost001
@Brain-Boost001 17 күн бұрын
Hi bro archived journals should be list for balance sheet in odoo 16
@kishoregowda8806
@kishoregowda8806 18 күн бұрын
One more thing if you are not able to find the new app you have to add the custom folder path in the odoo.conf file in addons_path just add a comma and paste the path
@burnaviour-l4r
@burnaviour-l4r 19 күн бұрын
increase volume
@odooistic
@odooistic 19 күн бұрын
i will make sure definately thanks
@ManuelPortela-g2y
@ManuelPortela-g2y 23 күн бұрын
Excellent tutorial. I'll try it
@ManuelPortela-g2y
@ManuelPortela-g2y 23 күн бұрын
It worked perfect. The only thing I think you missed, is that we have to create that custom folder and specify the path in odoo.conf. Thank you :)
@odooistic
@odooistic 19 күн бұрын
amazong and thanks for letting me know
@ManuelPortela-g2y
@ManuelPortela-g2y 23 күн бұрын
This is an excellent tutorial. Thank you.
@odooistic
@odooistic 19 күн бұрын
Glad it was helpful!
@bitpilot79
@bitpilot79 23 күн бұрын
The video is good, but the audio quality is bad.
@odooistic
@odooistic 23 күн бұрын
thanks for your feedback i will definately improve audio quality. thanks so much
@rakeshgautam1407
@rakeshgautam1407 24 күн бұрын
Very good tutorial for setup Odoo 17
@odooistic
@odooistic 19 күн бұрын
thanks so much it means a lot.
@cieelo
@cieelo 24 күн бұрын
thk!
@odooistic
@odooistic 23 күн бұрын
thanks so much
@cieelo
@cieelo 24 күн бұрын
i need install python?
@odooistic
@odooistic 23 күн бұрын
yes you need to install
@ariyanblogs2535
@ariyanblogs2535 25 күн бұрын
How can I customize the width of Print Receipt for pdf?
@odooistic
@odooistic 23 күн бұрын
To customize the width of the Print Receipt for a PDF in Odoo (such as in the Point of Sale module), you can adjust the PDF template by modifying the QWeb report template that generates the receipt.
@ariyanblogs2535
@ariyanblogs2535 23 күн бұрын
@@odooistic Thanks
@yelinhtut5154
@yelinhtut5154 27 күн бұрын
great work!! Please share the tutorial how to change the gantt chart display name with custom field
@odooistic
@odooistic 23 күн бұрын
i will soon share that , thanks so much
@vigneshmurugesh1940
@vigneshmurugesh1940 Ай бұрын
Sir, what if I want to rename the 'New' button for a specific model. For example, If I want to rename the 'New' button for only in sale.order object, it should not affect any other objects. In this video, you have renamed the quotation/order, which is written only in point of sale module but the 'New' button will be available in all the module.
@odooistic
@odooistic Ай бұрын
If you want to rename the 'New' button specifically for the sale.order object in Odoo without affecting other objects, you can do so by extending or overriding the XML view associated with the sale.order model.
@vigneshmurugesh1940
@vigneshmurugesh1940 Ай бұрын
@@odooistic Thank you sir.
@mdsaifuddin4605
@mdsaifuddin4605 Ай бұрын
Hey Please help me if you know How can i customise the helpdesk email and chatter setting by code so that when user change the stages of the ticket and if that stage has an email configuration then they should get a pop up window where they can edit and then send it. And this send button should send mail and send the content in chatter as well
@mdsaifuddin4605
@mdsaifuddin4605 Ай бұрын
Just give me an idea so that i can implement
@odooistic
@odooistic Ай бұрын
To customize the Helpdesk email and chatter settings in Odoo such that a user receives a pop-up window when changing stages, allowing them to edit and send an email based on stage configuration, you would need to create a custom field in the Helpdesk stages (helpdesk.stage) to store the email configuration (like email template) for each stage. You will extend the helpdesk.ticket model to trigger the email pop-up when the stage changes (define a method) and then You can use the built-in Odoo wizard mail.compose.message to allow users to edit and send the email. This wizard already provides a form where the user can modify the email content. Odoo's mail.compose.message wizard automatically sends the email and logs the message in the chatter when it's submitted. However, if you need to handle the action manually, you can extend the wizard
@mdsaifuddin4605
@mdsaifuddin4605 Ай бұрын
@@odooistic Thank you 🙏
@nifrascool1992
@nifrascool1992 Ай бұрын
In odoo17 they implemented this in different way i think. I couldn't find OrderReceipt Class
@odooistic
@odooistic Ай бұрын
i will definately add odoo17 approach soon.
@dhanrajghorpade-qg2rt
@dhanrajghorpade-qg2rt Ай бұрын
Thank You, Sir! for explaining everything so clearly. Your insights were incredibly helpful!
@odooistic
@odooistic Ай бұрын
thanks so much, it really means a lot . bless
@luisrodriguezjurado
@luisrodriguezjurado Ай бұрын
Same problem (custom modules not found) Odoo 17 community on Windows Install
@odooistic
@odooistic 23 күн бұрын
please check your custom addons path please
@matteobarbaliscia4828
@matteobarbaliscia4828 2 ай бұрын
There is no localhost in my pgadmin, there is only PostgreSQL 16, what can I do?
@zehracelik758
@zehracelik758 2 ай бұрын
hello I did what you did but localhost odoo page did not open I could not find the reason can you help me thank you
@odooistic
@odooistic 2 ай бұрын
sorry for late reply, i was away for some days, have you resolved issue?
@ibrahimessam3434
@ibrahimessam3434 2 ай бұрын
The file of configuration doesn't appear in vs code
@odooistic
@odooistic 2 ай бұрын
you can create a newone then, after creating name it to launch.json
@sadyhtarrazola6769
@sadyhtarrazola6769 2 ай бұрын
🎯 Key points for quick navigation: 00:22 *🛠️ Point of Sale App Setup* - Tutorial focused on Point of Sale receipt customization in Odoo 16. - Installation of the Point of Sale app in Odoo 16 is crucial. - Customizing the order receipt involves JavaScript and XML files. 03:21 *🔧 JavaScript File Creation* - Creating custom JavaScript files for receipt customization. - Defining the module name and structure for the JavaScript file. - Using Odoo's JavaScript functionality in order to extend classes for customization. 17:11 *💡 Adding Customer Name to Receipt* - Demonstrating how to add the customer's name to the order receipt. - Utilizing JavaScript functions to fetch partner data for printing on the receipt. - Extending the existing receipt class to include additional data like the customer's name. 29:16 *🧩 Customizing Product Code Display* - Customizing the display of product codes next to product names on the receipt. - Creating a new JavaScript file to fetch and display product codes. - Integrating the product code customization with the existing order line structure on the receipt. Made with HARPA AI
@odooistic
@odooistic 2 ай бұрын
hello thanks for the message, i can see in your message lots of points, are these required customization?
@birukyohannes8186
@birukyohannes8186 2 ай бұрын
hello I faced this error " Database creation error: permission denied to create database" how can I solve it?
@odooistic
@odooistic 2 ай бұрын
Ensure that the PostgreSQL user you are using has the necessary permissions to create a database. This can be done through the PostgreSQL command line or a GUI tool like pgAdmin.
@antoniocarloszxc
@antoniocarloszxc 3 ай бұрын
Excellent video!!! You can make a video tutorial how configure odoo in vscode on windows using docker?
@odooistic
@odooistic 3 ай бұрын
thats my plan, you will se it very soon, cheers and thanks for loking the video
@WalterFalla
@WalterFalla 3 ай бұрын
Saludos Tengo un caso de configuración de Odoo V16 E sh con Office 365, se configuró de acuerdo a la documentación de Odoo y en Office 375 y en Odoo, y funcionó perfecto, pero al día siguiente algunas cuentas dejaron de enviar y recibir correos, necesito ayuda
@odooistic
@odooistic 3 ай бұрын
Seguro que estamos aquí para ayudar, tengamos una reunión, puede contactarnos en [email protected], le enviaré los detalles de la reunión o usted lo propondrá cuando esté libre, entonces podemos tener una llamada a esa hora, saludos.
@jarusanimations
@jarusanimations 3 ай бұрын
So I get that i am logged in successfully in terminal in login page but the login page UI is still in login page and continuously loading not proceeding forward any help?
@odooistic
@odooistic 3 ай бұрын
The first step is to check the Odoo server logs for any errors or warnings that might indicate what the problem is. You can find the logs in the terminal where you started the Odoo server. Look for any tracebacks or error messages. Ensure all dependencies are installed correctly. You can install the required dependencies using pip:
@olafb6445
@olafb6445 3 ай бұрын
When I press run it loads for a second and then stops - no output to any terminals. Any idea what could cause this?
@odooistic
@odooistic 3 ай бұрын
Ensure that the odoo.conf file is correctly configured and points to the correct database, addons path, and other necessary options.Verify that the PostgreSQL server is running and accessible. Check the db_host, db_port, db_user, and db_password in your odoo.conf file.
@lamo6589
@lamo6589 4 ай бұрын
I saved the odoo17 file on my desktop but it’s saying the python path is incorrect
@odooistic
@odooistic 3 ай бұрын
in your json file , please update your python path
@InnovMates
@InnovMates 4 ай бұрын
The Python Path in your configuration file is invalid. I tried to re-install an older version of visual studio code (1.74) and Python extension (v2022.20.2) but still having the same error message. Can you help please?
@odooistic
@odooistic 4 ай бұрын
hi, if you go in your json file you will see a "python": after that theres python path so because the conf file i have provided its generic so you need to adjust your python path , where python has been installed in your machine
@ZeeForZahid
@ZeeForZahid 4 ай бұрын
Hi this is very helpfull and i follow all the steps but when I try to run using option "Run -> run without debugging" get the error "the python path in your configuration is invalid" could you please help to fix this issue
@ZeeForZahid
@ZeeForZahid 4 ай бұрын
issue roselved
@InnovMates
@InnovMates 4 ай бұрын
@@ZeeForZahid how did you solve it? having same problem. many thx
@odooistic
@odooistic 4 ай бұрын
please adjust / correct your python path in your json file , because python path i wrote in there according to my machine's python isntalled version so please adjust it.
@afeefarafath2903
@afeefarafath2903 4 ай бұрын
Launch.json file not opening when i click add configuration
@odooistic
@odooistic 4 ай бұрын
Ensure the Python extension is installed and enabled in VS Code, se Ctrl+Shift+P and type Reload Window to reload VS Code. if its not working then Manually create a .vscode folder in your project directory, add a launch.json file, and paste the configuration above.
@TechGenie-DIY
@TechGenie-DIY 4 ай бұрын
Video is good but "Chup sound every 15 seconds is extra annoying" why didn't is removed during editing.
@odooistic
@odooistic 4 ай бұрын
thanks for your feedback and i will certainly make sure it won;t be the case in future videos
@kenyansenpai
@kenyansenpai 4 ай бұрын
Loved The Video. Could you do one on docker and guide on the Json file Setup
@odooistic
@odooistic 4 ай бұрын
sure i will do it soon and will notify you
@danielpopa8346
@danielpopa8346 4 ай бұрын
hi i have this error conn = _connect(dsn, connection_factory=connection_factory, **kwasync) psycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "openpg"
@odooistic
@odooistic 4 ай бұрын
you need to look at your .conf file for password, its password authentication failed
@aldoparducci1507
@aldoparducci1507 5 ай бұрын
Thanks!!!
@odooistic
@odooistic 4 ай бұрын
Welcome!
@moaazshaaban7734
@moaazshaaban7734 5 ай бұрын
i did not fount the new_module - am in developer mode and updeted the App list
@odooistic
@odooistic 4 ай бұрын
aorry for late reply my friend, has this been resolved?
@Neoncoder
@Neoncoder 4 ай бұрын
@@odooistic no
@odooistic
@odooistic 3 ай бұрын
@@Neoncoder 07972867175
@Neoncoder
@Neoncoder 3 ай бұрын
@@odooistic ???
@abdelrahmansoliman9589
@abdelrahmansoliman9589 5 ай бұрын
is there a way to have an auto-update to my custom-modules plz help me
@odooistic
@odooistic 5 ай бұрын
yes you can add an extra argument in json file, lets suppose if your custom module's name is custom_module then you can write "-u", "custom_module", then whenever you will restart odoo service , your custom module will also be auto upgraded.
@3kChanal
@3kChanal 5 ай бұрын
Please add how to add python if not installed
@odooistic
@odooistic 5 ай бұрын
official Python website (python.org) to download the Python installer. It's important to download it from the official site to ensure it's secure and up-to-date. onve you donload then just give that path in your launch.json file like this "python": "C:\\odoo17\\python\\python.exe",
@HuseyinKrtan-jm1th
@HuseyinKrtan-jm1th 5 ай бұрын
Let the odoo execute code section explain ( automaticly )
@odooistic
@odooistic 5 ай бұрын
sorry for late reply, can you explain what do you mean by odoo execute code section explain, i have not understood this well. thanks
@HuseyinKrtan-jm1th
@HuseyinKrtan-jm1th 5 ай бұрын
i go CRM and i see 4 section (new .. .. won)ı take a lead angd go won. So auto message ex. Welcome but auto in email follow message ... ... execute code . I want to learn execute code thank you@@odooistic
@Akhil-rv8io
@Akhil-rv8io 5 ай бұрын
unable to generate launch.json file using python debugger
@Akhil-rv8io
@Akhil-rv8io 5 ай бұрын
Variable {file} can not be resolved. Please open an editor
@odooistic
@odooistic 5 ай бұрын
hi, you can manully create a launch.json file aswell and copy the script from description.
@CsanadPaszti
@CsanadPaszti 5 ай бұрын
The AI images are so funny. Keep up the good work, thanks for your help!
@odooistic
@odooistic 5 ай бұрын
thank you so much
@josbexerra8115
@josbexerra8115 5 ай бұрын
Muchas gracias me ayudo...
@odooistic
@odooistic 5 ай бұрын
De nada y gracias por apoyar