1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/resources/views/accounts/templates_and_reminders.blade.php

320 lines
13 KiB
PHP
Raw Normal View History

2015-10-14 16:15:39 +02:00
@extends('header')
2015-09-17 21:01:06 +02:00
@section('head')
@parent
2015-12-10 11:57:51 +01:00
@include('money_script')
2016-07-21 14:35:23 +02:00
<link href="{{ asset('css/quill.snow.css') }}" rel="stylesheet" type="text/css"/>
2015-11-04 22:52:12 +01:00
<script src="{{ asset('js/quill.min.js') }}" type="text/javascript"></script>
2015-09-17 21:01:06 +02:00
<style type="text/css">
textarea {
min-height: 150px !important;
}
</style>
2015-11-05 09:44:48 +01:00
<script type="text/javascript">
var editors = [];
</script>
2015-09-17 21:01:06 +02:00
@stop
@section('content')
@parent
2015-10-14 16:15:39 +02:00
@include('accounts.nav', ['selected' => ACCOUNT_TEMPLATES_AND_REMINDERS, 'advanced' => true])
2015-09-17 21:01:06 +02:00
2015-11-04 22:52:12 +01:00
2015-10-14 16:15:39 +02:00
{!! Former::vertical_open()->addClass('warn-on-exit') !!}
2015-09-17 21:01:06 +02:00
@foreach ([ENTITY_INVOICE, ENTITY_QUOTE, ENTITY_PAYMENT, REMINDER1, REMINDER2, REMINDER3] as $type)
@foreach (['subject', 'template'] as $field)
{{ Former::populateField("email_{$field}_{$type}", $templates[$type][$field]) }}
@endforeach
@endforeach
@foreach ([REMINDER1, REMINDER2, REMINDER3] as $type)
@foreach (['enable', 'num_days', 'direction', 'field'] as $field)
{{ Former::populateField("{$field}_{$type}", $account->{"{$field}_{$type}"}) }}
2015-09-17 21:01:06 +02:00
@endforeach
@endforeach
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{!! trans('texts.email_templates') !!}</h3>
</div>
<div class="panel-body">
<div class="row">
<div role="tabpanel">
<ul class="nav nav-tabs" role="tablist" style="border: none">
<li role="presentation" class="active"><a href="#invoice" aria-controls="notes" role="tab" data-toggle="tab">{{ trans('texts.invoice_email') }}</a></li>
<li role="presentation"><a href="#quote" aria-controls="terms" role="tab" data-toggle="tab">{{ trans('texts.quote_email') }}</a></li>
<li role="presentation"><a href="#payment" aria-controls="footer" role="tab" data-toggle="tab">{{ trans('texts.payment_email') }}</a></li>
</ul>
<div class="tab-content">
@include('accounts.template', ['field' => 'invoice', 'active' => true])
@include('accounts.template', ['field' => 'quote'])
@include('accounts.template', ['field' => 'payment'])
</div>
</div>
</div>
</div>
</div>
<p>&nbsp;</p>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{!! trans('texts.reminder_emails') !!}</h3>
</div>
<div class="panel-body">
<div class="row">
<div role="tabpanel">
<ul class="nav nav-tabs" role="tablist" style="border: none">
<li role="presentation" class="active"><a href="#reminder1" aria-controls="notes" role="tab" data-toggle="tab">{{ trans('texts.first_reminder') }}</a></li>
<li role="presentation"><a href="#reminder2" aria-controls="terms" role="tab" data-toggle="tab">{{ trans('texts.second_reminder') }}</a></li>
<li role="presentation"><a href="#reminder3" aria-controls="footer" role="tab" data-toggle="tab">{{ trans('texts.third_reminder') }}</a></li>
</ul>
<div class="tab-content">
@include('accounts.template', ['field' => 'reminder1', 'isReminder' => true, 'active' => true])
@include('accounts.template', ['field' => 'reminder2', 'isReminder' => true])
@include('accounts.template', ['field' => 'reminder3', 'isReminder' => true])
</div>
</div>
</div>
</div>
</div>
2016-05-05 16:46:22 +02:00
<div class="modal fade" id="templatePreviewModal" tabindex="-1" role="dialog" aria-labelledby="templatePreviewModalLabel" aria-hidden="true">
2016-05-05 18:25:26 +02:00
<div class="modal-dialog" style="width:800px">
2016-05-05 16:46:22 +02:00
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title" id="templatePreviewModalLabel">{{ trans('texts.preview') }}</h4>
</div>
<div class="modal-body">
<iframe id="server-preview" frameborder="1" width="100%" height="500px"/></iframe>
</div>
<div class="modal-footer" style="margin-top: 0px">
<button type="button" class="btn btn-primary" data-dismiss="modal">{{ trans('texts.close') }}</button>
</div>
</div>
</div>
</div>
2015-12-02 14:26:06 +01:00
<div class="modal fade" id="templateHelpModal" tabindex="-1" role="dialog" aria-labelledby="templateHelpModalLabel" aria-hidden="true">
<div class="modal-dialog" style="min-width:150px">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title" id="templateHelpModalLabel">{{ trans('texts.template_help_title') }}</h4>
</div>
<div class="modal-body">
<p>{{ trans('texts.template_help_1') }}</p>
<ul>
@foreach (\App\Ninja\Mailers\ContactMailer::$variableFields as $field)
<li>${{ $field }}</li>
@endforeach
2015-12-23 15:21:48 +01:00
@if ($account->custom_client_label1)
<li>$customClient1</li>
@endif
@if ($account->custom_client_label2)
<li>$customClient2</li>
@endif
@if ($account->custom_invoice_text_label1)
<li>$customInvoice1</li>
@endif
@if ($account->custom_invoice_text_label2)
<li>$customInvoice1</li>
@endif
2015-12-02 14:26:06 +01:00
@if (count($account->account_gateways) > 1)
2016-06-20 16:14:43 +02:00
@foreach (\App\Models\Gateway::$gatewayTypes as $type)
2015-12-02 14:26:06 +01:00
@if ($account->getGatewayByType($type))
2016-06-20 16:14:43 +02:00
<li>${{ Utils::toCamelCase($type) }}Link</li>
<li>${{ Utils::toCamelCase($type) }}Button</li>
2015-12-02 14:26:06 +01:00
@endif
@endforeach
@endif
</ul>
</div>
<div class="modal-footer" style="margin-top: 0px">
<button type="button" class="btn btn-primary" data-dismiss="modal">{{ trans('texts.close') }}</button>
</div>
</div>
</div>
</div>
@if (Auth::user()->hasFeature(FEATURE_EMAIL_TEMPLATES_REMINDERS))
2015-09-17 21:01:06 +02:00
<center>
{!! Button::success(trans('texts.save'))->submit()->large()->appendIcon(Icon::create('floppy-disk')) !!}
</center>
@else
<script>
$(function() {
$('form.warn-on-exit input').prop('disabled', true);
});
</script>
@endif
{!! Former::close() !!}
<script type="text/javascript">
var entityTypes = ['invoice', 'quote', 'payment', 'reminder1', 'reminder2', 'reminder3'];
var stringTypes = ['subject', 'template'];
2015-09-20 23:05:02 +02:00
var templates = {!! json_encode($defaultTemplates) !!};
2015-09-17 21:01:06 +02:00
function refreshPreview() {
for (var i=0; i<entityTypes.length; i++) {
var entityType = entityTypes[i];
for (var j=0; j<stringTypes.length; j++) {
var stringType = stringTypes[j];
var idName = '#email_' + stringType + '_' + entityType;
var value = $(idName).val();
var previewName = '#' + entityType + '_' + stringType + '_preview';
$(previewName).html(processVariables(value));
}
2016-06-20 16:14:43 +02:00
}
2015-09-17 21:01:06 +02:00
}
2016-05-05 16:46:22 +02:00
function serverPreview(field) {
console.log(field);
$('#templatePreviewModal').modal('show');
var template = $('#email_template_' + field).val();
var url = '{{ URL::to('settings/email_preview') }}?template=' + template;
$('#server-preview').attr('src', url).load(function() {
2016-06-20 16:14:43 +02:00
// disable links in the preview
2016-05-05 16:46:22 +02:00
$('iframe').contents().find('a').each(function(index) {
$(this).on('click', function(event) {
event.preventDefault();
event.stopPropagation();
});
});
2016-06-20 16:14:43 +02:00
});
2016-05-05 16:46:22 +02:00
}
2015-09-17 21:01:06 +02:00
$(function() {
for (var i=0; i<entityTypes.length; i++) {
var entityType = entityTypes[i];
for (var j=0; j<stringTypes.length; j++) {
var stringType = stringTypes[j];
var idName = '#email_' + stringType + '_' + entityType;
$(idName).keyup(refreshPreview);
}
}
2015-09-20 23:05:02 +02:00
for (var i=1; i<=3; i++) {
$('#enable_reminder' + i).bind('click', {id: i}, function(event) {
enableReminder(event.data.id)
});
enableReminder(i);
}
$('.show-when-ready').show();
2015-09-17 21:01:06 +02:00
refreshPreview();
});
2016-06-20 16:14:43 +02:00
function enableReminder(id) {
2015-09-20 23:05:02 +02:00
var checked = $('#enable_reminder' + id).is(':checked');
$('.enable-reminder' + id).attr('disabled', !checked)
}
function setDirectionShown(field) {
var val = $('#field_' + field).val();
if (val == {{ REMINDER_FIELD_INVOICE_DATE }}) {
$('#days_after_' + field).show();
$('#direction_' + field).hide();
} else {
$('#days_after_' + field).hide();
$('#direction_' + field).show();
}
}
2015-09-17 21:01:06 +02:00
function processVariables(str) {
if (!str) {
return '';
}
2015-12-02 14:26:06 +01:00
var keys = {!! json_encode(\App\Ninja\Mailers\ContactMailer::$variableFields) !!};
var passwordHtml = "{!! $account->isPro() && $account->enable_portal_password && $account->send_portal_password?'<p>'.trans('texts.password').': 6h2NWNdw6<p>':'' !!}";
2016-06-20 16:14:43 +02:00
2016-03-24 02:25:33 +01:00
@if ($account->isPro())
var documentsHtml = "{!! trans('texts.email_documents_header').'<ul><li><a>'.trans('texts.email_documents_example_1').'</a></li><li><a>'.trans('texts.email_documents_example_2').'</a></li></ul>' !!}";
@else
var documentsHtml = "";
@endif
2016-06-20 16:14:43 +02:00
2015-12-02 14:26:06 +01:00
var vals = [
2016-06-20 16:14:43 +02:00
{!! json_encode($emailFooter) !!},
"{{ $account->getDisplayName() }}",
"{{ $account->formatDate($account->getDateTime()) }}",
"{{ $account->formatDate($account->getDateTime()) }}",
2016-06-20 16:14:43 +02:00
"Client Name",
formatMoney(100),
"Contact Name",
"First Name",
2016-06-20 16:14:43 +02:00
"0001",
2015-12-02 14:26:06 +01:00
"0001",
passwordHtml,
2016-03-24 02:25:33 +01:00
documentsHtml,
2016-06-20 16:14:43 +02:00
"{{ URL::to('/view/...') }}$password",
'{!! Form::flatButton('view_invoice', '#0b4d78') !!}$password',
2016-06-20 16:14:43 +02:00
"{{ URL::to('/payment/...') }}$password",
'{!! Form::flatButton('pay_now', '#36c157') !!}$password',
'{{ trans('texts.auto_bill_notification_placeholder') }}',
2016-07-04 20:47:05 +02:00
"{{ URL::to('/client/portal/...') }}",
'{!! Form::flatButton('view_portal', '#36c157') !!}',
2015-09-17 21:01:06 +02:00
];
2015-12-23 15:21:48 +01:00
// Add blanks for custom values
keys.push('customClient1', 'customClient2', 'customInvoice1', 'customInvoice2');
vals.push('custom value', 'custom value', 'custom value', 'custom value');
2015-09-17 21:01:06 +02:00
// Add any available payment method links
2016-06-20 16:14:43 +02:00
@foreach (\App\Models\Gateway::$gatewayTypes as $type)
{!! "keys.push('" . Utils::toCamelCase($type).'Link' . "');" !!}
2015-12-02 14:26:06 +01:00
{!! "vals.push('" . URL::to('/payment/...') . "');" !!}
2016-06-20 16:14:43 +02:00
{!! "keys.push('" . Utils::toCamelCase($type).'Button' . "');" !!}
2016-03-02 14:36:42 +01:00
{!! "vals.push('" . Form::flatButton('pay_now', '#36c157') . "');" !!}
2015-09-17 21:01:06 +02:00
@endforeach
var includesPasswordPlaceholder = str.indexOf('$password') != -1;
2016-06-20 16:14:43 +02:00
2015-09-17 21:01:06 +02:00
for (var i=0; i<keys.length; i++) {
var regExp = new RegExp('\\$'+keys[i], 'g');
str = str.replace(regExp, vals[i]);
}
2016-06-20 16:14:43 +02:00
if(!includesPasswordPlaceholder){
var lastSpot = str.lastIndexOf('$password')
str = str.slice(0, lastSpot) + str.slice(lastSpot).replace('$password', passwordHtml);
}
str = str.replace(/\$password/g,'');
2015-09-17 21:01:06 +02:00
return str;
}
function resetText(section, field) {
2016-07-28 18:55:23 +02:00
sweetConfirm(function() {
2015-09-17 21:01:06 +02:00
var fieldName = 'email_' + section + '_' + field;
var value = templates[field][section];
$('#' + fieldName).val(value);
2016-01-10 13:37:23 +01:00
if (section == 'template') {
editors[field].setHTML(value);
}
2015-09-17 21:01:06 +02:00
refreshPreview();
2016-07-28 18:55:23 +02:00
});
2015-09-17 21:01:06 +02:00
}
</script>
@stop