mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
1143 lines
51 KiB
PHP
1143 lines
51 KiB
PHP
@extends('header')
|
|
|
|
@section('head')
|
|
@parent
|
|
|
|
@include('money_script')
|
|
<script src="{{ asset('js/pdf.built.js') }}" type="text/javascript"></script>
|
|
|
|
<style type="text/css">
|
|
|
|
/* the value is auto set so we're removing the bold formatting */
|
|
label.control-label[for=invoice_number] {
|
|
font-weight: normal !important;
|
|
}
|
|
</style>
|
|
@stop
|
|
|
|
@section('content')
|
|
@if ($errors->first('invoice_items'))
|
|
<div class="alert alert-danger">{{ trans($errors->first('invoice_items')) }}</div>
|
|
@endif
|
|
|
|
@if ($invoice->id)
|
|
<ol class="breadcrumb">
|
|
@if ($invoice->is_recurring)
|
|
<li>{!! link_to('invoices', trans('texts.recurring_invoice')) !!}</li>
|
|
@else
|
|
<li>{!! link_to(($entityType == ENTITY_QUOTE ? 'quotes' : 'invoices'), trans('texts.' . ($entityType == ENTITY_QUOTE ? 'quotes' : 'invoices'))) !!}</li>
|
|
<li class="active">{{ $invoice->invoice_number }}</li>
|
|
@endif
|
|
</ol>
|
|
@endif
|
|
|
|
{!! Former::open($url)
|
|
->method($method)
|
|
->addClass('warn-on-exit')
|
|
->autocomplete('off')
|
|
->rules(array(
|
|
'client' => 'required',
|
|
'invoice_number' => 'required',
|
|
'product_key' => 'max:255'
|
|
)) !!}
|
|
|
|
@include('partials.autocomplete_fix')
|
|
|
|
<input type="submit" style="display:none" name="submitButton" id="submitButton">
|
|
|
|
<div data-bind="with: invoice">
|
|
<div class="panel panel-default">
|
|
<div class="panel-body" style="padding-bottom: 0px;">
|
|
|
|
<div class="row" style="min-height:195px" onkeypress="formEnterClick(event)">
|
|
<div class="col-md-4" id="col_1">
|
|
|
|
@if ($invoice->id || $data)
|
|
<div class="form-group">
|
|
<label for="client" class="control-label col-lg-4 col-sm-4">{{ trans('texts.client') }}</label>
|
|
<div class="col-lg-8 col-sm-8">
|
|
<h4><div data-bind="text: getClientDisplayName(ko.toJS(client()))"></div></h4>
|
|
<a id="editClientLink" class="pointer" data-bind="click: $root.showClientForm">{{ trans('texts.edit_client') }}</a> |
|
|
{!! link_to('/clients/'.$invoice->client->public_id, trans('texts.view_client'), ['target' => '_blank']) !!}
|
|
</div>
|
|
</div>
|
|
<div style="display:none">
|
|
@endif
|
|
|
|
{!! Former::select('client')->addOption('', '')->data_bind("dropdown: client")->addClass('client-input')->addGroupClass('client_select closer-row') !!}
|
|
|
|
<div class="form-group" style="margin-bottom: 8px">
|
|
<div class="col-lg-8 col-sm-8 col-lg-offset-4 col-sm-offset-4">
|
|
<a id="createClientLink" class="pointer" data-bind="click: $root.showClientForm, html: $root.clientLinkText"></a>
|
|
<span data-bind="visible: $root.invoice().client().public_id() > 0" style="display:none">|
|
|
<a data-bind="attr: {href: '{{ url('/clients') }}/' + $root.invoice().client().public_id()}" target="_blank">{{ trans('texts.view_client') }}</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
@if ($invoice->id || $data)
|
|
</div>
|
|
@endif
|
|
|
|
<div data-bind="with: client" class="invoice-contact">
|
|
<div style="display:none" class="form-group" data-bind="visible: contacts().length > 0 && (contacts()[0].email() || contacts()[0].first_name()), foreach: contacts">
|
|
<div class="col-lg-8 col-lg-offset-4">
|
|
<label class="checkbox" data-bind="attr: {for: $index() + '_check'}" onclick="refreshPDF(true)">
|
|
<input type="hidden" value="0" data-bind="attr: {name: 'client[contacts][' + $index() + '][send_invoice]'}">
|
|
<input type="checkbox" value="1" data-bind="checked: send_invoice, attr: {id: $index() + '_check', name: 'client[contacts][' + $index() + '][send_invoice]'}">
|
|
<span data-bind="html: email.display"></span>
|
|
</label>
|
|
<span data-bind="html: $data.view_as_recipient"></span>
|
|
@if (Utils::isConfirmed())
|
|
<span style="vertical-align:text-top;color:red" class="fa fa-exclamation-triangle"
|
|
data-bind="visible: $data.email_error, tooltip: {title: $data.email_error}"></span>
|
|
<span style="vertical-align:text-top" class="glyphicon glyphicon-info-sign"
|
|
data-bind="visible: $data.invitation_status, tooltip: {title: $data.invitation_status, html: true},
|
|
style: {color: $data.hasOwnProperty('invitation_viewed') && $data.invitation_viewed() ? '#57D172':'#B1B5BA'}"></span>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="col-md-4" id="col_2">
|
|
<div data-bind="visible: !is_recurring()">
|
|
{!! Former::text('invoice_date')->data_bind("datePicker: invoice_date, valueUpdate: 'afterkeydown'")->label(trans("texts.{$entityType}_date"))
|
|
->data_date_format(Session::get(SESSION_DATE_PICKER_FORMAT, DEFAULT_DATE_PICKER_FORMAT))->appendIcon('calendar')->addGroupClass('invoice_date') !!}
|
|
{!! Former::text('due_date')->data_bind("datePicker: due_date, valueUpdate: 'afterkeydown'")->label(trans("texts.{$entityType}_due_date"))
|
|
->data_date_format(Session::get(SESSION_DATE_PICKER_FORMAT, DEFAULT_DATE_PICKER_FORMAT))->appendIcon('calendar')->addGroupClass('due_date') !!}
|
|
|
|
{!! Former::text('partial')->data_bind("value: partial, valueUpdate: 'afterkeydown'")->onchange('onPartialChange()')
|
|
->rel('tooltip')->data_toggle('tooltip')->data_placement('bottom')->title(trans('texts.partial_value')) !!}
|
|
</div>
|
|
@if ($entityType == ENTITY_INVOICE)
|
|
<div data-bind="visible: is_recurring" style="display: none">
|
|
{!! Former::select('frequency_id')->options($frequencies)->data_bind("value: frequency_id")
|
|
->appendIcon('question-sign')->addGroupClass('frequency_id') !!}
|
|
{!! Former::text('start_date')->data_bind("datePicker: start_date, valueUpdate: 'afterkeydown'")
|
|
->data_date_format(Session::get(SESSION_DATE_PICKER_FORMAT, DEFAULT_DATE_PICKER_FORMAT))->appendIcon('calendar')->addGroupClass('start_date') !!}
|
|
{!! Former::text('end_date')->data_bind("datePicker: end_date, valueUpdate: 'afterkeydown'")
|
|
->data_date_format(Session::get(SESSION_DATE_PICKER_FORMAT, DEFAULT_DATE_PICKER_FORMAT))->appendIcon('calendar')->addGroupClass('end_date') !!}
|
|
</div>
|
|
@endif
|
|
|
|
@if ($account->showCustomField('custom_invoice_text_label1', $invoice))
|
|
{!! Former::text('custom_text_value1')->label($account->custom_invoice_text_label1)->data_bind("value: custom_text_value1, valueUpdate: 'afterkeydown'") !!}
|
|
@endif
|
|
|
|
@if ($entityType == ENTITY_INVOICE)
|
|
<div class="form-group" style="margin-bottom: 8px">
|
|
<div class="col-lg-8 col-sm-8 col-sm-offset-4" style="padding-top: 10px">
|
|
@if ($invoice->recurring_invoice)
|
|
{!! trans('texts.created_by_invoice', ['invoice' => link_to('/invoices/'.$invoice->recurring_invoice->public_id, trans('texts.recurring_invoice'))]) !!}
|
|
@elseif ($invoice->id)
|
|
@if (isset($lastSent) && $lastSent)
|
|
{!! trans('texts.last_sent_on', ['date' => link_to('/invoices/'.$lastSent->public_id, $invoice->last_sent_date, ['id' => 'lastSent'])]) !!} <br/>
|
|
@endif
|
|
@if ($invoice->is_recurring && $invoice->getNextSendDate())
|
|
{!! trans('texts.next_send_on', ['date' => '<span data-bind="tooltip: {title: \''.$invoice->getPrettySchedule().'\', html: true}">'.$account->formatDate($invoice->getNextSendDate()).
|
|
'<span class="glyphicon glyphicon-info-sign" style="padding-left:10px;color:#B1B5BA"></span></span>']) !!}
|
|
@endif
|
|
@endif
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
|
|
<div class="col-md-4" id="col_2">
|
|
<span data-bind="visible: !is_recurring()">
|
|
{!! Former::text('invoice_number')
|
|
->label(trans("texts.{$entityType}_number_short"))
|
|
->data_bind("value: invoice_number, valueUpdate: 'afterkeydown'") !!}
|
|
</span>
|
|
<span data-bind="visible: is_recurring()" style="display: none">
|
|
{!! Former::checkbox('auto_bill')
|
|
->label(trans('texts.auto_bill'))
|
|
->text(trans('texts.enable_with_stripe'))
|
|
->data_bind("checked: auto_bill, valueUpdate: 'afterkeydown'") !!}
|
|
</span>
|
|
{!! Former::text('po_number')->label(trans('texts.po_number_short'))->data_bind("value: po_number, valueUpdate: 'afterkeydown'") !!}
|
|
{!! Former::text('discount')->data_bind("value: discount, valueUpdate: 'afterkeydown'")
|
|
->addGroupClass('discount-group')->type('number')->min('0')->step('any')->append(
|
|
Former::select('is_amount_discount')->addOption(trans('texts.discount_percent'), '0')
|
|
->addOption(trans('texts.discount_amount'), '1')->data_bind("value: is_amount_discount")->raw()
|
|
) !!}
|
|
|
|
@if ($account->showCustomField('custom_invoice_text_label2', $invoice))
|
|
{!! Former::text('custom_text_value2')->label($account->custom_invoice_text_label2)->data_bind("value: custom_text_value2, valueUpdate: 'afterkeydown'") !!}
|
|
@endif
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="table-responsive" style="padding-top:4px">
|
|
<table class="table invoice-table">
|
|
<thead>
|
|
<tr>
|
|
<th style="min-width:32px;" class="hide-border"></th>
|
|
<th style="min-width:160px">{{ $invoiceLabels['item'] }}</th>
|
|
<th style="width:100%">{{ $invoiceLabels['description'] }}</th>
|
|
<th style="min-width:120px" data-bind="text: costLabel">{{ $invoiceLabels['unit_cost'] }}</th>
|
|
<th style="{{ $account->hide_quantity ? 'display:none' : 'min-width:120px' }}" data-bind="text: qtyLabel">{{ $invoiceLabels['quantity'] }}</th>
|
|
<th style="min-width:120px;display:none;" data-bind="visible: $root.invoice_item_taxes.show">{{ trans('texts.tax') }}</th>
|
|
<th style="min-width:120px;">{{ trans('texts.line_total') }}</th>
|
|
<th style="min-width:32px;" class="hide-border"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody data-bind="sortable: { data: invoice_items, afterMove: onDragged }">
|
|
<tr data-bind="event: { mouseover: showActions, mouseout: hideActions }" class="sortable-row">
|
|
<td class="hide-border td-icon">
|
|
<i style="display:none" data-bind="visible: actionsVisible() &&
|
|
$index() < ($parent.invoice_items().length - 1) &&
|
|
$parent.invoice_items().length > 1" class="fa fa-sort"></i>
|
|
</td>
|
|
<td>
|
|
{!! Former::text('product_key')->useDatalist($products->toArray(), 'product_key')
|
|
->data_bind("value: product_key, valueUpdate: 'afterkeydown', attr: {name: 'invoice_items[' + \$index() + '][product_key]'}")
|
|
->addClass('datalist')
|
|
->onkeyup('onItemChange()')
|
|
->raw()
|
|
!!}
|
|
</td>
|
|
<td>
|
|
<textarea data-bind="value: wrapped_notes, valueUpdate: 'afterkeydown', attr: {name: 'invoice_items[' + $index() + '][notes]'}"
|
|
rows="1" cols="60" style="resize: vertical" class="form-control word-wrap"></textarea>
|
|
<input type="text" data-bind="value: task_public_id, attr: {name: 'invoice_items[' + $index() + '][task_public_id]'}" style="display: none"/>
|
|
</td>
|
|
<td>
|
|
<input onkeyup="onItemChange()" data-bind="value: prettyCost, valueUpdate: 'afterkeydown', attr: {name: 'invoice_items[' + $index() + '][cost]'}"
|
|
style="text-align: right" class="form-control"/>
|
|
</td>
|
|
<td style="{{ $account->hide_quantity ? 'display:none' : '' }}">
|
|
<input onkeyup="onItemChange()" data-bind="value: prettyQty, valueUpdate: 'afterkeydown', attr: {name: 'invoice_items[' + $index() + '][qty]'}"
|
|
style="text-align: right" class="form-control" name="quantity"/>
|
|
</td>
|
|
<td style="display:none;" data-bind="visible: $root.invoice_item_taxes.show">
|
|
<select class="form-control" style="width:100%" data-bind="value: tax, options: $root.tax_rates, optionsText: 'displayName', attr: {name: 'invoice_items[' + $index() + '][tax]'}"></select>
|
|
<input type="text" data-bind="value: tax().name, attr: {name: 'invoice_items[' + $index() + '][tax_name]'}" style="display:none">
|
|
<input type="text" data-bind="value: tax().rate, attr: {name: 'invoice_items[' + $index() + '][tax_rate]'}" style="display:none">
|
|
</td>
|
|
<td style="text-align:right;padding-top:9px !important" nowrap>
|
|
<div class="line-total" data-bind="text: totals.total"></div>
|
|
</td>
|
|
<td style="cursor:pointer" class="hide-border td-icon">
|
|
<i style="padding-left:2px" data-bind="click: $parent.removeItem, visible: actionsVisible() &&
|
|
$index() < ($parent.invoice_items().length - 1) &&
|
|
$parent.invoice_items().length > 1" class="fa fa-minus-circle redlink" title="Remove item"/>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
|
|
|
|
<tfoot>
|
|
<tr>
|
|
<td class="hide-border"/>
|
|
<td class="hide-border" colspan="2" rowspan="6" style="vertical-align:top">
|
|
<br/>
|
|
<div role="tabpanel">
|
|
|
|
<ul class="nav nav-tabs" role="tablist" style="border: none">
|
|
<li role="presentation" class="active"><a href="#notes" aria-controls="notes" role="tab" data-toggle="tab">{{ trans('texts.note_to_client') }}</a></li>
|
|
<li role="presentation"><a href="#terms" aria-controls="terms" role="tab" data-toggle="tab">{{ trans("texts.{$entityType}_terms") }}</a></li>
|
|
<li role="presentation"><a href="#footer" aria-controls="footer" role="tab" data-toggle="tab">{{ trans("texts.{$entityType}_footer") }}</a></li>
|
|
</ul>
|
|
|
|
<div class="tab-content">
|
|
<div role="tabpanel" class="tab-pane active" id="notes" style="padding-bottom:44px">
|
|
{!! Former::textarea('public_notes')->data_bind("value: wrapped_notes, valueUpdate: 'afterkeydown'")
|
|
->label(null)->style('resize: none; min-width: 450px;')->rows(3) !!}
|
|
</div>
|
|
<div role="tabpanel" class="tab-pane" id="terms">
|
|
{!! Former::textarea('terms')->data_bind("value:wrapped_terms, placeholder: terms_placeholder, valueUpdate: 'afterkeydown'")
|
|
->label(false)->style('resize: none; min-width: 450px')->rows(3)
|
|
->help('<div class="checkbox">
|
|
<label>
|
|
<input name="set_default_terms" type="checkbox" style="width: 24px" data-bind="checked: set_default_terms"/>'.trans('texts.save_as_default_terms').'
|
|
</label>
|
|
<div class="pull-right" data-bind="visible: showResetTerms()">
|
|
<a href="#" onclick="return resetTerms()" title="'. trans('texts.reset_terms_help') .'">' . trans("texts.reset_terms") . '</a>
|
|
</div>
|
|
</div>') !!}
|
|
</div>
|
|
<div role="tabpanel" class="tab-pane" id="footer">
|
|
{!! Former::textarea('invoice_footer')->data_bind("value:wrapped_footer, placeholder: footer_placeholder, valueUpdate: 'afterkeydown'")
|
|
->label(false)->style('resize: none; min-width: 450px')->rows(3)
|
|
->help('<div class="checkbox">
|
|
<label>
|
|
<input name="set_default_footer" type="checkbox" style="width: 24px" data-bind="checked: set_default_footer"/>'.trans('texts.save_as_default_footer').'
|
|
</label>
|
|
<div class="pull-right" data-bind="visible: showResetFooter()">
|
|
<a href="#" onclick="return resetFooter()" title="'. trans('texts.reset_footer_help') .'">' . trans("texts.reset_footer") . '</a>
|
|
</div>
|
|
</div>') !!}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</td>
|
|
<td class="hide-border" style="display:none" data-bind="visible: $root.invoice_item_taxes.show"/>
|
|
<td colspan="{{ $account->hide_quantity ? 1 : 2 }}">{{ trans('texts.subtotal') }}</td>
|
|
<td style="text-align: right"><span data-bind="text: totals.subtotal"/></td>
|
|
</tr>
|
|
|
|
<tr style="display:none" data-bind="visible: discount() != 0">
|
|
<td class="hide-border" colspan="3"/>
|
|
<td style="display:none" class="hide-border" data-bind="visible: $root.invoice_item_taxes.show"/>
|
|
<td colspan="{{ $account->hide_quantity ? 1 : 2 }}">{{ trans('texts.discount') }}</td>
|
|
<td style="text-align: right"><span data-bind="text: totals.discounted"/></td>
|
|
</tr>
|
|
|
|
@if ($account->showCustomField('custom_invoice_label1', $invoice) && $account->custom_invoice_taxes1)
|
|
<tr>
|
|
<td class="hide-border" colspan="3"/>
|
|
<td style="display:none" class="hide-border" data-bind="visible: $root.invoice_item_taxes.show"/>
|
|
<td colspan="{{ $account->hide_quantity ? 1 : 2 }}">{{ $account->custom_invoice_label1 }}</td>
|
|
<td style="text-align: right;padding-right: 28px" colspan="2"><input name="custom_value1" class="form-control" data-bind="value: custom_value1, valueUpdate: 'afterkeydown'"/></td>
|
|
</tr>
|
|
@endif
|
|
|
|
@if ($account->showCustomField('custom_invoice_label2', $invoice) && $account->custom_invoice_taxes2)
|
|
<tr>
|
|
<td class="hide-border" colspan="3"/>
|
|
<td style="display:none" class="hide-border" data-bind="visible: $root.invoice_item_taxes.show"/>
|
|
<td colspan="{{ $account->hide_quantity ? 1 : 2 }}">{{ $account->custom_invoice_label2 }}</td>
|
|
<td style="text-align: right;padding-right: 28px" colspan="2"><input name="custom_value2" class="form-control" data-bind="value: custom_value2, valueUpdate: 'afterkeydown'"/></td>
|
|
</tr>
|
|
@endif
|
|
|
|
<tr style="display:none" data-bind="visible: $root.invoice_item_taxes.show && totals.hasItemTaxes">
|
|
<td class="hide-border" colspan="4"/>
|
|
@if (!$account->hide_quantity)
|
|
<td>{{ trans('texts.tax') }}</td>
|
|
@endif
|
|
<td style="min-width:120px"><span data-bind="html: totals.itemTaxRates"/></td>
|
|
<td style="text-align: right"><span data-bind="html: totals.itemTaxAmounts"/></td>
|
|
</tr>
|
|
|
|
<tr style="display:none" data-bind="visible: $root.invoice_taxes.show">
|
|
<td class="hide-border" colspan="3"/>
|
|
<td style="display:none" class="hide-border" data-bind="visible: $root.invoice_item_taxes.show"/>
|
|
@if (!$account->hide_quantity)
|
|
<td>{{ trans('texts.tax') }}</td>
|
|
@endif
|
|
<td style="min-width:120px">
|
|
<select class="form-control" style="width:100%" data-bind="value: tax, options: $root.tax_rates, optionsText: 'displayName'"></select>
|
|
<input type="text" name="tax_name" data-bind="value: tax().name" style="display:none">
|
|
<input type="text" name="tax_rate" data-bind="value: tax().rate" style="display:none">
|
|
</td>
|
|
<td style="text-align: right"><span data-bind="text: totals.taxAmount"/></td>
|
|
</tr>
|
|
|
|
@if ($account->showCustomField('custom_invoice_label1', $invoice) && !$account->custom_invoice_taxes1)
|
|
<tr>
|
|
<td class="hide-border" colspan="3"/>
|
|
<td style="display:none" class="hide-border" data-bind="visible: $root.invoice_item_taxes.show"/>
|
|
<td colspan="{{ $account->hide_quantity ? 1 : 2 }}">{{ $account->custom_invoice_label1 }}</td>
|
|
<td style="text-align: right;padding-right: 28px" colspan="2"><input name="custom_value1" class="form-control" data-bind="value: custom_value1, valueUpdate: 'afterkeydown'"/></td>
|
|
</tr>
|
|
@endif
|
|
|
|
@if ($account->showCustomField('custom_invoice_label2', $invoice) && !$account->custom_invoice_taxes2)
|
|
<tr>
|
|
<td class="hide-border" colspan="3"/>
|
|
<td style="display:none" class="hide-border" data-bind="visible: $root.invoice_item_taxes.show"/>
|
|
<td colspan="{{ $account->hide_quantity ? 1 : 2 }}">{{ $account->custom_invoice_label2 }}</td>
|
|
<td style="text-align: right;padding-right: 28px" colspan="2"><input name="custom_value2" class="form-control" data-bind="value: custom_value2, valueUpdate: 'afterkeydown'"/></td>
|
|
</tr>
|
|
@endif
|
|
|
|
@if (!$account->hide_paid_to_date)
|
|
<tr>
|
|
<td class="hide-border" colspan="3"/>
|
|
<td style="display:none" class="hide-border" data-bind="visible: $root.invoice_item_taxes.show"/>
|
|
<td colspan="{{ $account->hide_quantity ? 1 : 2 }}">{{ trans('texts.paid_to_date') }}</td>
|
|
<td style="text-align: right" data-bind="text: totals.paidToDate"></td>
|
|
</tr>
|
|
@endif
|
|
|
|
<tr>
|
|
<td class="hide-border" colspan="3"/>
|
|
<td class="hide-border" style="display:none" data-bind="visible: $root.invoice_item_taxes.show"/>
|
|
<td class="hide-border" colspan="{{ $account->hide_quantity ? 1 : 2 }}"><b>{{ trans($entityType == ENTITY_INVOICE ? 'texts.balance_due' : 'texts.total') }}</b></td>
|
|
<td class="hide-border" style="text-align: right"><span data-bind="text: totals.total"></span></td>
|
|
</tr>
|
|
|
|
</tfoot>
|
|
|
|
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<p> </p>
|
|
<div class="form-actions">
|
|
|
|
<div style="display:none">
|
|
{!! Former::populateField('entityType', $entityType) !!}
|
|
|
|
{!! Former::text('entityType') !!}
|
|
{!! Former::text('action') !!}
|
|
{!! Former::text('public_id')->data_bind('value: public_id') !!}
|
|
{!! Former::text('is_recurring')->data_bind('value: is_recurring') !!}
|
|
{!! Former::text('is_quote')->data_bind('value: is_quote') !!}
|
|
{!! Former::text('has_tasks')->data_bind('value: has_tasks') !!}
|
|
{!! Former::text('data')->data_bind('value: ko.mapping.toJSON(model)') !!}
|
|
{!! Former::text('pdfupload') !!}
|
|
</div>
|
|
|
|
|
|
@if (!Utils::isPro() || \App\Models\InvoiceDesign::count() == COUNT_FREE_DESIGNS_SELF_HOST)
|
|
{!! Former::select('invoice_design_id')->style('display:inline;width:150px;background-color:white !important')->raw()->fromQuery($invoiceDesigns, 'name', 'id')->data_bind("value: invoice_design_id")->addOption(trans('texts.more_designs') . '...', '-1') !!}
|
|
@else
|
|
{!! Former::select('invoice_design_id')->style('display:inline;width:150px;background-color:white !important')->raw()->fromQuery($invoiceDesigns, 'name', 'id')->data_bind("value: invoice_design_id") !!}
|
|
@endif
|
|
|
|
{!! Button::primary(trans('texts.download_pdf'))->withAttributes(array('onclick' => 'onDownloadClick()'))->appendIcon(Icon::create('download-alt')) !!}
|
|
|
|
@if ($invoice->isClientTrashed())
|
|
<!-- do nothing -->
|
|
@elseif ($invoice->trashed())
|
|
{!! Button::success(trans('texts.restore'))->withAttributes(['onclick' => 'submitBulkAction("restore")'])->appendIcon(Icon::create('cloud-download')) !!}
|
|
@elseif (!$invoice->trashed())
|
|
{!! Button::success(trans("texts.save_{$entityType}"))->withAttributes(array('id' => 'saveButton', 'onclick' => 'onSaveClick()'))->appendIcon(Icon::create('floppy-disk')) !!}
|
|
{!! Button::info(trans("texts.email_{$entityType}"))->withAttributes(array('id' => 'emailButton', 'onclick' => 'onEmailClick()'))->appendIcon(Icon::create('send')) !!}
|
|
@if ($invoice->id)
|
|
{!! DropdownButton::normal(trans('texts.more_actions'))
|
|
->withContents($actions)
|
|
->dropup() !!}
|
|
@endif
|
|
@endif
|
|
|
|
</div>
|
|
<p> </p>
|
|
|
|
@include('invoices.pdf', ['account' => Auth::user()->account])
|
|
|
|
@if (!Auth::user()->account->isPro())
|
|
<div style="font-size:larger">
|
|
{!! trans('texts.pro_plan.remove_logo', ['link'=>'<a href="#" onclick="showProPlan(\'remove_logo\')">'.trans('texts.pro_plan.remove_logo_link').'</a>']) !!}
|
|
</div>
|
|
@endif
|
|
|
|
<div class="modal fade" id="clientModal" tabindex="-1" role="dialog" aria-labelledby="clientModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog" data-bind="css: {'large-dialog': $root.showMore}">
|
|
<div class="modal-content" style="background-color: #f8f8f8">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
<h4 class="modal-title" id="clientModalLabel">{{ trans('texts.client') }}</h4>
|
|
</div>
|
|
|
|
<div class="container" style="width: 100%; padding-bottom: 0px !important">
|
|
<div class="panel panel-default">
|
|
<div class="panel-body">
|
|
|
|
<div class="row" data-bind="with: client" onkeypress="clientModalEnterClick(event)">
|
|
<div style="margin-left:0px;margin-right:0px" data-bind="css: {'col-md-6': $root.showMore}">
|
|
|
|
{!! Former::hidden('client_public_id')->data_bind("value: public_id, valueUpdate: 'afterkeydown',
|
|
attr: {name: 'client[public_id]'}") !!}
|
|
{!! Former::text('client[name]')
|
|
->data_bind("value: name, valueUpdate: 'afterkeydown', attr { placeholder: name.placeholder }")
|
|
->label('client_name') !!}
|
|
|
|
<span data-bind="visible: $root.showMore">
|
|
{!! Former::text('client[id_number]')
|
|
->label('id_number')
|
|
->data_bind("value: id_number, valueUpdate: 'afterkeydown'") !!}
|
|
{!! Former::text('client[vat_number]')
|
|
->label('vat_number')
|
|
->data_bind("value: vat_number, valueUpdate: 'afterkeydown'") !!}
|
|
|
|
{!! Former::text('client[website]')
|
|
->label('website')
|
|
->data_bind("value: website, valueUpdate: 'afterkeydown'") !!}
|
|
{!! Former::text('client[work_phone]')
|
|
->label('work_phone')
|
|
->data_bind("value: work_phone, valueUpdate: 'afterkeydown'") !!}
|
|
</span>
|
|
|
|
@if (Auth::user()->isPro())
|
|
@if ($account->custom_client_label1)
|
|
{!! Former::text('client[custom_value1]')
|
|
->label($account->custom_client_label1)
|
|
->data_bind("value: custom_value1, valueUpdate: 'afterkeydown'") !!}
|
|
@endif
|
|
@if ($account->custom_client_label2)
|
|
{!! Former::text('client[custom_value2]')
|
|
->label($account->custom_client_label2)
|
|
->data_bind("value: custom_value2, valueUpdate: 'afterkeydown'") !!}
|
|
@endif
|
|
@endif
|
|
|
|
<span data-bind="visible: $root.showMore">
|
|
|
|
|
|
{!! Former::text('client[address1]')
|
|
->label(trans('texts.address1'))
|
|
->data_bind("value: address1, valueUpdate: 'afterkeydown'") !!}
|
|
{!! Former::text('client[address2]')
|
|
->label(trans('texts.address2'))
|
|
->data_bind("value: address2, valueUpdate: 'afterkeydown'") !!}
|
|
{!! Former::text('client[city]')
|
|
->label(trans('texts.city'))
|
|
->data_bind("value: city, valueUpdate: 'afterkeydown'") !!}
|
|
{!! Former::text('client[state]')
|
|
->label(trans('texts.state'))
|
|
->data_bind("value: state, valueUpdate: 'afterkeydown'") !!}
|
|
{!! Former::text('client[postal_code]')
|
|
->label(trans('texts.postal_code'))
|
|
->data_bind("value: postal_code, valueUpdate: 'afterkeydown'") !!}
|
|
{!! Former::select('client[country_id]')
|
|
->label(trans('texts.country_id'))
|
|
->addOption('','')->addGroupClass('country_select')
|
|
->fromQuery(Cache::get('countries'), 'name', 'id')->data_bind("dropdown: country_id") !!}
|
|
</span>
|
|
|
|
</div>
|
|
<div style="margin-left:0px;margin-right:0px" data-bind="css: {'col-md-6': $root.showMore}">
|
|
|
|
<div data-bind='template: { foreach: contacts,
|
|
beforeRemove: hideContact,
|
|
afterAdd: showContact }'>
|
|
|
|
{!! Former::hidden('public_id')->data_bind("value: public_id, valueUpdate: 'afterkeydown',
|
|
attr: {name: 'client[contacts][' + \$index() + '][public_id]'}") !!}
|
|
{!! Former::text('first_name')->data_bind("value: first_name, valueUpdate: 'afterkeydown',
|
|
attr: {name: 'client[contacts][' + \$index() + '][first_name]'}") !!}
|
|
{!! Former::text('last_name')->data_bind("value: last_name, valueUpdate: 'afterkeydown',
|
|
attr: {name: 'client[contacts][' + \$index() + '][last_name]'}") !!}
|
|
{!! Former::text('email')->data_bind("value: email, valueUpdate: 'afterkeydown',
|
|
attr: {name: 'client[contacts][' + \$index() + '][email]', id:'email'+\$index()}")
|
|
->addClass('client-email') !!}
|
|
{!! Former::text('phone')->data_bind("value: phone, valueUpdate: 'afterkeydown',
|
|
attr: {name: 'client[contacts][' + \$index() + '][phone]'}") !!}
|
|
|
|
<div class="form-group">
|
|
<div class="col-lg-8 col-lg-offset-4">
|
|
<span class="redlink bold" data-bind="visible: $parent.contacts().length > 1">
|
|
{!! link_to('#', trans('texts.remove_contact').' -', array('data-bind'=>'click: $parent.removeContact')) !!}
|
|
</span>
|
|
<span data-bind="visible: $index() === ($parent.contacts().length - 1)" class="pull-right greenlink bold">
|
|
{!! link_to('#', trans('texts.add_contact').' +', array('data-bind'=>'click: $parent.addContact')) !!}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<span data-bind="visible: $root.showMore">
|
|
|
|
</span>
|
|
|
|
{!! Former::select('client[currency_id]')->addOption('','')
|
|
->placeholder($account->currency ? $account->currency->name : '')
|
|
->label(trans('texts.currency_id'))
|
|
->data_bind('value: currency_id')
|
|
->fromQuery($currencies, 'name', 'id') !!}
|
|
|
|
<span data-bind="visible: $root.showMore">
|
|
{!! Former::select('client[language_id]')->addOption('','')
|
|
->placeholder($account->language ? $account->language->name : '')
|
|
->label(trans('texts.language_id'))
|
|
->data_bind('value: language_id')
|
|
->fromQuery($languages, 'name', 'id') !!}
|
|
{!! Former::select('client[payment_terms]')->addOption('','')->data_bind('value: payment_terms')
|
|
->fromQuery($paymentTerms, 'name', 'num_days')
|
|
->label(trans('texts.payment_terms'))
|
|
->help(trans('texts.payment_terms_help')) !!}
|
|
{!! Former::select('client[size_id]')->addOption('','')->data_bind('value: size_id')
|
|
->label(trans('texts.size_id'))
|
|
->fromQuery($sizes, 'name', 'id') !!}
|
|
{!! Former::select('client[industry_id]')->addOption('','')->data_bind('value: industry_id')
|
|
->label(trans('texts.industry_id'))
|
|
->fromQuery($industries, 'name', 'id') !!}
|
|
{!! Former::textarea('client_private_notes')
|
|
->label(trans('texts.private_notes'))
|
|
->data_bind("value: private_notes, attr:{ name: 'client[private_notes]'}") !!}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modal-footer" style="margin-top: 0px; padding-top:0px;">
|
|
<span class="error-block" id="emailError" style="display:none;float:left;font-weight:bold">{{ trans('texts.provide_name_or_email') }}</span><span> </span>
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">{{ trans('texts.cancel') }}</button>
|
|
<button type="button" class="btn btn-default" data-bind="click: $root.showMoreFields, text: $root.showMore() ? '{{ trans('texts.less_fields') }}' : '{{ trans('texts.more_fields') }}'"></button>
|
|
<button id="clientDoneButton" type="button" class="btn btn-primary" data-bind="click: $root.clientFormComplete">{{ trans('texts.done') }}</button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modal fade" id="recurringModal" tabindex="-1" role="dialog" aria-labelledby="recurringModalLabel" 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">×</button>
|
|
<h4 class="modal-title" id="recurringModalLabel">{{ trans('texts.recurring_invoices') }}</h4>
|
|
</div>
|
|
|
|
<div style="background-color: #fff; padding-left: 16px; padding-right: 16px">
|
|
{!! isset($recurringHelp) ? $recurringHelp : '' !!}
|
|
</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>
|
|
|
|
{!! Former::close() !!}
|
|
|
|
{!! Former::open("{$entityType}s/bulk")->addClass('bulkForm') !!}
|
|
{!! Former::populateField('bulk_public_id', $invoice->public_id) !!}
|
|
<span style="display:none">
|
|
{!! Former::text('bulk_public_id') !!}
|
|
{!! Former::text('bulk_action') !!}
|
|
</span>
|
|
{!! Former::close() !!}
|
|
|
|
</div>
|
|
|
|
@include('invoices.knockout')
|
|
|
|
<script type="text/javascript">
|
|
|
|
var products = {!! $products !!};
|
|
var clients = {!! $clients !!};
|
|
var account = {!! Auth::user()->account !!};
|
|
|
|
var clientMap = {};
|
|
var $clientSelect = $('select#client');
|
|
var invoiceDesigns = {!! $invoiceDesigns !!};
|
|
|
|
$(function() {
|
|
// create client dictionary
|
|
for (var i=0; i<clients.length; i++) {
|
|
var client = clients[i];
|
|
var clientName = getClientDisplayName(client);
|
|
for (var j=0; j<client.contacts.length; j++) {
|
|
var contact = client.contacts[j];
|
|
var contactName = getContactDisplayName(contact);
|
|
if (contact.is_primary === '1') {
|
|
contact.send_invoice = true;
|
|
}
|
|
if (clientName != contactName) {
|
|
$clientSelect.append(new Option(contactName, client.public_id));
|
|
}
|
|
}
|
|
clientMap[client.public_id] = client;
|
|
$clientSelect.append(new Option(clientName, client.public_id));
|
|
}
|
|
|
|
@if ($data)
|
|
// this means we failed so we'll reload the previous state
|
|
window.model = new ViewModel({!! $data !!});
|
|
@else
|
|
// otherwise create blank model
|
|
window.model = new ViewModel();
|
|
|
|
// load the tax rates
|
|
@foreach ($taxRates as $taxRate)
|
|
model.addTaxRate({!! $taxRate !!});
|
|
@endforeach
|
|
|
|
var invoice = {!! $invoice !!};
|
|
ko.mapping.fromJS(invoice, model.invoice().mapping, model.invoice);
|
|
model.invoice().is_recurring({{ $invoice->is_recurring ? '1' : '0' }});
|
|
|
|
@if ($invoice->id)
|
|
var invitationContactIds = {!! json_encode($invitationContactIds) !!};
|
|
var client = clientMap[invoice.client.public_id];
|
|
if (client) { // in case it's deleted
|
|
for (var i=0; i<client.contacts.length; i++) {
|
|
var contact = client.contacts[i];
|
|
contact.send_invoice = invitationContactIds.indexOf(contact.public_id) >= 0;
|
|
}
|
|
}
|
|
model.invoice().addItem(); // add blank item
|
|
@else
|
|
model.invoice().custom_taxes1({{ $account->custom_invoice_taxes1 ? 'true' : 'false' }});
|
|
model.invoice().custom_taxes2({{ $account->custom_invoice_taxes2 ? 'true' : 'false' }});
|
|
// set the default account tax rate
|
|
@if ($account->invoice_taxes && $account->default_tax_rate_id)
|
|
model.invoice().tax(model.getTaxRateById({{ $account->default_tax_rate ? $account->default_tax_rate->public_id : '' }}));
|
|
@endif
|
|
@endif
|
|
|
|
@if (isset($tasks) && $tasks)
|
|
// move the blank invoice line item to the end
|
|
var blank = model.invoice().invoice_items.pop();
|
|
var tasks = {!! $tasks !!};
|
|
|
|
for (var i=0; i<tasks.length; i++) {
|
|
var task = tasks[i];
|
|
var item = model.invoice().addItem();
|
|
item.notes(task.description);
|
|
item.qty(task.duration);
|
|
item.task_public_id(task.publicId);
|
|
}
|
|
model.invoice().invoice_items.push(blank);
|
|
model.invoice().has_tasks(true);
|
|
@endif
|
|
@endif
|
|
|
|
model.invoice().tax(model.getTaxRate(model.invoice().tax_name(), model.invoice().tax_rate()));
|
|
for (var i=0; i<model.invoice().invoice_items().length; i++) {
|
|
var item = model.invoice().invoice_items()[i];
|
|
item.tax(model.getTaxRate(item.tax_name(), item.tax_rate()));
|
|
item.cost(NINJA.parseFloat(item.cost()) != 0 ? roundToTwo(item.cost(), true) : '');
|
|
}
|
|
|
|
// display blank instead of '0'
|
|
if (!NINJA.parseFloat(model.invoice().discount())) model.invoice().discount('');
|
|
if (!NINJA.parseFloat(model.invoice().partial())) model.invoice().partial('');
|
|
if (!model.invoice().custom_value1()) model.invoice().custom_value1('');
|
|
if (!model.invoice().custom_value2()) model.invoice().custom_value2('');
|
|
|
|
ko.applyBindings(model);
|
|
onItemChange();
|
|
|
|
|
|
$('#country_id').combobox().on('change', function(e) {
|
|
var countryId = $('input[name=country_id]').val();
|
|
var country = _.findWhere(countries, {id: countryId});
|
|
if (country) {
|
|
model.invoice().client().country = country;
|
|
model.invoice().client().country_id(countryId);
|
|
} else {
|
|
model.invoice().client().country = false;
|
|
model.invoice().client().country_id(0);
|
|
}
|
|
});
|
|
|
|
$('[rel=tooltip]').tooltip({'trigger':'manual'});
|
|
|
|
$('#invoice_date, #due_date, #start_date, #end_date, #last_sent_date').datepicker();
|
|
|
|
@if ($invoice->client && !$invoice->id)
|
|
$('input[name=client]').val({{ $invoice->client->public_id }});
|
|
@endif
|
|
|
|
var $input = $('select#client');
|
|
$input.combobox().on('change', function(e) {
|
|
var clientId = parseInt($('input[name=client]').val(), 10);
|
|
if (clientId > 0) {
|
|
var selected = clientMap[clientId];
|
|
model.loadClient(selected);
|
|
// we enable searching by contact but the selection must be the client
|
|
$('.client-input').val(getClientDisplayName(selected));
|
|
// if there's an invoice number pattern we'll apply it now
|
|
setInvoiceNumber(selected);
|
|
} else {
|
|
model.loadClient($.parseJSON(ko.toJSON(new ClientModel())));
|
|
model.invoice().client().country = false;
|
|
}
|
|
refreshPDF(true);
|
|
});
|
|
|
|
// If no clients exists show the client form when clicking on the client select input
|
|
if (clients.length === 0) {
|
|
$('.client_select input.form-control').on('click', function() {
|
|
model.showClientForm();
|
|
});
|
|
}
|
|
|
|
$('#invoice_footer, #terms, #public_notes, #invoice_number, #invoice_date, #due_date, #start_date, #po_number, #discount, #currency_id, #invoice_design_id, #recurring, #is_amount_discount, #partial, #custom_text_value1, #custom_text_value2').change(function() {
|
|
setTimeout(function() {
|
|
refreshPDF(true);
|
|
}, 1);
|
|
});
|
|
|
|
$('.frequency_id .input-group-addon').click(function() {
|
|
showLearnMore();
|
|
});
|
|
|
|
var fields = ['invoice_date', 'due_date', 'start_date', 'end_date', 'last_sent_date'];
|
|
for (var i=0; i<fields.length; i++) {
|
|
var field = fields[i];
|
|
(function (_field) {
|
|
$('.' + _field + ' .input-group-addon').click(function() {
|
|
toggleDatePicker(_field);
|
|
});
|
|
})(field);
|
|
}
|
|
|
|
@if ($invoice->id || count($clients) == 0)
|
|
$('#invoice_number').focus();
|
|
@else
|
|
$('.client_select input.form-control').focus();
|
|
@endif
|
|
|
|
$('#clientModal').on('shown.bs.modal', function () {
|
|
$('#client\\[name\\]').focus();
|
|
}).on('hidden.bs.modal', function () {
|
|
if (model.clientBackup) {
|
|
model.loadClient(model.clientBackup);
|
|
refreshPDF(true);
|
|
}
|
|
})
|
|
|
|
$('#relatedActions > button:first').click(function() {
|
|
onPaymentClick();
|
|
});
|
|
|
|
$('label.radio').addClass('radio-inline');
|
|
|
|
applyComboboxListeners();
|
|
|
|
@if ($invoice->client->id)
|
|
$input.trigger('change');
|
|
@else
|
|
refreshPDF(true);
|
|
@endif
|
|
|
|
var client = model.invoice().client();
|
|
setComboboxValue($('.client_select'),
|
|
client.public_id(),
|
|
client.name.display());
|
|
|
|
@if (isset($tasks) && $tasks)
|
|
NINJA.formIsChanged = true;
|
|
@endif
|
|
});
|
|
|
|
function applyComboboxListeners() {
|
|
var selectorStr = '.invoice-table input, .invoice-table select, .invoice-table textarea';
|
|
$(selectorStr).off('blur').on('blur', function() {
|
|
refreshPDF(true);
|
|
});
|
|
|
|
$('textarea').on('keyup focus', function(e) {
|
|
while($(this).outerHeight() < this.scrollHeight + parseFloat($(this).css("borderTopWidth")) + parseFloat($(this).css("borderBottomWidth"))) {
|
|
$(this).height($(this).height()+1);
|
|
};
|
|
});
|
|
|
|
@if (Auth::user()->account->fill_products)
|
|
$('.datalist').on('input', function() {
|
|
var key = $(this).val();
|
|
for (var i=0; i<products.length; i++) {
|
|
var product = products[i];
|
|
if (product.product_key == key) {
|
|
var model = ko.dataFor(this);
|
|
if (product.notes) {
|
|
model.notes(product.notes);
|
|
}
|
|
model.cost(accounting.toFixed(product.cost,2));
|
|
if (!model.qty()) {
|
|
model.qty(1);
|
|
}
|
|
@if ($account->invoice_item_taxes)
|
|
if (product.default_tax_rate) {
|
|
model.tax(self.model.getTaxRateById(product.default_tax_rate.public_id));
|
|
}
|
|
@endif
|
|
break;
|
|
}
|
|
}
|
|
onItemChange();
|
|
refreshPDF();
|
|
});
|
|
@endif
|
|
}
|
|
|
|
function createInvoiceModel() {
|
|
var invoice = ko.toJS(window.model).invoice;
|
|
invoice.is_pro = {{ Auth::user()->isPro() ? 'true' : 'false' }};
|
|
invoice.is_quote = {{ $entityType == ENTITY_QUOTE ? 'true' : 'false' }};
|
|
invoice.contact = _.findWhere(invoice.client.contacts, {send_invoice: true});
|
|
|
|
if (invoice.is_recurring) {
|
|
invoice.invoice_number = '0000';
|
|
if (invoice.start_date) {
|
|
invoice.invoice_date = invoice.start_date;
|
|
}
|
|
}
|
|
|
|
@if (!$invoice->id)
|
|
if (!invoice.terms) {
|
|
invoice.terms = account['{{ $entityType }}_terms'];
|
|
}
|
|
if (!invoice.invoice_footer) {
|
|
invoice.invoice_footer = account['invoice_footer'];
|
|
}
|
|
@endif
|
|
|
|
@if (file_exists($account->getLogoPath()))
|
|
invoice.image = "{{ HTML::image_data($account->getLogoPath()) }}";
|
|
invoice.imageWidth = {{ $account->getLogoWidth() }};
|
|
invoice.imageHeight = {{ $account->getLogoHeight() }};
|
|
@endif
|
|
|
|
//invoiceLabels.item = invoice.has_tasks ? invoiceLabels.date : invoiceLabels.item_orig;
|
|
invoiceLabels.quantity = invoice.has_tasks ? invoiceLabels.hours : invoiceLabels.quantity_orig;
|
|
invoiceLabels.unit_cost = invoice.has_tasks ? invoiceLabels.rate : invoiceLabels.unit_cost_orig;
|
|
|
|
return invoice;
|
|
}
|
|
|
|
function getPDFString(cb, force) {
|
|
var invoice = createInvoiceModel();
|
|
var design = getDesignJavascript();
|
|
if (!design) return;
|
|
generatePDF(invoice, design, force, cb);
|
|
}
|
|
|
|
function getDesignJavascript() {
|
|
var id = $('#invoice_design_id').val();
|
|
if (id == '-1') {
|
|
showMoreDesigns();
|
|
model.invoice().invoice_design_id(1);
|
|
return invoiceDesigns[0].javascript;
|
|
} else {
|
|
var design = _.find(invoiceDesigns, function(design){ return design.id == id});
|
|
return design ? design.javascript : '';
|
|
}
|
|
}
|
|
|
|
function resetTerms() {
|
|
if (confirm('{!! trans("texts.are_you_sure") !!}')) {
|
|
model.invoice().terms(model.invoice().default_terms());
|
|
refreshPDF();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
function resetFooter() {
|
|
if (confirm('{!! trans("texts.are_you_sure") !!}')) {
|
|
model.invoice().invoice_footer(model.invoice().default_footer());
|
|
refreshPDF();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
function onDownloadClick() {
|
|
trackEvent('/activity', '/download_pdf');
|
|
var invoice = createInvoiceModel();
|
|
var design = getDesignJavascript();
|
|
if (!design) return;
|
|
var doc = generatePDF(invoice, design, true);
|
|
var type = invoice.is_quote ? '{{ trans('texts.'.ENTITY_QUOTE) }}' : '{{ trans('texts.'.ENTITY_INVOICE) }}';
|
|
doc.save(type +'-' + $('#invoice_number').val() + '.pdf');
|
|
}
|
|
|
|
function onEmailClick() {
|
|
if (!isEmailValid()) {
|
|
alert("{!! trans('texts.provide_email') !!}");
|
|
return;
|
|
}
|
|
|
|
if (!NINJA.isRegistered) {
|
|
alert("{!! trans('texts.registration_required') !!}");
|
|
return;
|
|
}
|
|
|
|
if (confirm('{!! trans("texts.confirm_email_$entityType") !!}' + '\n\n' + getSendToEmails())) {
|
|
preparePdfData('email');
|
|
}
|
|
}
|
|
|
|
function onSaveClick() {
|
|
if (model.invoice().is_recurring() && {{ $invoice ? 'false' : 'true' }}) {
|
|
if (confirm("{!! trans("texts.confirm_recurring_email_$entityType") !!}" + '\n\n' + getSendToEmails() + '\n' + "{!! trans("texts.confirm_recurring_timing") !!}")) {
|
|
submitAction('');
|
|
}
|
|
} else {
|
|
preparePdfData('');
|
|
}
|
|
}
|
|
|
|
function getSendToEmails() {
|
|
var client = model.invoice().client();
|
|
var parts = [];
|
|
|
|
for (var i=0; i<client.contacts().length; i++) {
|
|
var contact = client.contacts()[i];
|
|
if (contact.send_invoice()) {
|
|
parts.push(contact.displayName());
|
|
}
|
|
}
|
|
|
|
return parts.join('\n');
|
|
}
|
|
|
|
function preparePdfData(action) {
|
|
var invoice = createInvoiceModel();
|
|
var design = getDesignJavascript();
|
|
if (!design) return;
|
|
|
|
doc = generatePDF(invoice, design, true);
|
|
doc.getDataUrl( function(pdfString){
|
|
$('#pdfupload').val(pdfString);
|
|
submitAction(action);
|
|
});
|
|
}
|
|
|
|
function submitAction(value) {
|
|
if (!isSaveValid()) {
|
|
model.showClientForm();
|
|
return;
|
|
}
|
|
onPartialChange(true);
|
|
$('#action').val(value);
|
|
$('#submitButton').click();
|
|
}
|
|
|
|
function submitBulkAction(value) {
|
|
$('#bulk_action').val(value);
|
|
$('.bulkForm').submit();
|
|
}
|
|
|
|
function isSaveValid() {
|
|
var isValid = false;
|
|
for (var i=0; i<model.invoice().client().contacts().length; i++) {
|
|
var contact = model.invoice().client().contacts()[i];
|
|
if (isValidEmailAddress(contact.email()) || contact.first_name()) {
|
|
isValid = true;
|
|
} else {
|
|
isValid = false;
|
|
break;
|
|
}
|
|
}
|
|
return isValid;
|
|
}
|
|
|
|
function isEmailValid() {
|
|
var isValid = true;
|
|
var sendTo = false;
|
|
var client = model.invoice().client();
|
|
for (var i=0; i<client.contacts().length; i++) {
|
|
var contact = client.contacts()[i];
|
|
if ( ! contact.send_invoice()) {
|
|
continue;
|
|
}
|
|
if (isValidEmailAddress(contact.email())) {
|
|
isValid = true;
|
|
sendTo = true;
|
|
} else {
|
|
isValid = false;
|
|
break;
|
|
}
|
|
}
|
|
return (isValid && sendTo)
|
|
}
|
|
|
|
function onMarkClick() {
|
|
submitBulkAction('markSent');
|
|
}
|
|
|
|
function onCloneClick() {
|
|
submitAction('clone');
|
|
}
|
|
|
|
function onConvertClick() {
|
|
submitAction('convert');
|
|
}
|
|
|
|
@if ($invoice->id)
|
|
function onPaymentClick() {
|
|
window.location = '{{ URL::to('payments/create/' . $invoice->client->public_id . '/' . $invoice->public_id ) }}';
|
|
}
|
|
|
|
function onCreditClick() {
|
|
window.location = '{{ URL::to('credits/create/' . $invoice->client->public_id . '/' . $invoice->public_id ) }}';
|
|
}
|
|
@endif
|
|
|
|
function onArchiveClick() {
|
|
submitBulkAction('archive');
|
|
}
|
|
|
|
function onDeleteClick() {
|
|
if (confirm('{!! trans("texts.are_you_sure") !!}')) {
|
|
submitBulkAction('delete');
|
|
}
|
|
}
|
|
|
|
function formEnterClick(event) {
|
|
if (event.keyCode === 13){
|
|
if (event.target.type == 'textarea') {
|
|
return;
|
|
}
|
|
event.preventDefault();
|
|
|
|
@if($invoice->trashed())
|
|
return;
|
|
@endif
|
|
submitAction('');
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function clientModalEnterClick(event) {
|
|
if (event.keyCode === 13){
|
|
event.preventDefault();
|
|
model.clientFormComplete();
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function onItemChange()
|
|
{
|
|
var hasEmpty = false;
|
|
for(var i=0; i<model.invoice().invoice_items().length; i++) {
|
|
var item = model.invoice().invoice_items()[i];
|
|
if (item.isEmpty()) {
|
|
hasEmpty = true;
|
|
}
|
|
}
|
|
|
|
if (!hasEmpty) {
|
|
model.invoice().addItem();
|
|
}
|
|
}
|
|
|
|
function onPartialChange(silent)
|
|
{
|
|
var val = NINJA.parseFloat($('#partial').val());
|
|
var oldVal = val;
|
|
val = Math.max(Math.min(val, model.invoice().totals.rawTotal()), 0);
|
|
model.invoice().partial(val || '');
|
|
|
|
if (!silent && val != oldVal) {
|
|
$('#partial').tooltip('show');
|
|
setTimeout(function() {
|
|
$('#partial').tooltip('hide');
|
|
}, 5000);
|
|
}
|
|
}
|
|
|
|
function onRecurringEnabled()
|
|
{
|
|
if ($('#recurring').prop('checked')) {
|
|
$('#emailButton').attr('disabled', true);
|
|
model.invoice().partial('');
|
|
} else {
|
|
$('#emailButton').removeAttr('disabled');
|
|
}
|
|
}
|
|
|
|
function showLearnMore() {
|
|
$('#recurringModal').modal('show');
|
|
}
|
|
|
|
function setInvoiceNumber(client) {
|
|
@if ($invoice->id || !$account->hasClientNumberPattern($invoice))
|
|
return;
|
|
@endif
|
|
var number = '{{ $account->getNumberPattern($invoice) }}';
|
|
number = number.replace('{$custom1}', client.custom_value1);
|
|
number = number.replace('{$custom2}', client.custom_value2);
|
|
model.invoice().invoice_number(number);
|
|
}
|
|
|
|
</script>
|
|
|
|
@stop
|