Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content

Invoice Ninja

63 Topics 971 Posts
  • The crons need to be enabled

    7
    +0
    0 Votes
    7 Posts
    1k Views
    nebulonN
    @nickm not that I am aware of any difference here, but also I am not sure what all is involved with regards to such an import.
  • VAT calculation not exact

    3
    +2
    0 Votes
    3 Posts
    556 Views
    martinkbsM
    Hi @fbartels, Yes, it is actually a fairly frequent question that remains unsolved since Invoice Ninja version 4.X. They promised to fix this bug in version 5.X, but it still remains unsolved (https://forum.invoiceninja.com/t/invoice-rounding-amounts-not-limited-to-2-decimal-places/3978) I have posted it here, in case someone in the community had the same thing and had found a way to solve it. Surely you have to touch some .php file that controls the rounding of taxes, but they are not accessible in the Cloudron package. For example: /tests/acceptance/TaxRatesCest.php $total = $itemCost; $total += round($itemCost * $invoiceTaxRate / 100, 2); /app/Models/Invoice.php /** * @param $invoiceItem * @param $invoiceTotal * * @return float|int */ public function getItemTaxable($invoiceItem, $invoiceTotal) { $total = $invoiceItem->qty * $invoiceItem->cost; if ($this->discount != 0) { if ($this->is_amount_discount) { if ($invoiceTotal + $this->discount != 0) { $total -= $invoiceTotal ? ($total / ($invoiceTotal + $this->discount) * $this->discount) : 0; } } else { $total *= (100 - $this->discount) / 100; } } if ($invoiceItem->discount != 0) { if ($this->is_amount_discount) { $total -= $invoiceItem->discount; } else { $total -= $total * $invoiceItem->discount / 100; } } return round($total, 2); } [image: 1628337460490-5abc0208-75ae-47c4-a6ea-1ad887501672-image-resized.png] If someone has found how to solve it ...
  • Tasks are not visible in clientportal

    Solved
    6
    0 Votes
    6 Posts
    711 Views
    Enabl.istE
    @nebulon seems to be fixed after last update of invoiceninja V5 in Cloudron. It looks related to https://forum.invoiceninja.com/t/tasks-not-visible-in-the-client-portal/5941/13 Thanks!
  • InvoiceNinja 5 Failing after Update on Migrations

    Moved
    1
    0 Votes
    1 Posts
    172 Views
    No one has replied
  • IN Dashboard Notice to Upgrade - No Option In Control Panel

    Unsolved
    3
    0 Votes
    3 Posts
    495 Views
    nebulonN
    The new app package is out. I will leave this topic as unsolved since we still need to figure out how to disable the update notification from within the app.
  • InvoiceNinja cron not enabled

    Solved
    19
    1 Votes
    19 Posts
    4k Views
    T
    Confirmation of resolution. Issue is fixed.
  • Path To Project on Cloudron

    Locked Solved
    6
    0 Votes
    6 Posts
    889 Views
    nebulonN
    @telos-one as far as I can tell from my previous investigation, this is just a warning initially for some time and it goes away. The tasks as such are run. Anyways I will lock this topic, so we don't end up with 2 threads about the same thing.
  • Invoice Ninja 5 (beta)

    Locked Solved
    48
    5 Votes
    48 Posts
    5k Views
    nebulonN
    I will lock this thread, further updates are now posted in the main news topic of this section.
  • Invoice Ninja 5 Mail

    Solved
    4
    1 Votes
    4 Posts
    729 Views
    S
    @nebulon Awesome, working fine now. Thanks a lot!
  • Direct Access to App's mysql database

    Moved
    4
    1 Votes
    4 Posts
    1k Views
    doodlemania2D
    @mdreira it's in the environment variables of each installation - just go to the cli of the app and you'll see them there!
  • Admin user for InvoiceNinja

    Solved
    5
    0 Votes
    5 Posts
    1k Views
    scookeS
    OK, well thank you!
  • v5 Stable + Early Access Desktop Apps

    2
    +4
    3 Votes
    2 Posts
    355 Views
    girishG
    @marcusquinn Awesome news! Looks like we still have to wait for Q2 2021 for a stable release I hope the migration from v4 to v5 is smooth.
  • API pricing?

    2
    0 Votes
    2 Posts
    447 Views
    subvenS
    [image: 1605709027577-2020-11-18-15_16_49-api-token-_-invoice-ninja-resized.png] Seems to be no problem. API documentation --> https://invoice-ninja.readthedocs.io/en/latest/api.html
  • Can't edit invoices in Safari 14?

    19
    +0
    0 Votes
    19 Posts
    2k Views
    d19dotcaD
    Doesn't seem like anyone else is having this issue, but for anyone who may come across this in the future, I filed a GitHub issue here upstream: https://github.com/invoiceninja/invoiceninja/issues/4305
  • CRON Logs (cron.log) missing for InvoiceNinja

    Moved Solved
    7
    +0
    0 Votes
    7 Posts
    949 Views
    girishG
    @tamayers I pushed a new package. You can customize the cron via /app/data/crontab. Just restart the app after editing the cron timing.
  • Upload custom fonts

    3
    0 Votes
    3 Posts
    620 Views
    girishG
    It seems there are some requests upstream for this already: https://github.com/invoiceninja/invoiceninja/issues/1855 . This one is open. @squareclouds maybe you can ask him if the new invoice ninja v5 will support it. https://github.com/invoiceninja/invoiceninja/issues/1065 https://github.com/invoiceninja/invoiceninja/pull/604
  • InvoiceNinja CRON Setting and Manual Run

    Moved
    2
    0 Votes
    2 Posts
    580 Views
    girishG
    @tamayers In the Web Terminal, there is a cron button on the top which will paste the command for running the job. There are 2 cron tasks in invoice ninja - invoices & reminders [image: 1591049765059-dc6586d2-eadf-43c5-a778-8ed05a4c9001-image-resized.png]
  • Invoice Ninja Question

    Moved
    5
    0 Votes
    5 Posts
    716 Views
    doodlemania2D
    Will give that a try - yes, was setting to invoice, but will try Payment. Yes, was also set to Stripe. Will report upstream! Thank you so much.
  • 0 Votes
    3 Posts
    543 Views
    girishG
    @tamayers Would be interested in the logs as well as if there is any error in the browser console as well. In the meantime, I will try to reproduce this locally.
  • InvoiceNinja PDF Downloads - Route Does Not Exist

    Moved Solved
    9
    0 Votes
    9 Posts
    1k Views
    T
    This worked for us! Thank you so much!