mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
169 lines
4.9 KiB
PHP
169 lines
4.9 KiB
PHP
@extends('header')
|
|
|
|
|
|
@section('onReady')
|
|
$('input#name').focus();
|
|
@stop
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<!--<h3>{{ $title }} Client</h3>-->
|
|
|
|
{!! Former::open($url)->addClass('col-md-12 warn-on-exit')->method($method)->rules(array(
|
|
'email' => 'email|required'
|
|
)); !!}
|
|
|
|
@if ($client)
|
|
{!! Former::populate($client) !!}
|
|
@endif
|
|
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
|
|
|
|
{!! Former::legend('organization') !!}
|
|
{!! Former::text('name')->data_bind("attr { placeholder: placeholderName }") !!}
|
|
{!! Former::text('id_number') !!}
|
|
{!! Former::text('vat_number') !!}
|
|
{!! Former::text('website') !!}
|
|
{!! Former::text('work_phone') !!}
|
|
|
|
@if (Auth::user()->isPro())
|
|
@if ($customLabel1)
|
|
{!! Former::text('custom_value1')->label($customLabel1) !!}
|
|
@endif
|
|
@if ($customLabel2)
|
|
{!! Former::text('custom_value2')->label($customLabel2) !!}
|
|
@endif
|
|
@endif
|
|
|
|
{!! Former::legend('address') !!}
|
|
{!! Former::text('address1') !!}
|
|
{!! Former::text('address2') !!}
|
|
{!! Former::text('city') !!}
|
|
{!! Former::text('state') !!}
|
|
{!! Former::text('postal_code') !!}
|
|
{!! Former::select('country_id')->addOption('','')
|
|
->fromQuery($countries, 'name', 'id') !!}
|
|
|
|
|
|
</div>
|
|
<div class="col-md-6">
|
|
|
|
{!! Former::legend('contacts') !!}
|
|
<div data-bind='template: { foreach: contacts,
|
|
beforeRemove: hideContact,
|
|
afterAdd: showContact }'>
|
|
{!! Former::hidden('public_id')->data_bind("value: public_id, valueUpdate: 'afterkeydown'") !!}
|
|
{!! Former::text('first_name')->data_bind("value: first_name, valueUpdate: 'afterkeydown'") !!}
|
|
{!! Former::text('last_name')->data_bind("value: last_name, valueUpdate: 'afterkeydown'") !!}
|
|
{!! Former::text('email')->data_bind('value: email, valueUpdate: \'afterkeydown\', attr: {id:\'email\'+$index()}') !!}
|
|
{!! Former::text('phone')->data_bind("value: phone, valueUpdate: 'afterkeydown'") !!}
|
|
|
|
<div class="form-group">
|
|
<div class="col-lg-8 col-lg-offset-4 bold">
|
|
<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('onclick'=>'return addContact()')) !!}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{!! Former::legend('additional_info') !!}
|
|
{!! Former::select('payment_terms')->addOption('','')
|
|
->fromQuery($paymentTerms, 'name', 'num_days') !!}
|
|
{!! Former::select('currency_id')->addOption('','')
|
|
->fromQuery($currencies, 'name', 'id') !!}
|
|
{!! Former::select('size_id')->addOption('','')
|
|
->fromQuery($sizes, 'name', 'id') !!}
|
|
{!! Former::select('industry_id')->addOption('','')
|
|
->fromQuery($industries, 'name', 'id') !!}
|
|
{!! Former::textarea('private_notes') !!}
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{!! Former::hidden('data')->data_bind("value: ko.toJSON(model)") !!}
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
$('#country_id').combobox();
|
|
});
|
|
|
|
function ContactModel(data) {
|
|
var self = this;
|
|
self.public_id = ko.observable('');
|
|
self.first_name = ko.observable('');
|
|
self.last_name = ko.observable('');
|
|
self.email = ko.observable('');
|
|
self.phone = ko.observable('');
|
|
|
|
if (data) {
|
|
ko.mapping.fromJS(data, {}, this);
|
|
}
|
|
}
|
|
|
|
function ContactsModel(data) {
|
|
var self = this;
|
|
self.contacts = ko.observableArray();
|
|
|
|
self.mapping = {
|
|
'contacts': {
|
|
create: function(options) {
|
|
return new ContactModel(options.data);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (data) {
|
|
ko.mapping.fromJS(data, self.mapping, this);
|
|
} else {
|
|
self.contacts.push(new ContactModel());
|
|
}
|
|
|
|
self.placeholderName = ko.computed(function() {
|
|
if (self.contacts().length == 0) return '';
|
|
var contact = self.contacts()[0];
|
|
if (contact.first_name() || contact.last_name()) {
|
|
return contact.first_name() + ' ' + contact.last_name();
|
|
} else {
|
|
return contact.email();
|
|
}
|
|
});
|
|
}
|
|
|
|
window.model = new ContactsModel({!! $client !!});
|
|
|
|
model.showContact = function(elem) { if (elem.nodeType === 1) $(elem).hide().slideDown() }
|
|
model.hideContact = function(elem) { if (elem.nodeType === 1) $(elem).slideUp(function() { $(elem).remove(); }) }
|
|
|
|
|
|
ko.applyBindings(model);
|
|
|
|
function addContact() {
|
|
model.contacts.push(new ContactModel());
|
|
return false;
|
|
}
|
|
|
|
model.removeContact = function() {
|
|
model.contacts.remove(this);
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
<center class="buttons">
|
|
{!! Button::success(trans('texts.save'))->submit()->large()->appendIcon(Icon::create('floppy-disk')) !!}
|
|
{!! Button::normal(trans('texts.cancel'))->large()->asLinkTo('/clients/' . ($client ? $client->public_id : ''))->appendIcon(Icon::create('remove-circle')) !!}
|
|
</center>
|
|
|
|
{!! Former::close() !!}
|
|
</div>
|
|
@stop
|