Initial commit: Sale packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:49 +02:00
commit 14e3d26998
6469 changed files with 2479670 additions and 0 deletions

View file

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="res_partner_address_type" model="ir.ui.view">
<field name="name">res.partner.form.inherit.base</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_form" />
<field name="arch" type="xml">
<xpath expr="//group/group/span/field[@name='type']" position="attributes">
<attribute name="groups">account.group_delivery_invoice_address</attribute>
</xpath>
<xpath expr="//field[@name='child_ids']//field[@name='type']" position="attributes">
<attribute name="groups">account.group_delivery_invoice_address</attribute>
</xpath>
<xpath expr="//group/group/span/field[@name='type']" position="after">
<field name="type" invisible="1"/>
</xpath>
<xpath expr="//field[@name='child_ids']//field[@name='type']" position="after">
<field name="type" invisible="1"/>
</xpath>
</field>
</record>
</odoo>