跳至內容
選單
此問題已被標幟
2 回覆
8988 瀏覽次數

In odooV8, I don't understand the "file" field in the xml <report declaration (where report is the shortcut for ir.action.report).

For instance, with: 

[code]<report

      id="contract_fibra_30 "

      string="Contract fibra 30 Mb/s"

      name="contract_fibra_print.contract_f_30"

      model="res.partner"

      report_type="qweb-pdf"

      file="contract_fib_30" 

        />[/code]

id  is the unique name of the action.report declaration

string is the human readable name of the action.report declaration 

name is the template name is used for the report

model is the model used to get the data

report_type is the pdf or html type

file ???

Is not the name of the downloaded file.

Andrea

頭像
捨棄
作者 最佳答案

Thanks Axel,

if I set 

attachment="contract_fibra_30Mb.pdf"            

I have got this error 

            ValueError: "name 'contract_fibra_30Mb' is not defined" while evaluating

            u'contract_fibra_30Mb.pdf'


I think because I have to declare the name as a string, like this: 

attachment=" 'contract_fibra_30Mb.pdf' "     or

attachment=" 'contract_fibra_30Mb' + '.pdf' "     

      

Anyway, even in the second type of declaration, the output pdf still doesn't take the right name,ç

but still has this name: "contract_fibra_print.contract_f_30.pdf" 

頭像
捨棄
最佳答案

Hi Andrea Alessandrini

The file attribute of the report definition tag it used to save it's value for the field report_rml of the model ir.actions.report.xml that have the following definition were you could read it's help

'report_rml': fields.char('Main Report File Path/controller', help="The path to the main report file/controller (depending on Report Type) or NULL if the content is in another data field"),

so it's not intended to be used with qweb reports since it will not be used at all.

To specify the report filename to be generated you need to use the attachment attribute that it will end in the attachment field of the same model that have the following definition:

'attachment': fields.char('Save as Attachment Prefix', help='This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables.'),

Hope this helps

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
1
8月 16
7637
1
10月 15
3474
3
9月 15
3694
3
2月 24
12616
5
1月 20
8204