mirror of
https://github.com/NaN-tic/trytond-purchase_from_openerp.git
synced 2023-12-14 03:33:01 +01:00
19 lines
742 B
XML
19 lines
742 B
XML
<?xml version="1.0"?>
|
|
<!-- The COPYRIGHT file at the top level of this repository contains the full
|
|
copyright notices and license terms. -->
|
|
<tryton>
|
|
<data>
|
|
<!-- purchase.purchase -->
|
|
<record model="ir.ui.view" id="purchase_view_form">
|
|
<field name="model">purchase.purchase</field>
|
|
<field name="inherit" ref="purchase.purchase_view_form"/>
|
|
<field name="name">purchase_form</field>
|
|
</record>
|
|
|
|
<record model="ir.ui.view" id="purchase_view_list">
|
|
<field name="model">purchase.purchase</field>
|
|
<field name="inherit" ref="purchase.purchase_view_tree"/>
|
|
<field name="name">purchase_list</field>
|
|
</record>
|
|
</data>
|
|
</tryton>
|