Price Calculation

Price Calculation Amount in INR
Payout (+)
0.00
{{ Form::text('bo_info['.$index.'][payout]','0.0',['class' => 'form-control hide_temp payout_'.$index, 'readonly' => 'readonly']) }}
Charges Not Collected From Customer (+)
0.00
{{ Form::text('bo_info['.$index.'][not_collected]','0.0',['class' => 'form-control hide_temp total_not_collected_'.$index, 'readonly' => 'readonly']) }}
Charges Collected From Customer (-)
0.00
{{ Form::text('bo_info['.$index.'][collected]','0.0',['class' => 'form-control hide_temp total_collected_'.$index, 'readonly' => 'readonly']) }}
Tax Calculation Method
{{$asp->tax_calculation_method == 0 ? 'Calculate Tax without Not Collected Amount' : 'Calculate Tax with Not Collected Amount'}}
Deduction (-) @if(!empty($approved_view)) {{ Form::text('bo_info['.$index.'][deduction]',$mis_info->deduction,['class' => 'form-control valid_number hide_temp deduction_'.$index, 'readonly' => 'readonly']) }} @else {{ Form::text('bo_info['.$index.'][deduction]','0.0',['class' => 'form-control valid_number not_required_amount calculate-totals deduction_'.$index, 'autocomplete' => 'off']) }} @endif
@if(!empty($approved_view)) {{ Form::textarea('bo_info['.$index.'][cancelled_reason]',$mis_info->cancelled_reason,['class' => 'form-control', "placeholder" => "Enter Reason For Deduction", 'readonly' => 'readonly']) }} @else {{ Form::textarea('bo_info['.$index.'][cancelled_reason]','',['class' => 'form-control', "placeholder" => "Enter Reason For Deduction", 'autocomplete' => 'off']) }} @endif
@if(!empty($approved_view)) {{ Form::textarea('bo_info['.$index.'][comments]',$mis_info->comments,['class' => 'form-control', "placeholder" => "Enter comments", 'readonly' => 'readonly']) }} @else {{ Form::textarea('bo_info['.$index.'][comments]','',['class' => 'form-control', "placeholder" => "Enter comments", 'autocomplete' => 'off']) }} @endif
{{ Form::hidden('bo_info['.$index.'][amount]','0.00',['class' => 'form-control hide_temp service_amount_'.$index, 'readonly' => 'readonly']) }}