66.How To Create Excel Report From Wizard In Odoo14 || Odoo Excel Reporting

  Рет қаралды 18,491

Odoo Mates

Odoo Mates

Күн бұрын

Пікірлер: 70
@ahmedsamy3509
@ahmedsamy3509 Жыл бұрын
Appreciate your effort 🙏
@OdooMates
@OdooMates Жыл бұрын
So nice of you
@liker9170
@liker9170 28 күн бұрын
please tell me that, is this video for previous versions of odoo, i am using odoo18 do i have do the same procedure because i have import and export oprtions for excel in my version.
@parulsharma7474
@parulsharma7474 2 жыл бұрын
when i tried to print in xls report for a in rec['installment_lines']: sheet.write(row, col + 8, str(a['total'])) i got error (TypeError: 'int' object is not subscriptable) what i have to do?
@OdooMates
@OdooMates 2 жыл бұрын
Is it resolved? What is the value inside the rec['installment_lines'] ?
@muhammadkamal9245
@muhammadkamal9245 2 жыл бұрын
Hello Sir , I appreciate your efforts and I have question can we generate pdf report and xlxs for sale register mean i have report in xlsx which show sale register can i generate pdf for sale register?
@OdooMates
@OdooMates 2 жыл бұрын
you mean whether we can convert excel report to pdf ?
@ahmedahmed-mc7jc
@ahmedahmed-mc7jc 2 жыл бұрын
Hello, can I contact you privately?
@sanjukriplani502
@sanjukriplani502 3 жыл бұрын
Hello sir , Thank You so much for this playlist... Sir i want to learn complete odoo, so after this playlist what should i do?...which playlist i should watch or what is better way to learn professional odoo development?...
@OdooMates
@OdooMates 3 жыл бұрын
if you complete the odoo14 playlist, just go through the odoo12 playlist having 150 videos, dont watch all the videos, see the video topic and see the videos that you havent explored yet
@sanjukriplani502
@sanjukriplani502 3 жыл бұрын
@@OdooMatesOkay Thank You Sir..
@bunhinciong8832
@bunhinciong8832 2 жыл бұрын
Hi Odoomates, nice tutorial Thank you. Would you please create tutorial for creating html views, pdf report and excell report without fill into database but directly generated from sql query or python code
@ahmedahmed-mc7jc
@ahmedahmed-mc7jc 2 жыл бұрын
Hello, can I contact you privately?
@vanessadundee9255
@vanessadundee9255 Жыл бұрын
When I click on the button „print excel“, then there won’t get an excel sheet printed. But there comes no error and I did the same code as you
@OdooMates
@OdooMates Жыл бұрын
Can you see the code execution and see how far it goes
@vanessadundee9255
@vanessadundee9255 Жыл бұрын
Nothing happens when I click on the button. Not even the wizard get closen
@MSSYUVARAJS
@MSSYUVARAJS 3 жыл бұрын
How to send the report in sales module as a pdf file to sftp linux server using a button or something? If it's not clear let me know
@OdooMates
@OdooMates 3 жыл бұрын
possible to achieve it, generate the pdf from odoo and using python codes, we can store in the specified location
@chotanawab8071
@chotanawab8071 3 жыл бұрын
nice nd verfy informated video...sir can u plz told me how we are calling the meanu buton as a excel report printing?
@OdooMates
@OdooMates 3 жыл бұрын
thanks brother
@malikkamil6596
@malikkamil6596 2 жыл бұрын
hello i create a many2many field in wizard for selecting company field appears in wizard when clicked it says You are not allowed to access 'Unknown' (_unknown) records. No group currently allows this operation. Contact your administrator to request access if necessary. help plz i tried but ...
@OdooMates
@OdooMates 2 жыл бұрын
Please share your code here
@malikkamil6596
@malikkamil6596 2 жыл бұрын
@@OdooMates thanks resolved i appreciate your work your videos are very helpful
@OdooMates
@OdooMates 2 жыл бұрын
@andrew99682
@andrew99682 3 жыл бұрын
Hello, in order to upgrade module in apps menu, add in pycharm configuration "-u "
@OdooMates
@OdooMates 3 жыл бұрын
kzbin.info/www/bejne/e6PdgJyXlKZlZ9k
@OdooMates
@OdooMates 3 жыл бұрын
will try to use it
@andrew99682
@andrew99682 3 жыл бұрын
@@OdooMates you can upgrade it when restart service and not need to specify database name
@OdooMates
@OdooMates 3 жыл бұрын
@@andrew99682 i think we have to specify the db name if we need to update the module only in a particular db
@andrew99682
@andrew99682 3 жыл бұрын
@@OdooMates this will updates the module only in db is selected in conf file, so your pycharm will start wit this code "python odoo.bin -c your_conf_file -u your_module_name"
@Anjalisharma-zj8ce
@Anjalisharma-zj8ce 2 жыл бұрын
sir how can we add field of another module in xls report
@OdooMates
@OdooMates 2 жыл бұрын
From python code, we can fetch data from any modules using odoo orm,
@Anjalisharma-zj8ce
@Anjalisharma-zj8ce 2 жыл бұрын
sir, how to sum(total) one2many filed in xls report in oodo
@OdooMates
@OdooMates 2 жыл бұрын
if your one2many field name is line_ids and having a field amount in the o2m lines, to get the sum, you can do as follows: total = sum(self.line_ids.mapped('amount'))
@AndresDawidowicz
@AndresDawidowicz 11 ай бұрын
The report action does not work for me, it does not give me an error and it never goes through there, in Odoo16, please help, thank you
@mujahidahmed11
@mujahidahmed11 3 жыл бұрын
Hello, if i write any code under data={ } i am getting this error TypeError: object of type 'NoneType' has no len(). data is getting printed in the terminal but showing an error in odoo ui . iam using odoo14 .how can i solve this?
@OdooMates
@OdooMates 3 жыл бұрын
may be issue with the code you added inside data ? followed same as in the video or ..
@mujahidahmed11
@mujahidahmed11 3 жыл бұрын
@@OdooMates thanks for replying. and yes i followed the same as in the video
@mujahidahmed11
@mujahidahmed11 3 жыл бұрын
when i dont pass any value inside the data{} then a empty xls report is generating. if i pass data as in your video , that error is coming.
@OdooMates
@OdooMates 3 жыл бұрын
@@mujahidahmed11 can you install this module and see whether it works fine ? github.com/odoomates/odooapps/tree/14.0/om_hospital
@mujahidahmed11
@mujahidahmed11 3 жыл бұрын
@@OdooMates yes it is working fine. but there is no wizard for an excel report in your module. that's where im getting problem. rest is working fine in my module as well since i have followed your videos.
@MeroCasulli
@MeroCasulli Жыл бұрын
hi! great tutorial! how can i change the xlsx filename to a fixed one? lets say "Sales Report.xslx" instead of the module_name...
@indeveloperid6061
@indeveloperid6061 3 жыл бұрын
Is this work on Odoo 12?
@OdooMates
@OdooMates 3 жыл бұрын
yes, it will
@thaotran8405
@thaotran8405 2 жыл бұрын
Do you know how to attach this excel file to an email ?
@OdooMates
@OdooMates 2 жыл бұрын
you may have to store it as an attachment in the db, then we can send it over the email
@santiagocosta1658
@santiagocosta1658 3 жыл бұрын
How can I fix error 414 query to large, this happens when i print the xlxs...
@OdooMates
@OdooMates 3 жыл бұрын
when you receive this error
@santiagocosta1658
@santiagocosta1658 3 жыл бұрын
@@OdooMates when i print the xlxs from the wizard
@OdooMates
@OdooMates 3 жыл бұрын
@@santiagocosta1658 you used the same method shown in the video or tried something different ?
@santiagocosta1658
@santiagocosta1658 3 жыл бұрын
@@OdooMates I used the same method, but I work with a lots of data because the report is from invoices
@santiagocosta1658
@santiagocosta1658 3 жыл бұрын
Hello, how can i change the name of the xls file ? Thanks in advance
@OdooMates
@OdooMates 3 жыл бұрын
dynamic name or a specific name for all reports ?
@santiagocosta1658
@santiagocosta1658 3 жыл бұрын
@@OdooMates dynamic or specific but for this kind of report created by xlsx.
@futhedude4848
@futhedude4848 2 жыл бұрын
@@santiagocosta1658 I'm looking for answer of this question too. Do you solved it yet?
@semarafa
@semarafa Жыл бұрын
Nice tutorial! But I have a problem: File "/home/odoo/src/user/report_xlsx/models/ir_report.py", line 18, in render_xlsx raise UserError(_("%s model was not found") % report_model_name) odoo.exceptions.UserError: report.False model was not found If I try to call the report, it´s give this error. How can I solve this?
@OdooMates
@OdooMates Жыл бұрын
it is resolved ?
@semarafa
@semarafa Жыл бұрын
@@OdooMates Not yet xS
@semarafa
@semarafa Жыл бұрын
​@@OdooMates Finally! There was a space in the xml report template(report_name field). I removed it, and everything works.
@osmoh6738
@osmoh6738 3 жыл бұрын
Hello my friend Can help my please . How to Connect Odoo with Arduino and received data from Arduino to odoo
@OdooMates
@OdooMates 3 жыл бұрын
Will this help ? kzbin.info/www/bejne/n6TNmaqBdrFpaa8
@AbdelrhmanGouda-g7j
@AbdelrhmanGouda-g7j 9 ай бұрын
can i get the source code ??
@OdooMates
@OdooMates 6 ай бұрын
apps.odoo.com/apps/modules/14.0/om_hospital
@alidaudi5646
@alidaudi5646 2 жыл бұрын
please upload this module in you github Thank you
@ivanespinosa9104
@ivanespinosa9104 2 жыл бұрын
Hello, I followed each step of the video, but it throws me ValueError: Expected singleton: (It happens to me when I add the read in var = self.env['class.name'].search_read([]))
@OdooMates
@OdooMates 2 жыл бұрын
kzbin.info/www/bejne/iKeXZaF8i9OSa7c
On Delete Policy In Odoo || Ondelete Policy for selection Field
11:52
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН
Арыстанның айқасы, Тәуіржанның шайқасы!
25:51
QosLike / ҚосЛайк / Косылайық
Рет қаралды 700 М.
人是不能做到吗?#火影忍者 #家人  #佐助
00:20
火影忍者一家
Рет қаралды 20 МЛН
Excel 2021 Full Course Tutorial (3+ Hours)
3:48:53
Learnit Training
Рет қаралды 960 М.
An Introductory QGIS Workshop for Beginners
3:49:41
QGIS North America
Рет қаралды 576 М.
Create Your Own Dashboard in ODOO 17 Today!!
17:00
ODOOITYOURSELF
Рет қаралды 14 М.
How To Create A Fillable Form With A Submit Button In Excel
29:20
Melissa Compton
Рет қаралды 162 М.
Selenium Session04|Object Identification|DatePicker|
49:11
guru automationtester
Рет қаралды 9
Web Controller in Odoo | Odoo 14 webinar
2:34:13
Cybrosys Technologies
Рет қаралды 10 М.