Initial commit: Odoo 18.0-20251222 extra-addons
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled

This commit is contained in:
tocmo0nlord
2026-03-13 20:43:25 +00:00
parent 36e847a7df
commit adbe430761
9472 changed files with 1265727 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<odoo>
<template
id="report_delivery_document_customer_note"
inherit_id="stock.report_delivery_document"
>
<xpath expr="//table[@name='stock_move_line_table']" position="after">
<p t-if="o.customer_note">
<strong>Customer Comments:</strong>
<br />
<span t-field="o.customer_note" />
</p>
</xpath>
</template>
</odoo>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2023 Moduon Team S.L.
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl-3.0) -->
<odoo>
<record id="view_partner_form_inherit_partner_picking_note" model="ir.ui.view">
<field name="name">Partner Picking Note</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_form" />
<field name="arch" type="xml">
<xpath expr="//group[@name='sale']" position="inside">
<field
name="picking_note"
placeholder="Picking notes..."
groups="sales_team.group_sale_salesman,stock.group_stock_user"
/>
<field
name="picking_customer_note"
placeholder="Picking customer notes..."
groups="sales_team.group_sale_salesman,stock.group_stock_user"
/>
</xpath>
</field>
</record>
</odoo>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!-- Copyright 2018 Tecnativa - Carlos Dauden
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
<odoo>
<record id="view_order_form_inherit_sale_stock" model="ir.ui.view">
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale_stock.view_order_form_inherit_sale_stock" />
<field name="arch" type="xml">
<group name="sale_shipping" position="inside">
<field
name="picking_note"
readonly="state not in ('draft','sent', 'sale')"
/>
<field
name="picking_customer_note"
readonly="state not in ('draft','sent', 'sale')"
/>
</group>
</field>
</record>
</odoo>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!-- Copyright 2021 Tecnativa - Víctor Martínez
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
<odoo>
<record id="view_picking_form" model="ir.ui.view">
<field name="model">stock.picking</field>
<field name="inherit_id" ref="stock.view_picking_form" />
<field name="arch" type="xml">
<xpath expr="//page[@name='note']" position="attributes">
<attribute name="string">Comments</attribute>
</xpath>
<field name="note" position="after">
<field
name="customer_note"
readonly="state in ('done','cancel')"
placeholder="Comments that will be printed in the delivery slip"
/>
</field>
</field>
</record>
</odoo>