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

52 Topics 771 Posts
  • Client portal 500 Error

    Solved
    4
    0 Votes
    4 Posts
    240 Views
    saikarthikS

    Please ignore this issue, there was some error with the underlying instance I guess. I started a new instance and everything is good.

  • Client Portal SSL Cert Mismatch

    Solved
    4
    0 Votes
    4 Posts
    235 Views
    humptydumptyH

    For those wondering, removing the /client prefix from the client portal link isn't supported.

  • Stripe Integration -- Cloudron App Clone Bug

    4
    0 Votes
    4 Posts
    261 Views
    humptydumptyH

    @girish In my attempt to troubleshoot the issue, I had 3 IN apps installed and deleted the bugged one by mistake earlier today 🤦 but what you said makes sense because everything else was working fine except for the Stripe integration form. I assume the logs are gone now but if not, let me know where to find them and I'll post them for you.

  • Invoice Ninja is not generating PDF

    Moved
    3
    0 Votes
    3 Posts
    278 Views
    Enabl.istE

    @girish Thanks! 👍

  • - Server Error on Card Payment

    Unsolved
    6
    0 Votes
    6 Posts
    389 Views
    nebulonN

    @telos-one said in - Server Error on Card Payment:

    How do we revert to the previous version?

    In the apps configuration view, there is the backups tab and from there you should be able to revert to the backup made prior the update.

  • 0 Votes
    4 Posts
    273 Views
    nebulonN

    @telos-one on which package version are you now? You can see this in the update section of the app in your Cloudron dashboard.

  • 0 Votes
    4 Posts
    281 Views
    nebulonN

    @humptydumpty sounds like a different issue if it is not a caching issue. If not, please create a new thread in the forum.

  • Client Portal - header and footer don't appear

    Solved
    6
    0 Votes
    6 Posts
    402 Views
    theompmT

    @scooke yes i tried this from within IN.

    @humptydumpty you are right. Header and footer are working when logged in the client portal. But on the login-page it doesn't.

    Thank your for your replies.

  • Migration from Invoice Ninja V4 to V5 failed

    3
    0 Votes
    3 Posts
    407 Views
    girishG

    @jeau said in Migration from Invoice Ninja V4 to V5 failed:

    Instead of using the packaged version of Invoice Ninja V5, I installed Invoice Ninja V5 in a LAMP app, and the migration works fine.

    After this, are you able to export from the lamp v5 app and into the Cloudron v5 app?

  • The crons need to be enabled

    7
    0 Votes
    7 Posts
    526 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
    0 Votes
    3 Posts
    325 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); }

    5abc0208-75ae-47c4-a6ea-1ad887501672-image.png

    If someone has found how to solve it ... 🙏

  • Tasks are not visible in clientportal

    Solved
    6
    0 Votes
    6 Posts
    319 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!

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

    Unsolved
    3
    0 Votes
    3 Posts
    245 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
    3k Views
    T

    Confirmation of resolution. Issue is fixed.

  • Path To Project on Cloudron

    Locked Solved
    6
    0 Votes
    6 Posts
    429 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
    2k 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
    425 Views
    S

    @nebulon Awesome, working fine now. Thanks a lot!

  • 1 Votes
    4 Posts
    873 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
    498 Views
    scookeS

    OK, well thank you!