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

Commit b28645a

Browse files
author
Willian Keller
committed
Improve description
1 parent 23e506c commit b28645a

File tree

2 files changed

+58
-1
lines changed

2 files changed

+58
-1
lines changed

README.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
Split Order for Magento 2
2+
==================
3+
4+
This extension allows your online store to split the order into an order
5+
for each item in the cart. With different order ids, customers can view all the
6+
order ids in their Order History and track each item separately.
7+
The admin generate separate invoices and shipments for each splitted order.
8+
Shipping charges and tax are also split based on items.
9+
10+
11+
Installation
12+
-------------
13+
**Using Composer**
14+
15+
16+
Install all dependencies via [Composer](https://getcomposer.org) (from root of
17+
your Magento2 Installation):
18+
```sh
19+
composer config repositories.magestat-module-split-order git git@github.com:magestat/magento2-split-order.git
20+
composer require magestat/module-split-order:dev-master
21+
```
22+
23+
**Using GIT Clone**
24+
25+
Run the following series of command (from root of your Magento2 Installation):
26+
```sh
27+
mkdir -p app/code/Magestat && git clone git@github.com:magestat/magento2-split-order.git app/code/Magestat/SplitOrder
28+
```
29+
30+
**Enabling module**
31+
32+
After installation by either means, enable the extension by running following
33+
commands (again from root of Magento2 installation):
34+
```sh
35+
php bin/magento module:enable Magestat_SplitOrder --clear-static-content
36+
php bin/magento setup:upgrade
37+
```
38+
39+
Go to *Stores* > *Configuration* > *Magestat* > *Split Order*:
40+
And just Enable module.
41+
42+
Clear the caches:
43+
```sh
44+
php bin/magento cache:clean
45+
```
46+
47+
Let us know if you have any suggestions for changing the price for the text,
48+
contact@magestat.com or open an issue under this repository.
49+
50+
51+
Uninstall
52+
-------------
53+
54+
You need to remove the module.
55+
```sh
56+
composer remove magestat/module-split-order
57+
```

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "magestat/module-split-order",
3-
"description": "This extension creates a splitted order for each product added to the cart.",
3+
"description": "This extension allows your online store to split the order into an order for each item in the cart.",
44
"type": "magento2-module",
55
"version": "1.0.0",
66
"authors": [

0 commit comments

Comments
 (0)