Add module sale_remove_my_quotation_filter

This commit is contained in:
Alexis de Lattre
2023-09-11 18:42:08 +02:00
parent 1971808c7d
commit 48247b6d06
4 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
===============================
Sale Remove My Quotation Filter
===============================
This module removes the default filter **My Quotations** in the menu entry *Sales > Orders > Quotations*.
Credits
=======
Authors
~~~~~~~
* Akretion
Contributors
~~~~~~~~~~~~
* Alexis de Lattre <alexis.delattre@akretion.com>

View File

@@ -0,0 +1,16 @@
# Copyright 2023 Akretion France (https://www.akretion.com)
# @author Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Sale remove My Quotations filter',
'version': '16.0.1.0.0',
'category': 'Sales',
'license': 'AGPL-3',
'summary': 'Remove default filter My Quotations',
'author': 'Akretion',
'website': 'https://github.com/akretion/odoo-usability',
'depends': ['sale'],
'data': ['views/sale_order.xml'],
'installable': True,
}

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2023 Akretion France (http://www.akretion.com/)
@author: Alexis de Lattre <alexis.delattre@akretion.com>
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
-->
<odoo>
<record id="sale.action_quotations_with_onboarding" model="ir.actions.act_window">
<field name="context"></field>
</record>
<record id="sale.action_quotations" model="ir.actions.act_window">
<field name="context"></field>
</record>
</odoo>