-
-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADD/Mig]Migrated WooCommerce module and added Export functions
- Loading branch information
1 parent
7c48dbd
commit 4c474ef
Showing
90 changed files
with
5,164 additions
and
2,228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
Tech-Receptives Solutions Pvt. Ltd. | ||
Copyright (C) 2009-TODAY Tech-Receptives(<http://www.techreceptives.com>). | ||
|
||
Serpent Consulting Services Pvt. Ltd. | ||
Copyright (C) 2018-TODAY Serpent Consulting Services Pvt. Ltd. (<http://www.serpentcs.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/>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
.. 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 <https://techreceptives.com/> | ||
* Serpent Consulting Services Pvt. Ltd.<http://www.serpentcs.com/> | ||
|
||
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. | ||
|
||
|
||
|
||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg | ||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html | ||
:alt: License: AGPL-3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,5 @@ | ||
# -*- 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/>. | ||
# | ||
# | ||
# 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 | ||
from . import wizard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,39 @@ | ||
# -*- 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 Serpent Consulting Services Pvt. Ltd. | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
# See LICENSE file for full copyright and licensing details. | ||
|
||
{ | ||
'name': 'WooCommerce Connector', | ||
'version': '8.0.1.0.1', | ||
'category': 'customized', | ||
'description': """WooCommerce Connector.""", | ||
'author': 'Tech Receptives', | ||
'maintainer': 'OpenERP SA', | ||
'website': 'http://www.openerp.com', | ||
'depends': ['base', 'connector', 'connector_ecommerce'], | ||
'installable': False, | ||
'version': '11.0.1.0.1', | ||
'category': 'Ecommerce', | ||
'author': """Tech Receptives, | ||
Serpent Consulting Services Pvt. Ltd., | ||
Odoo Community Association (OCA)""", | ||
'contributors': """Tech Receptives, | ||
Serpent Consulting Services Pvt. Ltd.""", | ||
'license': 'AGPL-3', | ||
'maintainer': 'Odoo Community Association (OCA)', | ||
'website': 'https://github.com/OCA/connector-woocommerce', | ||
'summary': """Imports the Product's Categories, Products, Customers and | ||
Sale orders from WooCommerce, Meanwhile Exports from Odoo | ||
To WooCommerce.""", | ||
'depends': ['sale_stock', 'connector', 'connector_ecommerce'], | ||
'installable': True, | ||
'auto_install': False, | ||
'data': [ | ||
"security/ir.model.access.csv", | ||
"views/backend_view.xml", | ||
"views/product_view.xml", | ||
"views/res_partner_views.xml", | ||
"views/sale_views.xml", | ||
"wizard/woo_export_view.xml", | ||
"wizard/woo_validation_view.xml", | ||
"wizard/backend_instance.xml", | ||
], | ||
'external_dependencies': { | ||
'python': ['woocommerce'], | ||
}, | ||
'js': [], | ||
'application': True, | ||
"sequence": 3, | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
from . import core | ||
from . import backend_adapter | ||
from . import binder | ||
from . import importer | ||
from . import exporter | ||
from . import mapper |
Oops, something went wrong.