1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/resources/views/accounts/payments.blade.php

75 lines
2.9 KiB
PHP
Raw Normal View History

2015-10-14 16:15:39 +02:00
@extends('header')
2015-03-16 22:45:25 +01:00
2016-06-09 09:56:22 +02:00
@section('content')
@parent
2015-10-14 16:15:39 +02:00
@include('accounts.nav', ['selected' => ACCOUNT_PAYMENTS])
2015-03-16 22:45:25 +01:00
2016-05-25 16:36:40 +02:00
{!! Former::open()->addClass('warn-on-exit') !!}
{!! Former::populateField('token_billing_type_id', $account->token_billing_type_id) !!}
{!! Former::populateField('auto_bill_on_due_date', $account->auto_bill_on_due_date) !!}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{!! trans('texts.payment_settings') !!}</h3>
</div>
<div class="panel-body">
{!! Former::select('token_billing_type_id')
->options($tokenBillingOptions)
->help(trans('texts.token_billing_help')) !!}
2016-05-25 21:55:23 +02:00
{!! Former::inline_radios('auto_bill_on_due_date')
2016-05-25 16:36:40 +02:00
->label(trans('texts.auto_bill'))
2016-05-25 21:55:23 +02:00
->radios([
trans('texts.on_send_date') => ['value'=>0, 'name'=>'auto_bill_on_due_date'],
trans('texts.on_due_date') => ['value'=>1, 'name'=>'auto_bill_on_due_date'],
])->help(trans('texts.auto_bill_ach_date_help')) !!}
<div class="form-group">
<div class="col-sm-offset-4 col-sm-8"><p>{!! trans('texts.payment_settings_supported_gateways') !!}</p></div>
</div>
2016-05-25 16:36:40 +02:00
{!! Former::actions( Button::success(trans('texts.save'))->submit()->appendIcon(Icon::create('floppy-disk')) ) !!}
</div>
</div>
{!! Former::close() !!}
2016-07-21 14:35:23 +02:00
<!--
<label for="trashed" style="font-weight:normal; margin-left: 10px;">
<input id="trashed" type="checkbox" onclick="setTrashVisible()"
{{ Session::get("show_trash:gateway") ? 'checked' : ''}}/>&nbsp; {{ trans('texts.show_archived_deleted')}} {{ Utils::transFlowText('gateways') }}
</label>
-->
2016-06-20 16:14:43 +02:00
2015-03-16 22:45:25 +01:00
@if ($showAdd)
2015-04-27 14:28:40 +02:00
{!! Button::primary(trans('texts.add_gateway'))
2015-05-19 21:14:00 +02:00
->asLinkTo(URL::to('/gateways/create'))
2015-04-01 21:57:02 +02:00
->withAttributes(['class' => 'pull-right'])
2015-04-15 18:35:41 +02:00
->appendIcon(Icon::create('plus-sign')) !!}
2015-03-16 22:45:25 +01:00
@endif
2015-11-05 23:37:04 +01:00
@include('partials.bulk_form', ['entityType' => ENTITY_ACCOUNT_GATEWAY])
2015-04-01 21:57:02 +02:00
{!! Datatable::table()
2015-03-16 22:45:25 +01:00
->addColumn(
trans('texts.name'),
trans('texts.action'))
->setUrl(url('api/gateways/'))
->setOptions('sPaginationType', 'bootstrap')
->setOptions('bFilter', false)
->setOptions('bAutoWidth', false)
2016-06-20 16:14:43 +02:00
->setOptions('aoColumns', [[ "sWidth"=> "80%" ], ["sWidth"=> "20%"]])
->setOptions('aoColumnDefs', [['bSortable'=>false, 'aTargets'=>[1]]])
2015-04-01 21:57:02 +02:00
->render('datatable') !!}
2015-03-16 22:45:25 +01:00
<script>
2015-11-11 13:17:58 +01:00
window.onDatatableReady = actionListHandler;
2016-05-14 23:23:20 +02:00
function setTrashVisible() {
var checked = $('#trashed').is(':checked');
var url = '{{ URL::to('view_archive/gateway') }}' + (checked ? '/true' : '/false');
$.get(url, function(data) {
refreshDatatable();
})
}
2015-11-11 13:20:51 +01:00
</script>
2015-03-16 22:45:25 +01:00
2016-06-09 09:56:22 +02:00
@stop