Merge pull request #2041 from jitendra-webkul/1.0

Issue #1760 fixed
This commit is contained in:
Jitendra Singh 2020-01-13 18:51:37 +05:30 committed by GitHub
commit 939895cb88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 257 additions and 21 deletions

188
config/modules.php Normal file
View File

@ -0,0 +1,188 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Module Namespace
|--------------------------------------------------------------------------
|
| Default module namespace.
|
*/
'namespace' => 'Modules',
/*
|--------------------------------------------------------------------------
| Module Stubs
|--------------------------------------------------------------------------
|
| Default module stubs.
|
*/
'stubs' => [
'enabled' => false,
'path' => base_path() . '/vendor/nwidart/laravel-modules/src/Commands/stubs',
'files' => [
'start' => 'start.php',
'routes' => 'Http/routes.php',
'views/index' => 'Resources/views/index.blade.php',
'views/master' => 'Resources/views/layouts/master.blade.php',
'scaffold/config' => 'Config/config.php',
'composer' => 'composer.json',
'assets/js/app' => 'Resources/assets/js/app.js',
'assets/sass/app' => 'Resources/assets/sass/app.scss',
'webpack' => 'webpack.mix.js',
'package' => 'package.json',
],
'replacements' => [
'start' => ['LOWER_NAME', 'ROUTES_LOCATION'],
'routes' => ['LOWER_NAME', 'STUDLY_NAME', 'MODULE_NAMESPACE'],
'webpack' => ['LOWER_NAME'],
'json' => ['LOWER_NAME', 'STUDLY_NAME', 'MODULE_NAMESPACE'],
'views/index' => ['LOWER_NAME'],
'views/master' => ['LOWER_NAME', 'STUDLY_NAME'],
'scaffold/config' => ['STUDLY_NAME'],
'composer' => [
'LOWER_NAME',
'STUDLY_NAME',
'VENDOR',
'AUTHOR_NAME',
'AUTHOR_EMAIL',
'MODULE_NAMESPACE',
],
],
'gitkeep' => true,
],
'paths' => [
/*
|--------------------------------------------------------------------------
| Modules path
|--------------------------------------------------------------------------
|
| This path used for save the generated module. This path also will be added
| automatically to list of scanned folders.
|
*/
'modules' => base_path('Modules'),
/*
|--------------------------------------------------------------------------
| Modules assets path
|--------------------------------------------------------------------------
|
| Here you may update the modules assets path.
|
*/
'assets' => public_path('modules'),
/*
|--------------------------------------------------------------------------
| The migrations path
|--------------------------------------------------------------------------
|
| Where you run 'module:publish-migration' command, where do you publish the
| the migration files?
|
*/
'migration' => base_path('database/migrations'),
/*
|--------------------------------------------------------------------------
| Generator path
|--------------------------------------------------------------------------
| Customise the paths where the folders will be generated.
| Set the generate key to false to not generate that folder
*/
'generator' => [
'config' => ['path' => 'Config', 'generate' => true],
'command' => ['path' => 'Console', 'generate' => true],
'migration' => ['path' => 'Database/Migrations', 'generate' => true],
'seeder' => ['path' => 'Database/Seeders', 'generate' => true],
'factory' => ['path' => 'Database/factories', 'generate' => true],
'model' => ['path' => 'Entities', 'generate' => true],
'controller' => ['path' => 'Http/Controllers', 'generate' => true],
'filter' => ['path' => 'Http/Middleware', 'generate' => true],
'request' => ['path' => 'Http/Requests', 'generate' => true],
'provider' => ['path' => 'Providers', 'generate' => true],
'assets' => ['path' => 'Resources/assets', 'generate' => true],
'lang' => ['path' => 'Resources/lang', 'generate' => true],
'views' => ['path' => 'Resources/views', 'generate' => true],
'test' => ['path' => 'Tests', 'generate' => true],
'repository' => ['path' => 'Repositories', 'generate' => false],
'event' => ['path' => 'Events', 'generate' => false],
'listener' => ['path' => 'Listeners', 'generate' => false],
'policies' => ['path' => 'Policies', 'generate' => false],
'rules' => ['path' => 'Rules', 'generate' => false],
'jobs' => ['path' => 'Jobs', 'generate' => false],
'emails' => ['path' => 'Emails', 'generate' => false],
'notifications' => ['path' => 'Notifications', 'generate' => false],
'resource' => ['path' => 'Transformers', 'generate' => false],
],
],
/*
|--------------------------------------------------------------------------
| Scan Path
|--------------------------------------------------------------------------
|
| Here you define which folder will be scanned. By default will scan vendor
| directory. This is useful if you host the package in packagist website.
|
*/
'scan' => [
'enabled' => false,
'paths' => [
base_path('vendor/*/*'),
],
],
/*
|--------------------------------------------------------------------------
| Composer File Template
|--------------------------------------------------------------------------
|
| Here is the config for composer.json file, generated by this package
|
*/
'composer' => [
'vendor' => 'nwidart',
'author' => [
'name' => 'Nicolas Widart',
'email' => 'n.widart@gmail.com',
],
],
/*
|--------------------------------------------------------------------------
| Caching
|--------------------------------------------------------------------------
|
| Here is the config for setting up caching feature.
|
*/
'cache' => [
'enabled' => false,
'key' => 'laravel-modules',
'lifetime' => 60,
],
/*
|--------------------------------------------------------------------------
| Choose what laravel-modules will register as custom namespaces.
| Setting one to false will require you to register that part
| in your own Service Provider class.
|--------------------------------------------------------------------------
*/
'register' => [
'translations' => true,
/**
* load files on boot or register method
*
* Note: boot not compatible with asgardcms
*
* @example boot|register
*/
'files' => 'register',
],
];

