~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to purchase_order_type/__openerp__.py

  • Committer: Moises Lopez
  • Date: 2014-10-09 21:30:17 UTC
  • mfrom: (879.1.7 trunk-addons-vauxoo)
  • Revision ID: moylop260@vauxoo.com-20141009213017-u3jicyg8xery3r8c
[MERGE] upforward 7.0
-Fix unused import
-Fix relative import
-Fix full path import
-Fix trailing whitespace pylint error C0303
-Fix autopep8 ignoring E501 & E128
-Fix reimported
-Fix __openerp__.py files
-Translate update

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#    You should have received a copy of the GNU Affero General Public License
23
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24
24
###############################################################################
25
 
 
26
25
{
27
 
    'name': 'Purchase Order Type',
28
 
    'version': '1.0',
29
 
    'author': 'Vauxoo',
30
 
    'website': 'http://www.vauxoo.com/',
31
 
    'category': 'purchase',
32
 
    'description': '''
 
26
    "name": "Purchase Order Type", 
 
27
    "version": "1.0", 
 
28
    "author": "Vauxoo", 
 
29
    "category": "purchase", 
 
30
    "description": """
33
31
Purchase Order Type
34
32
===================
35
33
 
36
34
Add a new field name type that can discriminate a materials and service
37
35
purchase order. Also add to the purchase order search view the
38
36
filters need to visually make the discrimination.
39
 
''',
40
 
    'depends': [
41
 
        'purchase',
42
 
        'purchase_requisition_type',
43
 
        'pr_line_related_po_line',
44
 
        ],
45
 
    'data': [
46
 
        'view/purchase_order_view.xml',
47
 
        ],
48
 
    'demo': [],
49
 
    'test': [],
50
 
    'qweb': [],
51
 
    'js': [],
52
 
    'css': [],
53
 
    'active': False,
54
 
    'installable': True,
55
 
}
 
37
""", 
 
38
    "website": "http://www.vauxoo.com/", 
 
39
    "license": "", 
 
40
    "depends": [
 
41
        "purchase", 
 
42
        "purchase_requisition_type", 
 
43
        "pr_line_related_po_line"
 
44
    ], 
 
45
    "demo": [], 
 
46
    "data": [
 
47
        "view/purchase_order_view.xml"
 
48
    ], 
 
49
    "test": [], 
 
50
    "js": [], 
 
51
    "css": [], 
 
52
    "qweb": [], 
 
53
    "installable": True, 
 
54
    "auto_install": False, 
 
55
    "active": False
 
56
}
 
 
b'\\ No newline at end of file'