Print credit note

In v10, i can print the credit note report after make Credit note from sales invoice, the report title will show as “Credit Note”

I tried in v11 but the title stay as “Sales Invoice” not “Credit note”… where can i print credit note ?

Thanks

I think (in terms of accounting) that a Credit note is a negative Sales Invoice?

yes , the "Is Return (Credit Note) option already checked and save , but i cannot print a “Credit Note” hard copy …

I found the way to do , but don’t know its normal or not , just add the wording “Credit Note” in “Print Heading” to solve my case

Custom print format may need to add the following code to show the wording dynamically

{% if doc.is_return == 1 %}
CREDIT NOTE
{% elif doc.select_print_heading is not none %}
{{doc.select_print_heading}}
{% else %}
SALES INVOICE
{% endif %}