~confianz/openerp-salesforce/trunk

« back to all changes in this revision

Viewing changes to partner_extension/__openerp__.py

  • Committer: Vinod
  • Date: 2013-11-28 07:47:28 UTC
  • Revision ID: vinod@confianzit.biz-20131128074728-4teo79pvbvd4x9x1
=Adding the partner extsion module , which added a last name , middle name to customer, will be used buy future instgration as well

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
{
 
3
    'name': 'Partner Extension',
 
4
    'version': '1.0',
 
5
    'category': 'Verticals',
 
6
    'sequence': 190,
 
7
    'summary': "Partner Extension, Adds a middle name ,last name field in Partner model",
 
8
    'description': """
 
9
              This is useful as we inetgrate more application with openerp, we can use this as a common module
 
10
       """,
 
11
    'author': 'Confianz Global(openerpmobile@confianzit.biz)',
 
12
    'website': 'http://confianzit.com',
 
13
    'images': [],
 
14
    'depends': ['base'],
 
15
    'data':[
 
16
        'partner_view.xml',
 
17
    ],
 
18
    'installable': True,
 
19
    'auto_install': False,
 
20
    'application': True,
 
21
}
 
22