mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
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.
19 lines
760 B
XML
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>
|