1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00

Updated readme

This commit is contained in:
Hillel Coren 2016-11-13 23:47:51 +02:00
parent 712fe3f03a
commit 94890af980
2 changed files with 5 additions and 4 deletions

View File

@ -57,14 +57,16 @@ Watch our [video on YouTube](https://www.youtube.com/watch?v=xHGKvadapbA) to get
* [D3.js](http://d3js.org/) visualizations
## Documentation
* [Ubuntu and Apache](http://blog.technerdservices.com/index.php/2015/04/techpop-how-to-install-invoice-ninja-on-ubuntu-14-04/)
* [Debian and Nginx](https://www.rosehosting.com/blog/install-invoice-ninja-on-a-debian-7-vps/)
* [Self Host Guide](https://www.invoiceninja.com/self-host)
* [User Guide](http://docs.invoiceninja.com/en/latest/)
* [Developer Guide](https://www.invoiceninja.com/knowledgebase/developer-guide/)
* [API Documentation](https://www.invoiceninja.com/api-documentation/)
* [Support Forum](https://www.invoiceninja.com/forums/forum/support/)
* [Feature Roadmap](https://trello.com/b/63BbiVVe/)
## API
* [API Documentation](https://www.invoiceninja.com/api-documentation/)
* [PHP SDK](https://github.com/invoiceninja/sdk-php)
## Contributing
All contributors are welcome!
For information on how contribute to Invoice Ninja, please see our [contributing guide](CONTRIBUTING.md).

View File

@ -11,7 +11,6 @@ class InvoiceItemTransformer extends EntityTransformer
'product_key' => $item->product_key,
'updated_at' => $this->getTimestamp($item->updated_at),
'archived_at' => $this->getTimestamp($item->deleted_at),
'product_key' => $item->product_key,
'notes' => $item->notes,
'cost' => (float) $item->cost,
'qty' => (float) $item->qty,