I have already created a module that inherits/overrides the default Sales Order view. Works great. I am now trying to do the same thing for Purchase Orders. However, when I try to install my module, Odoo complains that it can't find the template to inherit from:
ParseError: "External ID not found in the system: purchase.report_purchasequotation_document"
My XML code looks like this:
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<template id="videx_po_body" inherit_id="purchase.report_purchasequotation_document">...
The template is defined in the file "addons/purchase/views/report_purchasequotation.xml":
<template id="report_purchasequotation_document">
Why can't Odoo find the template to inherit?