Files
Odoo-Modules/fusion-plating/fusion_plating_bridge_documents/data/documents_folder_data.xml
gsinghpal be611876ad changes
2026-04-12 09:09:50 -04:00

25 lines
860 B
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2026 Nexa Systems Inc.
License OPL-1 (Odoo Proprietary License v1.0)
Part of the Fusion Plating product family.
Workspace folder for Fusion Plating QMS attachments.
Odoo 19 EE unified the Documents data model: folders are simply
``documents.document`` records with ``type = 'folder'`` and a null
``folder_id`` (root) or a parent folder reference. This matches the
Odoo 18.x / 19.x behaviour where the Documents kanban is driven by
a single model rather than a separate ``documents.folder`` model.
-->
<odoo noupdate="1">
<record id="documents_folder_plating_quality" model="documents.document">
<field name="name">Plating — Quality</field>
<field name="type">folder</field>
<field name="folder_id" eval="False"/>
</record>
</odoo>