Files
suite/connector_amazon_sp/views/stock_views.xml
Jared Kipe 5944db313e [MIG] connector_amazon_sp: partial 14.0
Need to investigate form for Amazon orders.  Installing it complains that `action_...` doesn't actually exist.  I started making pass through methods like `action_unlock` in sale_order.common, but then came to an action that would only exist in inherited views and not in this specific new form.
2022-02-04 15:23:27 -08:00

19 lines
760 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- This view's classes/structure do not make it easy to remove without direct class -->
<template id="report_picking_inherit" inherit_id="stock.report_picking">
<xpath expr="//div[@class='page']/div[@class='row']/div[2]" position="attributes">
<attribute name="t-if">not o.has_amazon_pii()</attribute>
</xpath>
</template>
<!-- xpath error -->
<!-- <template id="report_delivery_document_inherit" inherit_id="stock.report_delivery_document">-->
<!-- <xpath expr="//div[@name='customer_address']" position="attributes">-->
<!-- <attribute name="t-if">not o.has_amazon_pii()</attribute>-->
<!-- </xpath>-->
<!-- </template>-->
</odoo>