This question has been flagged
1 Reply
3847 Views

I am using the OpenOffice plug in to create a new quote form. I need both quote forms to show up under the print button. I have duplicated the "Quotation / Order" report and renamed it to "JCPS Quote". Then I edited it in OpenOffice and sent it to the server. It is my understanding that is should show up now under the print button, but it does not. What am I missing?

Avatar
Discard
Best Answer

Yes, you are forgetting something:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>

        <report auto="False" id="report_sale_order" model="sale.order" name="sale.order"
                rml="sale/report/sale_order.rml" string="Quotation / Order"
                usage="default"/>

    </data>
</openerp>

This is the code that adds 'Quotation/Order' to the system, you have to do the same. You can find too 'sale_order.py' on report folder that is adding some values.

Avatar
Discard