añadido Purchase Order Product Recommendation

This commit is contained in:
santiky 2021-10-20 21:34:48 +02:00
parent 50752d87e7
commit b65ba39360
Signed by: snt
GPG key ID: A9FD34930EADBE71
15 changed files with 1701 additions and 0 deletions

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="purchase_order_form" model="ir.ui.view">
<field name="name">Recommended products button</field>
<field name="model">purchase.order</field>
<field name="inherit_id" ref="purchase.purchase_order_form"/>
<field name="arch" type="xml">
<header>
<button
name="%(purchase_order_recommendation_action)d"
states="draft,sent,sale"
string="Recommended Products"
type="action"/>
</header>
</field>
</record>
</odoo>