You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
1022 B

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- Inherited form view of stock warehouse to add the field for
checking whether the warehouse is a store-->
<record id="view_warehouse" model="ir.ui.view">
<field name="name">
stock.warehouse.view.form.inherit.website.in.store.pickup
</field>
<field name="model">stock.warehouse</field>
<field name="inherit_id" ref="stock.view_warehouse"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='code']" position="after">
<field name="is_store"/>
</xpath>
</field>
</record>
<template id="payment_delivery_shipping_method_1"
name="Delivery Shipping method"
inherit_id="website_sale_delivery.payment_delivery">
<xpath expr="//div[@id='delivery_method']" position="after">
<select class="store-pickup-dropdown d-none" style="width: 100%;">
</select>
</xpath>
</template>
</odoo>