Aplicoop desde el repo de kidekoop

This commit is contained in:
snt 2026-02-11 15:32:11 +01:00
parent 69917d1ec2
commit 7cff89e418
93 changed files with 313992 additions and 0 deletions

View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<!-- Sale Order Form Extension (Backend) -->
<record id="sale_order_form_view_extension" model="ir.ui.view">
<field name="name">sale.order.form.extension</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form" />
<field name="arch" type="xml">
<!-- Add group purchase fields in the general information section -->
<xpath expr="//field[@name='note']" position="before">
<group string="Group Purchase Information" groups="base.group_user">
<field name="group_order_id" readonly="True" />
<field name="pickup_day" readonly="True" />
</group>
</xpath>
</field>
</record>
</data>
</odoo>