Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Improve description
Browse files Browse the repository at this point in the history
  • Loading branch information
Willian Keller committed Feb 20, 2018
1 parent 23e506c commit b28645a
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 1 deletion.
57 changes: 57 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
Split Order for Magento 2
==================

This extension allows your online store to split the order into an order
for each item in the cart. With different order ids, customers can view all the
order ids in their Order History and track each item separately.
The admin generate separate invoices and shipments for each splitted order.
Shipping charges and tax are also split based on items.


Installation
-------------
**Using Composer**


Install all dependencies via [Composer](https://getcomposer.org) (from root of
your Magento2 Installation):
```sh
composer config repositories.magestat-module-split-order git git@github.com:magestat/magento2-split-order.git
composer require magestat/module-split-order:dev-master
```

**Using GIT Clone**

Run the following series of command (from root of your Magento2 Installation):
```sh
mkdir -p app/code/Magestat && git clone git@github.com:magestat/magento2-split-order.git app/code/Magestat/SplitOrder
```

**Enabling module**

After installation by either means, enable the extension by running following
commands (again from root of Magento2 installation):
```sh
php bin/magento module:enable Magestat_SplitOrder --clear-static-content
php bin/magento setup:upgrade
```

Go to *Stores* > *Configuration* > *Magestat* > *Split Order*:
And just Enable module.

Clear the caches:
```sh
php bin/magento cache:clean
```

Let us know if you have any suggestions for changing the price for the text,
contact@magestat.com or open an issue under this repository.


Uninstall
-------------

You need to remove the module.
```sh
composer remove magestat/module-split-order
```
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "magestat/module-split-order",
"description": "This extension creates a splitted order for each product added to the cart.",
"description": "This extension allows your online store to split the order into an order for each item in the cart.",
"type": "magento2-module",
"version": "1.0.0",
"authors": [
Expand Down

0 comments on commit b28645a

Please sign in to comment.