Add: Product 1
  • 1
$20.00 Available quantity: 20
Size
  • S
  • M
  • X
  • L
  • XL
  • XXL
Color
  • Red
  • Green
  • Blue
  • White
  • Yellow
  • Orange
  • Violet
  • Purple
  • Brown
  • Black
  • Gold
  • Silver
Add Discount
% $
5% 10% 20% 30% 50% Clear
$151.80
Cash External Terminal
  • $152.00
  • $155.00
  • $200.00

$151.80

Tender
  • Master Card
  • Visa
  • Nets
$24.00 charged of $200.00

Do you want to send the receipts?

There is no internet connection.

Email will be sent later.

OK

Are you sure you want to cancel payment proccess?

Yes No
$24.00 charged of $200.00
  • {{ Form::text('item-number', '', array('class' => 'form-control', 'id' => 'item-number')) }}
{{ Form::open(array('url' => 'sale','class'=>'edit-sidebar-item-form')) }}
{{ Form::label('item-price', Trans('products.price')) }}
{{ Form::text('item-price', '', array('class' => 'form-control', 'id' => 'item-price')) }}
{{ Form::label('item-discount', Trans('products.discount')) }}
{{ Form::text('item-discount', '', array('class' => 'form-control', 'id' => 'item-discount')) }}
{{ HTML::link('#', Trans('sale.save'), array('class' => 'btn btn-success btn-block save-item')) }}
{{ HTML::link('#', Trans('sale.delete'), array('class' => 'btn btn-danger btn-block remove-item')) }}
{{ Form::close() }}
{{ Form::open(array('url' => 'checkout', 'autocomplete' => "off")) }}
{{ Form::label('input-dollar', Trans('sale.'.Helper::getConfig('invoice_currency'))) }}
{{ Form::number('input-dollar', '0', array('placeholder' => '0', 'id' => 'input-dollar', 'class'=> 'form-control','step' => "any",'min' => '0')) }}
{{ Form::label('input-riel', Trans('sale.'.Helper::getConfig('second_invoice_currency'))) }}
{{ Form::number('input-riel', '0', array('id' => 'input-riel', 'placeholder' => '0', 'class'=> 'form-control')) }}

{{ Trans('sale.change_money')}}

{{Form::checkbox('print-invoice',null, true, ['class' => 'switch', 'id' => 'print-invoice'])}}

{{ Form::submit(Trans('sale.checkout'), array('class' => 'btn btn-success btn-lg btn-block', 'id' => 'btn-submit', 'name' => 'checkout')) }}
{{ Form::submit(Trans('sale.save'), array('class' => 'btn btn-success btn-lg btn-block save-invoice', 'id' => 'btn-submit', 'name' => 'save')) }}
{{ Trans('sale.discard')}}
{{ Form::close() }}

{{ trans('customers.add_new') }}

{{ Form::open([ 'method' => 'post', 'action' => 'sale.new_customer', 'id' => 'form-add-customer']) }}
{{ Form::label('first_name', trans('customers.first_name')) }} {{ Form::text('first_name', null, ['class' => 'form-control', 'placeholder' => trans('customers.first_name'), 'id' => "first_name"]) }} {{ $errors->first('first_name') }}
{{ Form::label('last_name', trans('customers.last_name')) }} {{ Form::text('last_name', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => trans('customers.last_name')]) }} {{ $errors->first('last_name') }}
{{ Form::label('tel', trans('customers.tel')) }} {{ Form::text('tel', null, ['class' => 'form-control', 'placeholder' => trans('customers.tel')]) }} {{ $errors->first('tel') }}
{{ Form::label('address', trans('customers.address')) }} {{ Form::textarea('address', null, ['class' => 'form-control', 'rows' => '3', 'placeholder' => trans('customers.address')]) }} {{ $errors->first('address') }}
{{ Form::close() }}

{{ trans('Order New Product') }}

{{ Form::open(array('method'=>'POST', 'class'=>'submit_sku_f4', 'autocomplete'=> 'off')) }}
{{ Form::label('sku', trans('products.sku')) }} {{ Form::text('barcode', '', array('placeholder'=>Trans('products.sku'),'class'=>'form-control product_sku', 'data-url' => route("sale.newOrderProduct") )) }}
{{ Form::close() }}
{{ Form::open(['route' => "checkPriceIn", 'id' => 'form-add-new-order']) }}
{{ Form::hidden('product_id', null, ['class' => "p_id"]) }} {{ Form::hidden("sku", null, ['class' => 'p_sku']) }}
{{ Form::label('price', trans('products.price')) }} {{ Form::number('price', null, [ 'class' => 'form-control p_price', 'placeholder' => trans('products.price'), 'step' => "any", 'required' => "required" ]) }}
{{ Form::label('amount', trans('products.amount')) }} {{ Form::number('amount', null, [ 'class' => 'form-control p_amount', 'placeholder' => trans('products.amount'), 'required' => "required" ]) }}
{{ Form::close() }}