~eoc/openobject-addons/eoc-extra-addons-6.1

« back to all changes in this revision

Viewing changes to sale_default_filters/__openerp__.py

  • Committer: Mariano Ruiz
  • Date: 2013-11-26 13:45:45 UTC
  • mfrom: (1.2.39 eoc-extra-addons-trunk)
  • Revision ID: mrsarm@gmail.com-20131126134545-9e57gihtbsfjsu6j
[MERGE] New modules [sale_default_filters] and [purchase_default_filters]. Improvements in [stock_move_ext] and [stock_picking_simple_locations]

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Sale Default Filters
 
5
#    Copyright (C) 2013 Enterprise Objects Consulting
 
6
#                       http://www.eoconsulting.com.ar
 
7
#    Authors: Mariano Ruiz <mrsarm@gmail.com>
 
8
#
 
9
#    This program is free software: you can redistribute it and/or modify
 
10
#    it under the terms of the GNU Affero General Public License as
 
11
#    published by the Free Software Foundation, either version 3 of the
 
12
#    License, or (at your option) any later version.
 
13
#
 
14
#    This program is distributed in the hope that it will be useful,
 
15
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
#    GNU Affero General Public License for more details.
 
18
#
 
19
#    You should have received a copy of the GNU Affero General Public License
 
20
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
21
#
 
22
##############################################################################
 
23
 
 
24
{
 
25
    "name" : "Sale Default Filters",
 
26
    "description":"""
 
27
Change the default filters in Sales Orders view:
 
28
 
 
29
- By default states Quotations and Sales activated
 
30
- Add Done state filter 
 
31
""",
 
32
    "version" : "0.1",
 
33
    "author" : "Enterprise Objects Consulting",
 
34
    "website" : "http://www.eoconsulting.com.ar",
 
35
    "category" : "Purchase Management",
 
36
    "update_xml" : ["sale_view.xml"],
 
37
    "depends" : ["sale"],
 
38
    "active": False,
 
39
    "installable": True
 
40
}