ultimatepos/Modules/Manufacturing/Resources/views/recipe/add_ingredients.blade.php

214 lines
8.4 KiB
PHP

@extends('layouts.app')
@section('title', __('manufacturing::lang.add_ingredients'))
@section('content')
@include('manufacturing::layouts.nav')
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>@lang('manufacturing::lang.add_ingredients')</h1>
</section>
<!-- Main content -->
<section class="content">
{!! Form::open(['url' => action([\Modules\Manufacturing\Http\Controllers\RecipeController::class, 'store']), 'method' => 'post', 'id' => 'recipe_form' ]) !!}
<div id="box_group">
<div class="box box-solid">
<div class="box-header">
<h4 class="box-title"><strong>@lang('sale.product'): </strong>{{$variation->product_name}} @if($variation->product_type == 'variable') - {{$variation->product_variation_name}} - {{$variation->name}} @endif</h4>
</div>
<div class="box-body">
<div class="row">
<div class="col-md-12">
<button type="button" class="btn btn-success pull-right" id="add_ingredient_group">@lang('manufacturing::lang.add_ingredient_group') @show_tooltip(__('manufacturing::lang.ingredient_group_tooltip'))</button>
</div>
<div class="col-md-10 col-md-offset-1">
<div class="form-group">
{!! Form::label('search_product', __('manufacturing::lang.select_ingredient').':') !!}
{!! Form::text('search_product', null, ['class' => 'form-control', 'id' => 'search_product', 'placeholder' => __('manufacturing::lang.select_ingredient'), 'autofocus' => true ]); !!}
{!! Form::hidden('variation_id', $variation->id); !!}
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<table class="table table-striped table-th-green text-center ingredients_table">
<thead>
<tr>
<th>@lang('manufacturing::lang.ingredient')</th>
<th>@lang('manufacturing::lang.waste_percent')</th>
<th>@lang('manufacturing::lang.final_quantity')</th>
<th>@lang('lang_v1.price')</th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody class="ingredient-row-sortable">
@php
$row_index = 0;
$ingredient_groups = [];
$ingredient_total = 0;
@endphp
@if(!empty($ingredients))
@foreach($ingredients as $ingredient)
@php
$ingredient_obj = (object) $ingredient;
$price = !empty($ingredient_obj->quantity) ? $ingredient_obj->quantity * $ingredient_obj->dpp_inc_tax : $ingredient_obj->dpp_inc_tax;
$price = $price * $ingredient_obj->multiplier;
$ingredient_total += $price;
@endphp
@if(empty($ingredient['mfg_ingredient_group_id']))
@php
$row_index = $loop->index;
@endphp
@include('manufacturing::recipe.ingredient_row', ['ingredient' => (object) $ingredient, 'ig_index' => ''])
@php
$row_index++;
@endphp
@else
@php
$ingredient_groups[$ingredient['mfg_ingredient_group_id']][] = $ingredient;
@endphp
@endif
@endforeach
@endif
</tbody>
</table>
</div>
</div>
</div>
</div> <!--box end-->
@php
$ig_index = 0;
@endphp
@foreach($ingredient_groups as $ingredient_group)
@php
$ig_name = !empty($ingredient_group[0]['ingredient_group_name']) ? $ingredient_group[0]['ingredient_group_name'] : '';
$ig_description = !empty($ingredient_group[0]['ig_description']) ? $ingredient_group[0]['ig_description'] : '';
@endphp
@include('manufacturing::recipe.ingredient_group', ['ingredients' => $ingredient_group, 'ig_index' => $ig_index, 'ig_name' => $ig_name, 'ig_description' => $ig_description])
@php
$ig_index++;
$row_index += count($ingredient_group);
@endphp
@endforeach
</div>
<div class="box box-solid">
<div class="box-body">
<div class="row">
<input type="hidden" id="row_index" value="{{$row_index}}">
<input type="hidden" id="ig_index" value="{{$ig_index}}">
<div class="col-md-12 text-right">
<strong>@lang('manufacturing::lang.ingredients_cost'): </strong> <span
id="ingredients_cost_text"
>{{@num_format($ingredient_total)}}</span>
<input type="hidden" name="ingredients_cost" id="ingredients_cost" value="{{$recipe->ingredients_cost ?? 0}}">
</div>
<div class="col-md-3">
<div class="form-group">
{!! Form::label('waste_percent', __('manufacturing::lang.wastage').':') !!} @show_tooltip(__('manufacturing::lang.wastage_tooltip'))
<div class="input-group">
{!! Form::text('waste_percent',!empty($recipe->waste_percent) ? @num_format($recipe->waste_percent) : 0, ['class' => 'form-control input_number', 'placeholder' => __('manufacturing::lang.wastage') ]); !!}
<span class="input-group-addon">
<i class="fa fa-percent"></i>
</span>
</div>
</div>
</div>
<div class="col-md-3">
<div class="form-group">
{!! Form::label('total_quantity', __('manufacturing::lang.total_output_quantity').':') !!}
<div class="@if(!is_array($unit_html)) input-group @else input_inline @endif">
{!! Form::text('total_quantity',!empty($recipe->total_quantity) ? @format_quantity($recipe->total_quantity) : 1, ['class' => 'form-control input_number', 'placeholder' => __('manufacturing::lang.total_output_quantity') ]); !!}
<span class="@if(!is_array($unit_html)) input-group-addon @endif">
@if(is_array($unit_html))
<select name="sub_unit_id" class="form-control" id="sub_unit_id">
@foreach($unit_html as $key => $value)
<option
value="{{$key}}"
data-multiplier="{{$value['multiplier']}}"
@if(!empty($recipe->sub_unit_id) && $recipe->sub_unit_id == $key)
selected
@endif
>{{$value['name']}}</option>
@endforeach
</select>
@else
{{ $unit_html }}
@endif
</span>
</div>
</div>
</div>
<div class="col-md-3">
<div class="form-group">
{!! Form::label('extra_cost', __('manufacturing::lang.production_cost').':') !!} @show_tooltip(__('manufacturing::lang.production_cost_tooltip'))
<div class="input_inline">
{!! Form::text('extra_cost',!empty($recipe->extra_cost) ? @num_format($recipe->extra_cost) : 0, ['class' => 'form-control input_number', 'placeholder' => __('manufacturing::lang.extra_cost') ]); !!}
<span>
{!! Form::select('production_cost_type',['fixed' => __('lang_v1.fixed'), 'percentage' => __('lang_v1.percentage'), 'per_unit' => __('manufacturing::lang.per_unit')], !empty($recipe->production_cost_type) ? $recipe->production_cost_type : 'fixed', ['class' => 'form-control', 'id' => 'production_cost_type']); !!}
</span>
</div>
<p><strong>
{{__('manufacturing::lang.total_production_cost')}}:
</strong>
<span id="total_production_cost" class="display_currency" data-currency_symbol="true">{{$total_production_cost}}</span></p>
</div>
</div>
<div class="col-md-3">
<div class="form-group">
{!! Form::label('total', __('sale.total').':') !!}
<div class="input-group">
@php
$final_price = $ingredient_total;
if(!empty($recipe->final_price)) {
$final_price = $recipe->final_price;
}
@endphp
{!! Form::text('total', @num_format($final_price), ['id' => 'total', 'class' => "form-control", 'readonly']); !!}
<span class="input-group-addon">
{{$currency_details->symbol}}
</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="form-group">
{!! Form::label('instructions', __('manufacturing::lang.recipe_instructions').':') !!}
{!! Form::textarea('instructions',!empty($recipe) ? $recipe->instructions : null, ['class' => 'form-control', 'placeholder' => __('manufacturing::lang.recipe_instructions') ]); !!}
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-sm-12">
<button type="submit" class="btn btn-primary pull-right">@lang('messages.save')</button>
</div>
</div>
</div>
</div>
{!! Form::close() !!}
</section>
@stop
@section('javascript')
@include('manufacturing::layouts.date_helpers')
@include('manufacturing::layouts.partials.common_script')
<script type="text/javascript">
$('.ingredient-row-sortable').sortable({
cursor: "move",
handle: ".handle",
update: function(event, ui) {
$(this).children().each(function(index) {
$(this).find('input.sort_order').val(++index)
});
}
});
</script>
@endsection