Skip to content

Commit

Permalink
[MIG] connector_woocommerce to V11
Browse files Browse the repository at this point in the history
  • Loading branch information
hugosantosred committed Feb 7, 2018
1 parent 007f70c commit 361fb3a
Show file tree
Hide file tree
Showing 40 changed files with 1,601 additions and 2,072 deletions.
58 changes: 58 additions & 0 deletions connector_woocommerce/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3

=====================
WooCommerce Connector
=====================

Connector between WooCommerce and Odoo

Usage
=====

#. Go to ...

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/207/11.0


Bug Tracker
===========

Bugs are tracked on `GitHub Issues
<https://github.com/OCA/connector-woocommerce/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smash it by providing detailed and welcomed feedback.

Credits
=======

Images
------

* Odoo Community Association: `Icon <https://odoo-community.org/logo.png>`_.

Contributors
------------

* Tech-Receptives Solutions Pvt. Ltd.
* Hugo Santos <hugo.santos@factorlibre.com>

Do not contact contributors directly about support or help with technical issues.

Maintainer
----------

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

This module is maintained by the OCA.

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

To contribute to this module, please visit https://odoo-community.org.
29 changes: 5 additions & 24 deletions connector_woocommerce/__init__.py
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,25 +1,6 @@
# -*- coding: utf-8 -*-
#
#
# Tech-Receptives Solutions Pvt. Ltd.
# Copyright (C) 2009-TODAY Tech-Receptives(<http://www.techreceptives.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
# © 2009 Tech-Receptives Solutions Pvt. Ltd.
# © 2018 FactorLibre
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from . import model
from . import backend
from . import connector
from . import related_action
from . import components
from . import models
39 changes: 10 additions & 29 deletions connector_woocommerce/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,34 +1,16 @@
# -*- coding: utf-8 -*-
#
#
# Tech-Receptives Solutions Pvt. Ltd.
# Copyright (C) 2009-TODAY Tech-Receptives(<http://www.techreceptives.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#

# © 2009 Tech-Receptives Solutions Pvt. Ltd.
# © 2018 FactorLibre
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'WooCommerce Connector',
'version': '8.0.1.0.1',
'category': 'customized',
'description': """WooCommerce Connector.""",
'author': 'Tech Receptives',
'maintainer': 'OpenERP SA',
'version': '11.0.1.0.0',
'category': 'Connector',
'author': "Tech Receptives,FactorLibre,Odoo Community Association (OCA)",
'license': 'AGPL-3',
'website': 'http://www.openerp.com',
'depends': ['base', 'connector', 'connector_ecommerce'],
'installable': False,
'depends': ['connector',
'sale_stock'],
'installable': True,
'auto_install': False,
'data': [
"security/ir.model.access.csv",
Expand All @@ -37,7 +19,6 @@
'external_dependencies': {
'python': ['woocommerce'],
},
'js': [],
'application': True,
"sequence": 3,
}
28 changes: 0 additions & 28 deletions connector_woocommerce/backend.py

This file was deleted.

5 changes: 5 additions & 0 deletions connector_woocommerce/components/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from . import core
from . import backend_adapter
from . import binder
from . import importer
from . import mapper
Loading

0 comments on commit 361fb3a

Please sign in to comment.