~ntrubert/openobject-addons/base-sale-multichannel-multilingual

« back to all changes in this revision

Viewing changes to __terp__.py

  • Committer: root
  • Date: 2010-08-26 06:59:12 UTC
  • Revision ID: root@towakoni-20100826065912-z45ck9n49ov0f9im
reference before modification

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution    
 
5
#    Copyright (C) 2009 Akretion (<http://www.akretion.com>). All Rights Reserved
 
6
#    authors: Raphaël Valyi, Sharoon Thomas
 
7
#
 
8
#    This program is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU General Public License as published by
 
10
#    the Free Software Foundation, either version 3 of the License, or
 
11
#    (at your option) any later version.
 
12
#
 
13
#    This program is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
##############################################################################
 
22
 
 
23
 
 
24
{
 
25
    'name': 'Base Sale MultiChannels',
 
26
    'version': '1.0',
 
27
    'category': 'Generic Modules/Sale',
 
28
    'description': """
 
29
This module provide an abstract common minimal base to multi-channels sales.
 
30
Say you want to expose your product catalog to
 
31
* several instances of flashy-sluggish Magento web sites
 
32
* a cutting edge Spree web shop
 
33
* a Neteven online Marketplace
 
34
* EBay
 
35
* Amazon
 
36
* Google Base
 
37
* an external Point Of Sale system
 
38
* ...
 
39
Then this module allows you to:
 
40
* use several external references ids on every OpenERP object matching those all those external referentials
 
41
* per referential instance, use several sale sub platform entities (ex: several Magento websites per instance)
 
42
* per sub platform, use several shops (ex: several Magento web shops per website)
 
43
 
 
44
For each sale shop (matching OpenERP sale.shop object), this module abstract the interfaces to:
 
45
* export the catalog, shop warehouse stock level wise, shop pricelist wise
 
46
* import the catalog
 
47
* import orders
 
48
* export orders/picking status
 
49
    """,
 
50
    'author': 'Raphaël Valyi (Akretion.com), Sharoon Thomas (Openlabs.co.in)',
 
51
    'website': 'http://www.akretion.com',
 
52
    'depends': ['sale', 'base_external_referentials'],
 
53
    'init_xml': [],
 
54
    'update_xml': [
 
55
        'security/ir.model.access.csv',
 
56
        'sale_view.xml',
 
57
    ],
 
58
    'demo_xml': [],
 
59
    'installable': True,
 
60
    'certificate': '',
 
61
}
 
62
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: