forked from OCA/connector-magento
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request OCA#81 from guewen/8.0-frontport
Forward port of 7.0 up to 10e7608
- Loading branch information
Showing
43 changed files
with
1,452 additions
and
707 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
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
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,6 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
import connector | ||
import backend | ||
import magento_model | ||
import partner | ||
from . import connector | ||
from . import backend | ||
from . import magento_model | ||
from . import partner |
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
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
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,18 +1,18 @@ | ||
# -*- coding: utf-8 -*- | ||
import setting | ||
import connector | ||
import backend | ||
from . import setting | ||
from . import connector | ||
from . import backend | ||
|
||
import magento_model | ||
import product | ||
import product_category | ||
import partner | ||
import partner_category | ||
import invoice | ||
import sale | ||
import delivery | ||
import stock_picking | ||
import stock_tracking | ||
import payment_invoice | ||
from . import magento_model | ||
from . import product | ||
from . import product_category | ||
from . import partner | ||
from . import partner_category | ||
from . import invoice | ||
from . import sale | ||
from . import delivery | ||
from . import stock_picking | ||
from . import stock_tracking | ||
from . import payment_invoice | ||
|
||
import consumer | ||
from . import consumer |
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
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
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
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 |
---|---|---|
|
@@ -26,24 +26,24 @@ OpenERP to ensure a correct synchronization between them | |
OpenERP | ||
======= | ||
|
||
Download the branches below in a path where you chosed to store the addons:: | ||
Clone the repositories below in the path where you chosed to store the addons:: | ||
|
||
$ bzr branch lp:openerp-connector/7.0 openerp-connector | ||
$ bzr branch lp:openerp-connector-ecommerce/7.0 openerp-connector-ecommerce | ||
$ bzr branch lp:openerp-connector-magento/7.0 openerp-connector-magento | ||
$ bzr branch lp:e-commerce-addons/7.0 e-commerce-addons | ||
$ bzr branch lp:openerp-product-attributes/7.0 openerp-product-attributes | ||
$ bzr branch lp:sale-wkfl/7.0 sale-wkfl | ||
$ git clone [email protected]:OCA/connector.git -b 7.0 | ||
$ git clone [email protected]:OCA/connector-ecommerce.git -b 7.0 | ||
$ git clone [email protected]:OCA/connector-magento.git -b 7.0 | ||
$ git clone [email protected]:OCA/e-commerce.git -b 7.0 | ||
$ git clone [email protected]:OCA/product-attribute.git -b 7.0 | ||
$ git clone [email protected]:OCA/sale-workflow.git -b 7.0 | ||
|
||
.. important:: Keep the Bazaar branches entire. Do not copy-paste the modules | ||
.. important:: Keep the git branches entire. Do not copy-paste the modules | ||
in another directory. | ||
|
||
Add the branches in the addons path, either using the server command | ||
line or adding them in the OpenERP server configuration file. | ||
|
||
Example using the command line argument:: | ||
|
||
$ /path/to/openerp-server --addons-path /path/to/openerp-connector,/path/to/openerp-connector-ecommerce,/path/to/openerp-connector-magento,/path/to/e-commerce-addons,/path/to/openerp-product-attributes,/path/to/sale-wkfl | ||
$ /path/to/openerp-server --addons-path /path/to/connector,/path/to/connector-ecommerce,/path/to/connector-magento,/path/to/e-commerce,/path/to/product-attribute,/path/to/sale-workflow | ||
|
||
You also need to install the ``magento`` Python package. | ||
So install it with either pip or either easy_install:: | ||
|
@@ -69,7 +69,7 @@ For the time being, the Magento extension originally built by OpenLabs | |
is still used by the connector. But the version published on `Magento | ||
Connect` is outdated. | ||
|
||
Download the following branch and install it in Magento:: | ||
Download the following ``Bazaar`` branch and install it in Magento:: | ||
|
||
$ bzr branch lp:magentoerpconnect/magento-module-oerp6.x-stable magento-module | ||
|
||
|
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
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
Oops, something went wrong.