View File

@ -160,22 +160,28 @@ class Bundle extends AbstractType
*/ */
public function getMinimalPrice() public function getMinimalPrice()
{ {
$optionPrices = []; $minPrice = 0;
$haveRequiredOptions = $this->haveRequiredOptions();
$minPrices = [];
foreach ($this->product->bundle_options as $option) { foreach ($this->product->bundle_options as $option) {
if(! $option->is_required) $optionProductsPrices = $this->getOptionProductsPrices($option);
continue;
foreach ($option->bundle_option_products as $index => $bundleOptionProduct) { if (count($optionProductsPrices)) {
$optionPrices[$option->id][] = $bundleOptionProduct->qty * $bundleOptionProduct->product->getTypeInstance()->getMinimalPrice(); $selectionMinPrice = min($optionProductsPrices);
if($option->is_required) {
$minPrice += $selectionMinPrice;
} elseif (! $haveRequiredOptions) {
$minPrices[] = $selectionMinPrice;
}
} }
} }
$minPrice = 0; if (! $haveRequiredOptions)
$minPrice = min($minPrices);
foreach ($optionPrices as $key => $optionPrice) {
$minPrice += min($optionPrice);
}
return $minPrice; return $minPrice;
} }
@ -187,26 +193,68 @@ class Bundle extends AbstractType
*/ */
public function getRegularMinimalPrice() public function getRegularMinimalPrice()
{ {
$optionPrices = []; $minPrice = 0;
$haveRequiredOptions = $this->haveRequiredOptions();
$minPrices = [];
foreach ($this->product->bundle_options as $option) { foreach ($this->product->bundle_options as $option) {
if(! $option->is_required) $optionProductsPrices = $this->getOptionProductsPrices($option, false);
continue;
foreach ($option->bundle_option_products as $index => $bundleOptionProduct) { if (count($optionProductsPrices)) {
$optionPrices[$option->id][] = $bundleOptionProduct->qty * $bundleOptionProduct->product->price; $selectionMinPrice = min($optionProductsPrices);
if($option->is_required) {
$minPrice += $selectionMinPrice;
} elseif (! $haveRequiredOptions) {
$minPrices[] = $selectionMinPrice;
}
} }
} }
$minPrice = 0; if (! $haveRequiredOptions)
$minPrice = min($minPrices);
foreach ($optionPrices as $key => $optionPrice) {
$minPrice += min($optionPrice);
}
return $minPrice; return $minPrice;
} }
/**
* Get product regular minimal price
*
* @param ProductBundleOption $option
* @param boolean $minPrice
* @return float
*/
public function getOptionProductsPrices($option, $minPrice = true)
{
$optionPrices = [];
foreach ($option->bundle_option_products as $index => $bundleOptionProduct) {
$optionPrices[] = $bundleOptionProduct->qty
* ($minPrice
? $bundleOptionProduct->product->getTypeInstance()->getMinimalPrice()
: $bundleOptionProduct->product->price);
}
return $optionPrices;
}
/**
* Check if product has required options or not
*
* @return boolean
*/
protected function haveRequiredOptions()
{
foreach ($this->product->bundle_options as $option) {
if ($option->is_required)
return true;
}
return false;
}
/** /**
* Get product maximam price * Get product maximam price
* *
@ -320,7 +368,7 @@ class Bundle extends AbstractType
public function getPriceHtml() public function getPriceHtml()
{ {
$prices = $this->getProductPrices(); $prices = $this->getProductPrices();
$priceHtml = '<div class="price-from">'; $priceHtml = '<div class="price-from">';
if ($prices['from']['regular_price']['price'] != $prices['from']['final_price']['price']) { if ($prices['from']['regular_price']['price'] != $prices['from']['final_price']['price']) {