@extends('header') @section('head') @parent @stop @section('content')

 

{{ Former::open($url)->method($method)->addClass('main_form')->rules(array( 'client' => 'required', 'email' => 'required', 'product_key' => 'max:14', )); }}
@if ($invoice && $invoice->isSent())
@endif {{ Former::select('client')->addOption('', '')->data_bind("dropdown: client") ->addGroupClass('client_select closer-row') }}
@if ($invoice && $invoice->isSent())
@endif
{{ Former::textarea('terms')->data_bind("value: wrapped_terms, valueUpdate: 'afterkeydown'") }} {{ Former::textarea('public_notes')->data_bind("value: wrapped_notes, valueUpdate: 'afterkeydown'") }}
{{ Former::text('invoice_number')->label('Invoice #')->data_bind("value: invoice_number, valueUpdate: 'afterkeydown'") }} {{ Former::text('invoice_date')->data_bind("value: invoice_date, valueUpdate: 'afterkeydown'")->data_date_format(DEFAULT_DATE_PICKER_FORMAT) }} {{ Former::text('due_date')->data_bind("value: due_date, valueUpdate: 'afterkeydown'")->data_date_format(DEFAULT_DATE_PICKER_FORMAT) }}
{{ Former::select('frequency_id')->label('How often')->options($frequencies)->data_bind("value: frequency_id") }} {{ Former::text('start_date')->data_bind("value: start_date, valueUpdate: 'afterkeydown'")->data_date_format(DEFAULT_DATE_PICKER_FORMAT) }} {{ Former::text('end_date')->data_bind("value: end_date, valueUpdate: 'afterkeydown'")->data_date_format(DEFAULT_DATE_PICKER_FORMAT) }}
@if ($invoice && $invoice->recurring_invoice_id)
Created by a {{ link_to('/invoices/'.$invoice->recurring_invoice_id, 'recurring invoice') }}
@else
{{ Former::checkbox('recurring')->text('Enable | Learn more')->data_bind("checked: is_recurring") ->inlineHelp($invoice && $invoice->last_sent_date ? 'Last invoice sent ' . Utils::dateToString($invoice->last_sent_date) : '') }}
@endif
{{ Former::text('po_number')->label('PO number')->data_bind("value: po_number, valueUpdate: 'afterkeydown'") }} {{ Former::text('discount')->data_bind("value: discount, valueUpdate: 'afterkeydown'") }} {{ Former::select('currency_id')->label('Currency')->fromQuery($currencies, 'name', 'id')->data_bind("value: currency_id") }}

 

{{ Former::hidden('data')->data_bind("value: ko.toJSON(model)") }}
Item Description Unit Cost Quantity Tax Line Total
{{ Former::text('product_key')->useDatalist(Product::getProductKeys($products), 'key')->onkeyup('onItemChange()') ->raw()->data_bind("value: product_key, valueUpdate: 'afterkeydown'")->addClass('datalist') }}  
Subtotal
Discount
Paid to Date
Balance Due

 

{{ Former::text('action') }} @if ($invoice) {{ Former::text('id') }} @endif
{{ Button::normal('Download PDF', array('onclick' => 'onDownloadClick()')) }} @if ($invoice) {{ DropdownButton::primary('Save Invoice', Navigation::links( array( array('Save Invoice', "javascript:onSaveClick()"), array('Clone Invoice', "javascript:onCloneClick()"), array(Navigation::DIVIDER), array('Archive Invoice', "javascript:onArchiveClick()"), array('Delete Invoice', "javascript:onDeleteClick()"), ) ) , array('id'=>'actionDropDown','style'=>'text-align:left'))->split(); }} @else {{ Button::primary_submit('Save Invoice') }} @endif {{ Button::primary('Send Email', array('id' => 'email_button', 'onclick' => 'onEmailClick()')) }}

 

{{ Former::close() }} @stop