@extends('layout.main') @section('content')

Import Account Setting

@include('includes.errors') @include('includes.success')

@if(User::checkCategoryPermission('Account','Add')) @endif


Setting
{{Form::select('Owner',$account_owners,empty($ImportData->Owner)?'':$ImportData->Owner,array("class"=>"select2 small","id"=>"BulkOwnerChange"))}}
{{Form::select('CurrencyId',$Currencies,empty($ImportData->CurrencyId)?'':$ImportData->CurrencyId,array("class"=>"select2 small","id"=>"BulkCurrencyChange"))}}

IsCustomer) && $ImportData->IsCustomer == 1 )checked=""@endif value="1">

IsVendor) && $ImportData->IsVendor == 1 )checked=""@endif value="1">

CustomerPaymentAdd) && $ImportData->CustomerPaymentAdd == 1 )checked=""@endif value="1">

DisplayRates) && $ImportData->DisplayRates == 1 )checked=""@endif value="1">

{{Form::select('Country', $countries, empty($ImportData->Country)?'':$ImportData->Country ,array("class"=>"form-control select2"))}}
{{Form::select('TimeZone', $timezones, empty($ImportData->TimeZone)?'':$ImportData->TimeZone ,array("class"=>"form-control select2"))}}
Billing Setting

Billing) && $ImportData->Billing == 1 )checked=""@endif value="1">

{{Form::select('BillingClassID', $BillingClass, empty($ImportData->BillingClassID)?'':$ImportData->BillingClassID ,array("id"=>"billingclass_id","class"=>"select2 small form-control1"));}}
{{Form::select('BillingType', AccountApproval::$billing_type, empty($ImportData->BillingType)?'':$ImportData->BillingType ,array('id'=>'billing_type',"class"=>"select2 small"))}}
{{Form::select('BillingTimezone', $timezones, empty($ImportData->BillingTimezone)?'':$ImportData->BillingTimezone ,array("class"=>"form-control select2"))}}
{{Form::select('BillingCycleType', SortBillingType(1), empty($ImportData->BillingCycleType)?'':$ImportData->BillingCycleType ,array("class"=>'form-control select2'))}}
{{Form::select('SendInvoiceSetting', BillingClass::$SendInvoiceSetting, empty($ImportData->SendInvoiceSetting)?'':$ImportData->SendInvoiceSetting ,array("class"=>'form-control select2 '))}}
{{Form::select('LateFeeID', LateFee::getLateFeeList(),empty($ImportData->LateFeeID)?'':$ImportData->LateFeeID,array("class"=>"form-control select2"))}}
{{Form::select('AutoPaymentSetting', BillingClass::$AutoPaymentSetting, empty($ImportData->AutoPaymentSetting)?'never':$ImportData->AutoPaymentSetting,array("class"=>'form-control select2 small'))}}
{{Form::select('AutoPayMethod', BillingClass::$AutoPayMethod,empty($ImportData->AutoPayMethod)?'0':$ImportData->AutoPayMethod,array("class"=>"form-control select2 small"))}}
@if($pbxaccountblock_count>0)

SuspendAccount) && $ImportData->SuspendAccount == 1 )checked=""@endif value="1">

@endif
Service Setting
{{Form::select('ServiceID',$services,empty($ImportData->ServiceID)?'':$ImportData->ServiceID,array("class"=>"select2 small","id"=>"BulkServicesChange"))}}
@foreach($Currencies as $currency=>$value) @if($value!=='Select')
{{Form::select($InboundTariffID,$RateTableALL[$currency],empty($ImportDataInboundTariffID[$currency])?'':$ImportDataInboundTariffID[$currency] ,array("class"=>"select2 small "))}}
{{Form::select($OutboundTariffID,$RateTableALL[$currency],empty($ImportDataOutboundTariffID[$currency])?'':$ImportDataOutboundTariffID[$currency],array("class"=>"select2 small"))}}
{{Form::select($DiscountPlanID,$DiscountPlanAll[$currency],empty($ImportDataDiscountPlanID[$currency])?'':$ImportDataDiscountPlanID[$currency],array("class"=>"select2 small"))}}
{{Form::select($InboundDiscountPlanID,$DiscountPlanAll[$currency],empty($ImportDataInboundDiscountPlanID[$currency])?'':$ImportDataInboundDiscountPlanID[$currency],array("class"=>"select2 small"))}}
@endif @endforeach
Payment Setting
ShowAllPaymentMethod) && $ImportData->ShowAllPaymentMethod == 1 )checked=""@endif value="1">

Preferred Payment Method

  • PaymentMethod) && $ImportData->PaymentMethod == 'AuthorizeNet' )checked=""@endif value="AuthorizeNet"/>
  • PaymentMethod) && $ImportData->PaymentMethod == 'AuthorizeNetEcheck' )checked=""@endif value="AuthorizeNetEcheck"/>
  • PaymentMethod) && $ImportData->PaymentMethod == 'FideliPay' )checked=""@endif value="FideliPay"/>
  • PaymentMethod) && $ImportData->PaymentMethod == 'Paypal' )checked=""@endif value="Paypal" />
  • PaymentMethod) && $ImportData->PaymentMethod == 'PeleCard' )checked=""@endif value="PeleCard" />
  • PaymentMethod) && $ImportData->PaymentMethod == 'SagePay' )checked=""@endif value="SagePay" />
  • PaymentMethod) && $ImportData->PaymentMethod == 'SagePayDirectDebit' )checked=""@endif value="SagePayDirectDebit" />
  • PaymentMethod) && $ImportData->PaymentMethod == 'Stripe' )checked=""@endif value="Stripe" />
  • PaymentMethod) && $ImportData->PaymentMethod == 'StripeACH' )checked=""@endif value="StripeACH" />
  • PaymentMethod) && $ImportData->PaymentMethod == 'GoCardLess' )checked=""@endif value="GoCardLess" />
  • PaymentMethod) && $ImportData->PaymentMethod == 'FastPay' )checked=""@endif value="FastPay"/>
  • PaymentMethod) && $ImportData->PaymentMethod == 'MerchantWarrior' )checked=""@endif value="MerchantWarrior"/>
  • PaymentMethod) && $ImportData->PaymentMethod == 'Wire Transfer' )checked=""@endif value="Wire Transfer"/>
  • PaymentMethod) && $ImportData->PaymentMethod == 'MASAV' )checked=""@endif value="MASAV" />
  • PaymentMethod) && $ImportData->PaymentMethod == 'Forte' )checked=""@endif value="Forte"/>
  • PaymentMethod) && $ImportData->PaymentMethod == 'Cardknox' )checked=""@endif value="Cardknox" />
  • PaymentMethod) && $ImportData->PaymentMethod == 'Other' )checked=""@endif value="Other" />
@include('includes.ajax_submit_script', array('formID'=>'form-user-add' , 'url' => '/import/account/updatesetting')) @stop