Add module sale_remove_my_quotation_filter
This commit is contained in:
18
sale_remove_my_quotation_filter/README.rst
Normal file
18
sale_remove_my_quotation_filter/README.rst
Normal 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>
|
||||||
0
sale_remove_my_quotation_filter/__init__.py
Normal file
0
sale_remove_my_quotation_filter/__init__.py
Normal file
16
sale_remove_my_quotation_filter/__manifest__.py
Normal file
16
sale_remove_my_quotation_filter/__manifest__.py
Normal 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,
|
||||||
|
}
|
||||||
18
sale_remove_my_quotation_filter/views/sale_order.xml
Normal file
18
sale_remove_my_quotation_filter/views/sale_order.xml
Normal 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>
|
||||||
Reference in New Issue
Block a user