Questions tagged [qweb]

QWeb is the template engine used by the OpenERP/Odoo Web Client. It is an XML-based templating language, similar to Genshi, Thymeleaf or Facelets

572 questions
0
votes
1 answer

How to get the following situation solved in odoo 8?

I am trying to print a many2many field value in qweb pdf report Following is the code purchase_quotation.py class purchase_quotation(osv.Model): _name="purchase.quotation" _rec_name='vno' _columns={ …
Shravy
  • 656
  • 1
  • 23
  • 61
0
votes
1 answer

How to attach pdf report to automatically send mail after importing data in odoo v8?

When i import data at that time i need to attach pdf report which will automatically send with declare part of body. If i send manual mail its going on with attachment of report. class import_data(osv.osv): _name = "import.data" _columns =…
0
votes
1 answer

How to make the following corrections below in qweb pdf?

I have been working on qweb pdf for tables part with the following part:

Action Items:

Shravy
  • 656
  • 1
  • 23
  • 61
0
votes
2 answers

Odoo 8 - Qweb output PDF for HR Evaluation Report

when clicking the Print Survey button (Human Resources - Apraissal - Interview Requests), the standard output is HTML (action_print_survey method). I want to change output to PDF. I couldn't find on Odoo configuration nor standard structure for Qweb…
jack10bells
  • 1
  • 1
  • 4
0
votes
2 answers

How to sum calculated in qweb report odoo

How to calculated many record in report qweb use odoo. I tried to create method in report py to calculate @api.one @api.depends("total_do") def _get_total(self): batch_ids = self.batch_ids total_do = self.total_do for in item batch_ids: …
Mahroza Pradana
  • 71
  • 2
  • 16
0
votes
2 answers

ParseError: External ID conflict while creating custom qweb report

I created a folder called Student. When i open this module i am getting the above said error. this is my opennerp file, { 'name': "Student", 'version': '1.0', 'sequence': 7, 'depends': ['base','report'], 'author': "ZD", 'category':…
Kiran
  • 1,481
  • 6
  • 36
  • 66
0
votes
2 answers

Odoo 8 qweb report, keep getting error "QWebTemplateNotFound: External ID not found in the system"

To learn about creating modules, I did the odoo tutorial, which is a guide to create a sample module - this report works. I followed the exact same steps to create the report in my module and it is not working, I keep getting this error when…
aydunno
  • 91
  • 10
0
votes
2 answers

How to hide fields in qweb report of some module in openerp?

I am customizing Sales module as I have hidden some fields from sales order FORM VIEW. When I go for printing invoice its showing some empty fields those are which I've already made hide in form view. So I want to make those fields hidden in reports…
Chandu
  • 2,053
  • 3
  • 25
  • 39
0
votes
2 answers

how to call qweb report in another model in odoo?

I have created a wizard in the that using many2one field of another model. where the qweb-report has been mentioned. Now I want to select 1record(from many2one field) and print the respective report.[previously i've done invoice printing in that…
Chandu
  • 2,053
  • 3
  • 25
  • 39
0
votes
2 answers

Impossible to create a custom report in odoo 8

I am trying to do my own custom report in odoo 8 after migrating from openErp 7. I have followed this tutorial but I am stuck to step 3 at the very beginnig getting an error from the server with the following trace Traceback (most recent call…
Yves Nicolas
  • 6,901
  • 7
  • 25
  • 40
0
votes
1 answer