Skip to content

Commit

Permalink
[MIG] fs_storage: Migration to 18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
qgroulard committed Oct 7, 2024
1 parent 154c347 commit 5d46ddd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion fs_storage/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{
"name": "Filesystem Storage Backend",
"summary": "Implement the concept of Storage with amazon S3, sftp...",
"version": "17.0.1.0.2",
"version": "18.0.1.0.0",
"category": "FS Storage",
"website": "https://github.com/OCA/storage",
"author": " ACSONE SA/NV, Odoo Community Association (OCA)",
Expand Down
10 changes: 5 additions & 5 deletions fs_storage/views/fs_storage_view.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="fs_storage_tree_view" model="ir.ui.view">
<field name="name">fs.storage.tree (in fs_storage)</field>
<field name="name">fs.storage.list (in fs_storage)</field>
<field name="model">fs.storage</field>
<field name="arch" type="xml">
<tree>
<list>
<field name="code" />
<field name="name" />
<field name="protocol" />
</tree>
</list>
</field>
</record>
<record id="fs_storage_form_view" model="ir.ui.view">
Expand Down Expand Up @@ -87,7 +87,7 @@
<field name="name">FS Storage</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">fs.storage</field>
<field name="view_mode">tree,form</field>
<field name="view_mode">list,form</field>
<field name="search_view_id" ref="fs_storage_search_view" />
<field name="domain">[]</field>
<field name="context">{}</field>
Expand All @@ -101,7 +101,7 @@
<record model="ir.actions.act_window.view" id="act_open_fs_storage_view_tree">
<field name="act_window_id" ref="act_open_fs_storage_view" />
<field name="sequence" eval="10" />
<field name="view_mode">tree</field>
<field name="view_mode">list</field>
<field name="view_id" ref="fs_storage_tree_view" />
</record>
<menuitem
Expand Down

0 comments on commit 5d46ddd

Please sign in to comment.