getClientId($data->client)) { return false; } if ($this->hasInvoice($data->document_no)) { return false; } return new Item($data, function ($data) { return [ 'client_id' => $this->getClientId($data->client), 'invoice_number' => $this->getInvoiceNumber($data->document_no), 'paid' => (float) $data->paid_to_date, 'po_number' => $this->getString($data, 'purchase_order'), 'terms' => $this->getString($data, 'terms'), 'public_notes' => $this->getString($data, 'notes'), 'invoice_date_sql' => $this->getDate($data->date), 'due_date_sql' => $this->getDate($data->due_date), 'invoice_items' => [ [ 'product_key' => '', 'notes' => $this->getString($data, 'description'), 'cost' => (float) $data->total, 'qty' => 1, ] ], ]; }); } }