adjust deliveries by customer
This commit is contained in:
@@ -4,7 +4,7 @@ namespace App\Http\Controllers\Shop;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Repositories\Shop\Articles;
|
||||
use App\Repositories\Shop\Homepages;
|
||||
use App\Repositories\Shop\Contents;
|
||||
use App\Repositories\Shop\TagGroups;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
@@ -15,7 +15,7 @@ class HomeController extends Controller
|
||||
$data = [
|
||||
'display_by_rows' => $request->input('by_rows') ?? false,
|
||||
'shelves' => Articles::getArticlesByHomepage(),
|
||||
'text' => Homepages::getHomepage(),
|
||||
'text' => Contents::getHomepage(),
|
||||
'tags' => TagGroups::getWithTagsAndCountOffers(),
|
||||
'no_filter' => true,
|
||||
];
|
||||
|
||||
@@ -44,7 +44,8 @@ class OrderController extends Controller
|
||||
$data = [
|
||||
'customer' => $customer ? $customer->toArray() : false,
|
||||
'basket' => Baskets::getBasketTotal(),
|
||||
'deliveries' => Deliveries::getAllWithSaleChannel()->toArray(),
|
||||
// 'deliveries' => Deliveries::getAllWithSaleChannel()->toArray(),
|
||||
'deliveries' => Deliveries::getByCustomer()->toArray(),
|
||||
'delivery_types' => DeliveryTypes::getWithPrice(Baskets::getWeight()),
|
||||
];
|
||||
|
||||
|
||||
26
app/Http/Requests/Admin/Shop/StoreCustomerPost.php
Normal file
26
app/Http/Requests/Admin/Shop/StoreCustomerPost.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests\Admin\Shop;
|
||||
|
||||
use Illuminate\Foundation\Http\FormRequest;
|
||||
|
||||
class StoreCustomerPost extends FormRequest
|
||||
{
|
||||
public function authorize()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
'first_name' => 'required',
|
||||
'last_name' => 'required',
|
||||
'email' => 'required',
|
||||
'address' => 'required',
|
||||
'zipcode' => 'required',
|
||||
'city' => 'required',
|
||||
'sale_channels[]' => 'required',
|
||||
];
|
||||
}
|
||||
}
|
||||
@@ -19,15 +19,15 @@ class Deliveries
|
||||
|
||||
public static function getByCustomer($customerId = false)
|
||||
{
|
||||
$customer = Customers::get($customerId);
|
||||
$saleChannels = $customer->sale_channels->pluck('id')->toArray();
|
||||
$customer = $customerId ? Customers::get($customerId) : Customers::getAuth();
|
||||
$saleChannels = $customer ? $customer->sale_channels->pluck('id')->toArray() : false;
|
||||
|
||||
return self::getBySaleChannels($saleChannels);
|
||||
return $saleChannels ? self::getBySaleChannels($saleChannels) : false;
|
||||
}
|
||||
|
||||
public static function getBySaleChannels($saleChannels)
|
||||
{
|
||||
return Delivery::bySaleChannels($saleChannels)->get();
|
||||
return Delivery::bySaleChannels($saleChannels)->with('sale_channel')->get();
|
||||
}
|
||||
|
||||
public static function getSaleChannelId($deliveryId)
|
||||
|
||||
@@ -1,55 +1,55 @@
|
||||
<div class="row mb-3">
|
||||
<div class="col-8">
|
||||
<div class="row mb-3">
|
||||
<div class="col-6">
|
||||
{{ Form::label('product_type', 'Famille de produit') }}
|
||||
@include('components.form.select', [
|
||||
'name' => 'product_type',
|
||||
'value' => $article_nature['product_type'] ?? null,
|
||||
'list' => $product_types ?? null,
|
||||
'required' => true,
|
||||
])
|
||||
</div>
|
||||
<div class="col-6">
|
||||
{{ Form::label('name', 'Nom') }}
|
||||
@include('components.form.input', [
|
||||
'name' => 'name',
|
||||
'value' => $article_nature['name'] ?? null,
|
||||
'required' => true,
|
||||
])
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mb-3">
|
||||
<div class="col-12">
|
||||
{{ Form::label('description', 'Description') }}
|
||||
@include('components.form.textarea', [
|
||||
'name' => 'description',
|
||||
'value' => $article_nature['description'] ?? null,
|
||||
'class' => 'editor',
|
||||
'required' => false,
|
||||
])
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-8">
|
||||
<div class="row mb-3">
|
||||
<div class="col-6">
|
||||
{{ Form::label('product_type', 'Famille de produit') }}
|
||||
@include('components.form.select', [
|
||||
'name' => 'product_type',
|
||||
'value' => $article_nature['product_type'] ?? null,
|
||||
'list' => $product_types ?? null,
|
||||
'required' => true,
|
||||
])
|
||||
</div>
|
||||
<div class="col-6">
|
||||
{{ Form::label('name', 'Nom') }}
|
||||
@include('components.form.input', [
|
||||
'name' => 'name',
|
||||
'value' => $article_nature['name'] ?? null,
|
||||
'required' => true,
|
||||
])
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mb-3">
|
||||
<div class="col-12">
|
||||
{{ Form::label('description', 'Description') }}
|
||||
@include('components.form.textarea', [
|
||||
'name' => 'description',
|
||||
'value' => $article_nature['description'] ?? null,
|
||||
'class' => 'editor',
|
||||
'required' => false,
|
||||
])
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-2">
|
||||
<x-card title="{{ __('icone') }}">
|
||||
@include('components.widgets.imgUpload', [
|
||||
'name' => 'icon',
|
||||
'id_name' => 'icon',
|
||||
'file' => $article_nature['icon'] ?? false,
|
||||
])
|
||||
</x-card>
|
||||
</div>
|
||||
<div class="col-2">
|
||||
<x-card title="{{ __('icone selection') }}">
|
||||
@include('components.widgets.imgUpload', [
|
||||
'name' => 'icon_selection',
|
||||
'id_name' => 'icon_selection',
|
||||
'file' => $article_nature['icon_selection'] ?? false,
|
||||
])
|
||||
</x-card>
|
||||
</div>
|
||||
<div class="col-2">
|
||||
<x-card title="{{ __('icone') }}">
|
||||
@include('components.widgets.imgUpload', [
|
||||
'name' => 'icon',
|
||||
'id_name' => 'icon',
|
||||
'file' => $article_nature['icon'] ?? false,
|
||||
])
|
||||
</x-card>
|
||||
</div>
|
||||
<div class="col-2">
|
||||
<x-card title="{{ __('icone selection') }}">
|
||||
@include('components.widgets.imgUpload', [
|
||||
'name' => 'icon_selection',
|
||||
'id_name' => 'icon_selection',
|
||||
'file' => $article_nature['icon_selection'] ?? false,
|
||||
])
|
||||
</x-card>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<x-save />
|
||||
@@ -59,11 +59,13 @@
|
||||
@include('load.form.save')
|
||||
|
||||
@push('js')
|
||||
<script>
|
||||
$(function() {
|
||||
initEditor();
|
||||
initUploadImage();
|
||||
initSaveForm('#article_nature-form');
|
||||
});
|
||||
</script>
|
||||
@endpush
|
||||
{!! JsValidator::formRequest('App\Http\Requests\Admin\Shop\StoreArticleNaturePost', '#article_nature-form') !!}
|
||||
|
||||
<script>
|
||||
$(function() {
|
||||
initEditor();
|
||||
initUploadImage();
|
||||
initSaveForm('#article_nature-form');
|
||||
});
|
||||
</script>
|
||||
@endpush
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('shop.customers.title'),
|
||||
'subtitle' => __('shop.customers.add'),
|
||||
'breadcrumb' => [__('shop.customers.title')]
|
||||
'title' => __('shop.customers.title'),
|
||||
'subtitle' => __('shop.customers.add'),
|
||||
'breadcrumb' => [__('shop.customers.title')],
|
||||
])
|
||||
|
||||
@section('content')
|
||||
{{ Form::open(['route' => 'Admin.Shop.Customers.store', 'id' => 'customer-form', 'autocomplete' => 'off']) }}
|
||||
@include('Admin.Shop.Customers.form')
|
||||
</form>
|
||||
@include('Admin.Shop.Customers.form')
|
||||
@endsection
|
||||
|
||||
@@ -1,14 +1,9 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('shop.customers.title'),
|
||||
'subtitle' => __('shop.customers.edit'),
|
||||
'breadcrumb' => [__('shop.customers.title')]
|
||||
'title' => __('shop.customers.title'),
|
||||
'subtitle' => __('shop.customers.edit'),
|
||||
'breadcrumb' => [__('shop.customers.title')],
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
{{ Form::open(['route' => 'Admin.Shop.Customers.store', 'id' => 'customer-form', 'autocomplete' => 'off']) }}
|
||||
<input type="hidden" name="id" value="{{ $customer['id'] }}">
|
||||
@include('Admin.Shop.Customers.form')
|
||||
</form>
|
||||
|
||||
@include('Admin.Shop.Customers.form')
|
||||
@endsection
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
f{{ Form::open(['route' => 'Admin.Shop.Customers.store', 'id' => 'customer-form', 'autocomplete' => 'off']) }}
|
||||
<input type="hidden" name="id" value="{{ $customer['id'] ?? false }}">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
<x-card>
|
||||
@@ -116,6 +119,7 @@
|
||||
</x-layout.box-collapse>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<x-save />
|
||||
|
||||
@@ -123,6 +127,8 @@
|
||||
@include('load.form.select2')
|
||||
|
||||
@push('js')
|
||||
{!! JsValidator::formRequest('App\Http\Requests\Admin\Shop\StoreCustomerPost', '#customer-form') !!}
|
||||
|
||||
<script>
|
||||
$(function() {
|
||||
initSelect2();
|
||||
|
||||
Reference in New Issue
Block a user