@http.put(@saveURL, @toServerFormat())
.success (data) ->
@loadJobInvoiceItems data.job_invoice.items
JobInvoice.prototype.save = function(doNotifyOfSave) {
return this.http.put(this.saveURL, this.toServerFormat()).success(function(data) {
this.loadJobInvoiceItems(data.job_invoice.items);
if (doNotifyOfSave && typeof notifyOfSave === "function") {
return notifyOfSave(this.job.id);
}