From 68e945c04d660f8a95f826d8e97eab1ef820224f Mon Sep 17 00:00:00 2001 From: rahul shukla Date: Fri, 31 May 2019 12:36:09 +0530 Subject: [PATCH 1/4] readme updated --- README.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5436abd62..9b145722f 100755 --- a/README.md +++ b/README.md @@ -12,10 +12,11 @@ # Topics 1. ### [Introduction](#1-introduction-) -2. ### [Requirements](#2-requirements-) -3. ### [Installation & Configuration](#3-installation--configuration-) -4. ### [License](#4-license-) -5. ### [Miscellaneous](#5-miscellaneous-) +2. ### [Documentation] (#2-documentation-) +3. ### [Requirements](#2-requirements-) +4. ### [Installation & Configuration](#3-installation--configuration-) +5. ### [License](#4-license-) +6. ### [Miscellaneous](#5-miscellaneous-) ### 1. Introduction : @@ -50,7 +51,11 @@ It packs in lots of demanding features that allows your business to scale in no Dev guys can take advantage of two of the hottest frameworks used in this project Laravel and Vue.js, both of these frameworks have been used in Bagisto. Bagisto is using power of both of these frameworks and making best out of it out of the box. -### 2. Requirements : +### 2. Documentation : + +# Visit our documentation(https://devdocs.bagisto.com) + +### 3. Requirements : * **OS**: Ubuntu 16.04 LTS or higher. * **SERVER**: Apache 2 or NGINX @@ -62,7 +67,7 @@ Bagisto is using power of both of these frameworks and making best out of it out * **Node**: 8.11.3 LTS or higher. * **Composer**: 1.6.5 or higher. -### 3. Installation & Configuration : +### 4. Installation & Configuration : **1. Try our new GUI installer to install Bagisto:** From 3f0fee01e5ff6ad5c9a54a327890eb4ada2e8a19 Mon Sep 17 00:00:00 2001 From: rahul shukla Date: Fri, 31 May 2019 12:39:33 +0530 Subject: [PATCH 2/4] readme updated --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9b145722f..5c43613a4 100755 --- a/README.md +++ b/README.md @@ -51,9 +51,9 @@ It packs in lots of demanding features that allows your business to scale in no Dev guys can take advantage of two of the hottest frameworks used in this project Laravel and Vue.js, both of these frameworks have been used in Bagisto. Bagisto is using power of both of these frameworks and making best out of it out of the box. -### 2. Documentation : +### 2. Documentation : -# Visit our documentation(https://devdocs.bagisto.com) +# Visit our [Documentation](https://devdocs.bagisto.com) ### 3. Requirements : From ba076f15f54495f3070adab626f494750682c1b7 Mon Sep 17 00:00:00 2001 From: rahul shukla Date: Fri, 31 May 2019 12:41:26 +0530 Subject: [PATCH 3/4] readme updated --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5c43613a4..f9ed9ea46 100755 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ # Topics 1. ### [Introduction](#1-introduction-) -2. ### [Documentation] (#2-documentation-) +2. ### [Documentation](#2-documentation-) 3. ### [Requirements](#2-requirements-) 4. ### [Installation & Configuration](#3-installation--configuration-) 5. ### [License](#4-license-) From 12e93b3f58530c2931c06b39f0656dab0e201fc9 Mon Sep 17 00:00:00 2001 From: rahul shukla Date: Fri, 31 May 2019 12:48:04 +0530 Subject: [PATCH 4/4] cart updated for convert price --- packages/Webkul/Checkout/src/Cart.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/Webkul/Checkout/src/Cart.php b/packages/Webkul/Checkout/src/Cart.php index 874d27e7d..f007cd844 100755 --- a/packages/Webkul/Checkout/src/Cart.php +++ b/packages/Webkul/Checkout/src/Cart.php @@ -346,7 +346,7 @@ class Cart { if ($childData != null) { $childData['parent_id'] = $item->id; - + $this->cartItem->create($childData); } @@ -869,7 +869,7 @@ class Cart { } $item->update([ - 'price' => $price, + 'price' => core()->convertPrice($price), 'base_price' => $price, 'total' => core()->convertPrice($price * ($item->quantity)), 'base_total' => $price * ($item->quantity), @@ -893,7 +893,7 @@ class Cart { } $item->update([ - 'price' => $price, + 'price' => core()->convertPrice($price), 'base_price' => $price, 'total' => core()->convertPrice($price * ($item->quantity)), 'base_total' => $price * ($item->quantity),