@extends('layouts.app') @section('title', "Receive ") @section('content') @php $custom_labels = json_decode(session('business.custom_labels'), true); @endphp

Receive Purchases

@php $custom_labels = json_decode(session('business.custom_labels'), true); @endphp {{--

@lang('purchase.edit_purchase')

--}}
@include('layouts.partials.error') {!! Form::open(['url' => action([\App\Http\Controllers\PurchaseController::class, 'update'] , [$purchase->id] ), 'method' => 'PUT', 'id' => 'add_purchase_form', 'files' => true ]) !!} @php $currency_precision = session('business.currency_precision', 2); @endphp @component('components.widget', ['class' => 'box-primary'])
{!! Form::label('supplier_id', __('purchase.supplier') . ':*') !!} {!! $purchase->contact->supplier_business_name!!}
@lang('business.address'):
{!! $purchase->contact->contact_address !!}
{!! Form::label('location_id', __('purchase.business_location').':*') !!} {!! Form::select('location_id', $business_locations, $purchase->location_id, ['class' => 'form-control select2', 'placeholder' => __('messages.please_select'), 'disabled']); !!}
{!! Form::label('transaction_date','Date') !!}
{!! Form::text('transaction_date', @format_datetime($purchase->transaction_date), ['class' => 'form-control', 'readonly', 'required']); !!}
{!! Form::label('ref_no', __('purchase.ref_no') . '*') !!} {{-- @show_tooltip(__('lang_v1.leave_empty_to_autogenerate')) --}} {!! Form::text('ref_no', $purchase->ref_no, ['class' => 'form-control', 'required']); !!}
{!! Form::label('status', 'Exchange Rate :') !!} {!! Form::number('rate', $purchase->exchange_rate, ['class' => 'form-control', 'required', 'disabled']); !!}
{!! Form::label('status', 'VAT :*') !!} {!! Form::select('vat', [$tax_type => $tax_type,],$tax_type, ['class' => 'form-control select2', 'placeholder' => __('messages.please_select') , 'required']); !!}

{!! Form::label('additional_notes',__('purchase.additional_notes')) !!} {!! Form::textarea('additional_notes', $purchase->additional_notes, ['class' => 'form-control', 'rows' => 3]); !!}
@php $custom_field_1_label = !empty($custom_labels['purchase']['custom_field_1']) ? $custom_labels['purchase']['custom_field_1'] : ''; $is_custom_field_1_required = !empty($custom_labels['purchase']['is_custom_field_1_required']) && $custom_labels['purchase']['is_custom_field_1_required'] == 1 ? true : false; $custom_field_2_label = !empty($custom_labels['purchase']['custom_field_2']) ? $custom_labels['purchase']['custom_field_2'] : ''; $is_custom_field_2_required = !empty($custom_labels['purchase']['is_custom_field_2_required']) && $custom_labels['purchase']['is_custom_field_2_required'] == 1 ? true : false; $custom_field_3_label = !empty($custom_labels['purchase']['custom_field_3']) ? $custom_labels['purchase']['custom_field_3'] : ''; $is_custom_field_3_required = !empty($custom_labels['purchase']['is_custom_field_3_required']) && $custom_labels['purchase']['is_custom_field_3_required'] == 1 ? true : false; $custom_field_4_label = !empty($custom_labels['purchase']['custom_field_4']) ? $custom_labels['purchase']['custom_field_4'] : ''; $is_custom_field_4_required = !empty($custom_labels['purchase']['is_custom_field_4_required']) && $custom_labels['purchase']['is_custom_field_4_required'] == 1 ? true : false; @endphp @if(!empty($custom_field_1_label)) @php $label_1 = $custom_field_1_label . ':'; if($is_custom_field_1_required) { $label_1 .= '*'; } @endphp
{!! Form::label('custom_field_1', $label_1 ) !!} {!! Form::text('custom_field_1', $purchase->custom_field_1, ['class' => 'form-control','placeholder' => $custom_field_1_label, 'required' => $is_custom_field_1_required]); !!}
@endif @if(!empty($custom_field_2_label)) @php $label_2 = $custom_field_2_label . ':'; if($is_custom_field_2_required) { $label_2 .= '*'; } @endphp
{!! Form::label('custom_field_2', $label_2 ) !!} {!! Form::text('custom_field_2', $purchase->custom_field_2, ['class' => 'form-control','placeholder' => $custom_field_2_label, 'required' => $is_custom_field_2_required]); !!}
@endif @if(!empty($custom_field_3_label)) @php $label_3 = $custom_field_3_label . ':'; if($is_custom_field_3_required) { $label_3 .= '*'; } @endphp
{!! Form::label('custom_field_3', $label_3 ) !!} {!! Form::text('custom_field_3', $purchase->custom_field_3, ['class' => 'form-control','placeholder' => $custom_field_3_label, 'required' => $is_custom_field_3_required]); !!}
@endif @if(!empty($custom_field_4_label)) @php $label_4 = $custom_field_4_label . ':'; if($is_custom_field_4_required) { $label_4 .= '*'; } @endphp
{!! Form::label('custom_field_4', $label_4 ) !!} {!! Form::text('custom_field_4', $purchase->custom_field_4, ['class' => 'form-control','placeholder' => $custom_field_4_label, 'required' => $is_custom_field_4_required]); !!}
@endif
@if(!empty($common_settings['enable_purchase_order']))
{!! Form::label('purchase_order_ids', __('lang_v1.purchase_order').':') !!} {!! Form::select('purchase_order_ids[]', $purchase_orders, $purchase->purchase_order_ids, ['class' => 'form-control select2', 'multiple', 'id' => 'purchase_order_ids']); !!}
@endif @endcomponent @component('components.widget', ['class' => 'box-primary'])
{{-- --}}
{{-- --}} {{-- --}} {{-- --}} {{-- {!! Form::text('search_product', null, ['class' => 'form-control mousetrap', 'id' => 'search_product', 'placeholder' => __('lang_v1.search_product_placeholder'), 'autofocus']); !!} --}}
{{-- --}}
@include('purchase.partials.purchase_row_receive')
@lang( 'lang_v1.total_items' ):
@lang( 'purchase.total_before_tax' ):
@lang( 'purchase.net_total_amount' ): {{$purchase->total_before_tax/$purchase->exchange_rate}}


@endcomponent {{-- @component('components.widget', ['class' => 'box-primary']) --}}
{{-- @endcomponent --}} @component('components.widget', ['class' => 'box-primary'])
{!! Form::hidden('final_total', $purchase->final_total , ['id' => 'grand_total_hidden']); !!} @lang('purchase.purchase_total'): {{$purchase->final_total}}
@endcomponent {!! Form::close() !!}
@include('purchase.partials.import_purchase_products_modal') @endsection @section('javascript') @include('purchase.partials.keyboard_shortcuts') @endsection