|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/poskrypt/admin.poskrypt.com/resources/views/sell_return/ |
Upload File : |
@extends('layouts.app')
@section('title', __('lang_v1.sell_return'))
@section('content')
<!-- Content Header (Page header) -->
<section class="content-header no-print">
<h1>@lang('lang_v1.sell_return')</h1>
<!-- <ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> Level</a></li>
<li class="active">Here</li>
</ol> -->
</section>
<!-- Main content -->
<section class="content no-print">
@include('layouts.partials.error')
@if(count($business_locations) == 1)
@php
$default_location = current(array_keys($business_locations->toArray()))
@endphp
@else
@php $default_location = null; @endphp
@endif
<div class="row">
<div class="col-sm-3">
<div class="form-group">
{!! Form::label('location_id', __('purchase.business_location').':*') !!}
{!! Form::select('location_id', $business_locations, $default_location, ['class' => 'form-control', 'placeholder' => __('messages.please_select'), 'required',
'id' => 'select_location_id']); !!}
</div>
</div>
</div>
<input type="hidden" id="product_row_count" value="0">
{!! Form::open(['url' => action([\App\Http\Controllers\SellReturnController::class, 'store']), 'method' => 'post', 'id' => 'sell_return_form' ]) !!}
<div class="box box-solid">
<div class="box-body">
<div class="row">
{!! Form::hidden('location_id', $default_location, ['id' => 'location_id']); !!}
<div class="col-sm-3">
<div class="form-group">
{!! Form::label('contact_id', __('contact.customer') . ':*') !!}
<div class="input-group">
<span class="input-group-addon">
<i class="fa fa-user"></i>
</span>
{!! Form::select('contact_id', [], null, ['class' => 'form-control', 'id' => 'customer_id', 'placeholder' => 'Enter Customer name / phone', 'required']); !!}
</div>
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
{!! Form::label('invoice_no', __('purchase.ref_no').':') !!}
{!! Form::text('invoice_no', null, ['class' => 'form-control']); !!}
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
{!! Form::label('transaction_date', __('purchase.purchase_date') . ':*') !!}
<div class="input-group">
<span class="input-group-addon">
<i class="fa fa-calendar"></i>
</span>
{!! Form::text('transaction_date', @format_date('now'), ['class' => 'form-control', 'readonly', 'required']); !!}
</div>
</div>
</div>
</div>
</div>
</div> <!--box end-->
<div class="box box-solid"><!--box start-->
<div class="box-body">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<div class="form-group">
<div class="input-group">
<span class="input-group-addon">
<i class="fa fa-search"></i>
</span>
{!! Form::text('search_product', null, ['class' => 'form-control', 'id' => 'search_product',
'placeholder' => __('lang_v1.search_product_placeholder'),
'disabled' => is_null($default_location)? true : false,
'autofocus' => is_null($default_location)? false : true,
]); !!}
</div>
</div>
</div>
</div>
@php
$hide_tax = '';
if( session()->get('business.enable_inline_tax') == 0){
$hide_tax = 'hide';
}
@endphp
<div class="row">
<div class="col-sm-12">
<div class="table-responsive">
<table class="table table-condensed table-bordered table-th-green text-center table-striped" id="purchase_entry_table">
<thead>
<tr>
<th class="text-center">
@lang('sale.product')
</th>
<th class="text-center">
@lang('sale.qty')
</th>
<th class="text-center">
@lang('sale.unit_price')
</th>
<th class="text-center {{$hide_tax}}">
@lang('sale.tax')
</th>
<th class="text-center {{$hide_tax}}">
@lang('sale.price_inc_tax')
</th>
<th class="text-center">
@lang('sale.subtotal')
</th>
@if(session('business.enable_lot_number'))
<th class="text-center">
@lang('lang_v1.lot_number')
</th>
@endif
@if(session('business.enable_product_expiry'))
<th class="text-center">
@lang('product.exp_date')
</th>
@endif
<th class="text-center"><i class="fa fa-trash" aria-hidden="true"></i></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<hr/>
<div class="pull-right col-md-5">
<table class="pull-right col-md-12">
<tr class="hide">
<th class="col-md-7 text-right">@lang( 'purchase.total_before_tax' ):</th>
<td class="col-md-5 text-left">
<span id="total_st_before_tax" class="display_currency"></span>
<input type="hidden" id="st_before_tax_input" value=0>
</td>
</tr>
<tr>
<th class="col-md-7 text-right">@lang( 'purchase.net_total_amount' ):</th>
<td class="col-md-5 text-left">
<span id="price_total" class="display_currency"></span>
<!-- This is total before purchase tax-->
<input type="hidden" id="total_subtotal_input" value=0 name="total_before_tax">
</td>
</tr>
</table>
</div>
<input type="hidden" id="row_count" value="0">
</div>
</div>
</div>
</div><!--box end-->
<div class="box box-solid"><!--box start-->
<div class="box-body">
<div class="row">
<div class="col-sm-12">
<table class="table">
<tr>
<td class="col-md-3">
<div class="form-group">
{!! Form::label('discount_type', __( 'purchase.discount_type' ) . ':') !!}
{!! Form::select('discount_type', [ '' => __('lang_v1.none'), 'fixed' => __( 'lang_v1.fixed' ), 'percentage' => __( 'lang_v1.percentage' )], '', ['class' => 'form-control']); !!}
</div>
</td>
<td class="col-md-3">
<div class="form-group">
{!! Form::label('discount_amount', __( 'purchase.discount_amount' ) . ':') !!}
{!! Form::text('discount_amount', 0, ['class' => 'form-control input_number', 'required']); !!}
</div>
</td>
<td class="col-md-3">
</td>
<td class="col-md-3">
<b>@lang( 'purchase.discount' ):</b>(-)
<span id="total_discount" class="display_currency">0</span>
</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td>
{!! Form::hidden('final_total', 0 , ['id' => 'final_total_input']); !!}
<b>@lang('lang_v1.total_credit_amt'): </b><span id="total_payable" class="display_currency" data-currency_symbol='true'>0</span>
</td>
</tr>
<tr>
<td colspan="4">
<div class="form-group">
{!! Form::label('additional_notes',__('purchase.additional_notes')) !!}
{!! Form::textarea('additional_notes', null, ['class' => 'form-control', 'rows' => 3]); !!}
</div>
</td>
</tr>
</table>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<button type="button" id="submit_sell_return_form" class="btn btn-primary pull-right btn-flat">@lang('messages.save')</button>
</div>
</div>
</div><!--box end-->
{!! Form::close() !!}
</section>
<!-- /.content -->
@endsection
@section('javascript')
<script src="{{ asset('js/sell_return.js?v=' . $asset_v) }}"></script>
@endsection