2014-04-23 22:30:54 +02:00
|
|
|
@extends('accounts.nav')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
@parent
|
|
|
|
|
2014-04-23 23:48:09 +02:00
|
|
|
{{ Former::open($url)->method($method)->addClass('col-md-8 col-md-offset-2 warn-on-exit') }}
|
2014-04-23 22:30:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
{{ Former::legend($title) }}
|
|
|
|
|
|
|
|
@if ($product)
|
|
|
|
{{ Former::populate($product) }}
|
|
|
|
{{ Former::populateField('cost', number_format($product->cost, 2)) }}
|
|
|
|
@endif
|
|
|
|
|
2014-04-25 11:11:20 +02:00
|
|
|
{{ Former::text('product_key')->label('texts.product') }}
|
2014-04-23 23:48:09 +02:00
|
|
|
{{ Former::textarea('notes')->data_bind("value: wrapped_notes, valueUpdate: 'afterkeydown'") }}
|
2014-04-23 22:30:54 +02:00
|
|
|
{{ Former::text('cost') }}
|
|
|
|
|
|
|
|
{{ Former::actions(
|
|
|
|
Button::lg_success_submit(trans('texts.save'))->append_with_icon('floppy-disk'),
|
|
|
|
Button::lg_default_link('company/products', 'Cancel')->append_with_icon('remove-circle')
|
|
|
|
) }}
|
|
|
|
|
|
|
|
{{ Former::close() }}
|
|
|
|
|
2014-04-23 23:48:09 +02:00
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
function ViewModel(data) {
|
|
|
|
var self = this;
|
|
|
|
@if ($product)
|
|
|
|
self.notes = ko.observable(wordWrapText('{{ str_replace(["\r\n","\r","\n"], '\n', addslashes($product->notes)) }}', 300));
|
|
|
|
@else
|
|
|
|
self.notes = ko.observable('');
|
|
|
|
@endif
|
|
|
|
|
|
|
|
self.wrapped_notes = ko.computed({
|
|
|
|
read: function() {
|
|
|
|
return self.notes();
|
|
|
|
},
|
|
|
|
write: function(value) {
|
|
|
|
value = wordWrapText(value, 235);
|
|
|
|
self.notes(value);
|
|
|
|
},
|
|
|
|
owner: this
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
window.model = new ViewModel();
|
|
|
|
ko.applyBindings(model);
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
2014-04-23 22:30:54 +02:00
|
|
|
@stop
|