I'm currently using Odoo v8 and working on a custom module. I want to dynamically change the name of the downloaded report such as string+FieldValue where FieldValue is the value of a specific field on my model. How To ?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
1
Trả lời
5005
Lượt xem
Hi,
You can change the report name like this,
<record id="module_name.report_gst" model="ir.actions.report.xml">
<field name="print_report_name">(object.type == 'out_invoice' and object.state == 'draft' and 'Draft %s.pdf' % (object.journal_id.name) or
object.type == 'out_invoice' and object.state in ('open','paid') and '%s - %s.pdf' % (object.journal_id.name, object.number) or
object.type == 'out_refund' and object.state == 'draft' and 'Refund.pdf' or
object.type == 'out_refund' and '%s - %s.pdf' % ('Refund', object.number) or
object.type == 'in_invoice' and object.state == 'draft' and 'Vendor Bill.pdf' or
object.type == 'in_invoice' and object.state in ('open','paid') and '%s - %s.pdf' % (object.journal_id.name, object.number) or
object.type == 'in_refund' and object.state == 'draft' and 'Vendor Refund.pdf' or
object.type == 'in_refund' and '%s - %s.pdf' % ('Vendor Refund', object.number))</field>
</record>
This is a sample, change it accordingly,
Thanks
Could you please suggest on how to dynamically change the report name in case of multiple document report?
If we select multiple records from the tree view and print the report, I do not get the value i set in "print_report_name"
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
0
thg 12 17
|
3526 | ||
|
2
thg 2 17
|
7050 | ||
|
1
thg 8 16
|
16446 | ||
|
0
thg 1 16
|
3262 | ||
[8] Odoo Custom Report Page
Đã xử lý
|
|
3
thg 7 15
|
3846 |