3408.3.11
by noz
* Added Updated Ecommerce module (Ref. sma(Tiny/Axelor). |
1 |
# -*- encoding: utf-8 -*-
|
2 |
##############################################################################
|
|
3 |
#
|
|
4 |
# OpenERP, Open Source Management Solution
|
|
5 |
# Copyright (C) 2004-2008 Tiny SPRL (<http://tiny.be>). All Rights Reserved
|
|
6 |
# $Id$
|
|
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 |
##############################################################################
|
|
3547.5.2
by sma (Tiny/Axelor)
* minor changes. |
22 |
|
3408.3.11
by noz
* Added Updated Ecommerce module (Ref. sma(Tiny/Axelor). |
23 |
{
|
3547.5.2
by sma (Tiny/Axelor)
* minor changes. |
24 |
'name': 'E-Commerce', |
25 |
'version': '1.0', |
|
3547.5.13
by sma (Tiny/Axelor)
ecommerce/ |
26 |
'author': 'Tiny', |
27 |
'website': 'http://www.openerp.com', |
|
3561.4.1
by sma (Tiny/Axelor)
modifs |
28 |
'category': 'Generic Modules/E-Commerce', |
3589.1.14
by sma (Tiny/Axelor)
modify |
29 |
'depends': ['delivery'], |
3561.4.1
by sma (Tiny/Axelor)
modifs |
30 |
'description': """ |
31 |
ecommerce users can order on the website, orders are automatically imported in OpenERP.
|
|
32 |
||
33 |
You can export products, product's categories, product images and create links between
|
|
34 |
categories of products, currency and languages to website.
|
|
35 |
||
36 |
Delivery of products manage by carriers.
|
|
37 |
||
38 |
Different payment methods are available for users to make payment.
|
|
39 |
||
40 |
You can display products in table on website using rows and columns specified in webshop.
|
|
41 |
""", |
|
3547.5.2
by sma (Tiny/Axelor)
* minor changes. |
42 |
'init_xml': [], |
3583.1.20
by sma (Tiny/Axelor)
ecommerce :modifs and cleaning |
43 |
'demo_xml': ['ecommerce_demo.xml'], |
3547.5.2
by sma (Tiny/Axelor)
* minor changes. |
44 |
'update_xml': [ |
3589.1.14
by sma (Tiny/Axelor)
modify |
45 |
'ecommerce_wizard.xml', |
3583.1.20
by sma (Tiny/Axelor)
ecommerce :modifs and cleaning |
46 |
'ecommerce_view.xml', |
47 |
'partner/partner_view.xml', |
|
3589.1.14
by sma (Tiny/Axelor)
modify |
48 |
'catalog/catalog_view.xml', |
3547.5.2
by sma (Tiny/Axelor)
* minor changes. |
49 |
'sale_order/sale_order_view.xml', |
50 |
'sale_order/sale_order_sequence.xml', |
|
3583.1.20
by sma (Tiny/Axelor)
ecommerce :modifs and cleaning |
51 |
'ecommerce_report.xml', |
3547.5.2
by sma (Tiny/Axelor)
* minor changes. |
52 |
'security/ir.model.access.csv'
|
53 |
],
|
|
54 |
'installable': True, |
|
55 |
'active': False |
|
3408.3.11
by noz
* Added Updated Ecommerce module (Ref. sma(Tiny/Axelor). |
56 |
}
|
57 |
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|