[IMP] add sale_no_filter_myorder module to remove default filter on sale order
This commit is contained in:
29
sale_no_filter_myorder/README.rst
Normal file
29
sale_no_filter_myorder/README.rst
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
||||||
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||||
|
:alt: License: AGPL-3
|
||||||
|
|
||||||
|
==============
|
||||||
|
sale no filter myorder
|
||||||
|
==============
|
||||||
|
|
||||||
|
This module remove the default "my" filter on sale order
|
||||||
|
|
||||||
|
Installation
|
||||||
|
============
|
||||||
|
|
||||||
|
No special requirement, just install it
|
||||||
|
|
||||||
|
Configuration
|
||||||
|
=============
|
||||||
|
|
||||||
|
No special requirement
|
||||||
|
|
||||||
|
Usage
|
||||||
|
=====
|
||||||
|
|
||||||
|
Go to sale menu, the filter "my" is not selected anymore by default
|
||||||
|
|
||||||
|
Contributors
|
||||||
|
------------
|
||||||
|
|
||||||
|
* Sébsatien BEAU <sebastien.beau@akretion.com>
|
||||||
4
sale_no_filter_myorder/__init__.py
Normal file
4
sale_no_filter_myorder/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# © 2015 Akretion (http://www.akretion.com)
|
||||||
|
# Sébastien BEAU <sebastien.beau@akretion.com>
|
||||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||||
30
sale_no_filter_myorder/__openerp__.py
Normal file
30
sale_no_filter_myorder/__openerp__.py
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# © 2015 Akretion (http://www.akretion.com)
|
||||||
|
# Sébastien BEAU <sebastien.beau@akretion.com>
|
||||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||||
|
|
||||||
|
{
|
||||||
|
"name": "Sale no filter my order",
|
||||||
|
"summary": "Module summary",
|
||||||
|
"version": "8.0.1.0.0",
|
||||||
|
"category": "Uncategorized",
|
||||||
|
"website": "https://akretion.com",
|
||||||
|
"author": "Akretion",
|
||||||
|
"license": "AGPL-3",
|
||||||
|
"application": False,
|
||||||
|
"installable": True,
|
||||||
|
"external_dependencies": {
|
||||||
|
"python": [],
|
||||||
|
"bin": [],
|
||||||
|
},
|
||||||
|
"depends": [
|
||||||
|
"base",
|
||||||
|
],
|
||||||
|
"data": [
|
||||||
|
"views/sale_view.xml",
|
||||||
|
],
|
||||||
|
"demo": [
|
||||||
|
],
|
||||||
|
"qweb": [
|
||||||
|
]
|
||||||
|
}
|
||||||
17
sale_no_filter_myorder/views/sale_view.xml
Normal file
17
sale_no_filter_myorder/views/sale_view.xml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- © <YEAR(S)> <AUTHOR(S)>
|
||||||
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -->
|
||||||
|
|
||||||
|
<openerp>
|
||||||
|
<data>
|
||||||
|
|
||||||
|
<record id="sale.action_orders" 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>
|
||||||
|
|
||||||
|
</data>
|
||||||
|
</openerp>
|
||||||
Reference in New Issue
Block a user