By Mario on Sunday, 27 January 2019
Posted in General Issues
Replies 3
Likes 0
Views 586
Votes 0
Hello,

this is an issue coming from 3.6 version.
When I subscribe a free plan an invoice is created, so the progressive number raise by one.
Which file I have to change in order to avoid this?
In old versione was invoice.php under helper folder. Wher is in 4.0 version?

Thanks,
Mario
Hey Mario,

Sorry for the delayed response due to weekend.

We can't skip the invoice creation for free plan as whenever subscription is created invoice need to attached with them .
Which file I have to change in order to avoid this?
Can you share the changes you did previously , so i'll help you to do that in pp4.

Update us.
·
Monday, 28 January 2019 12:38
·
0 Likes
·
0 Votes
·
0 Comments
·
I've solved.
I edit /administrator/components/com_payplans/includes/event/events/order.php

row 344: public static function onPayplansInvoiceBeforeSave($prev, $new)
{

// Change the invoice serial here

// questa IF evita che venga emesso progressivo fattura se importo a zero.
if (floatval($new->getRegularAmount()) != floatval(0)){

if (isset($prev) && in_array($prev->getStatus(), array(PP_INVOICE_CONFIRMED, PP_NONE)) && $new->getStatus() == PP_INVOICE_PAID) {
$new->setNewSerial();
}

}

I've to complete test but it seems to works.
In this way if an invoice is at 0 no serial numebr was generated. The invoice appear in backend with N/A instead of serial number.

Now I've only to hide invoice download in user account dashboard if total is 0.

Best regards,
Mario
·
Monday, 28 January 2019 17:28
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Mario,

Ok, it sounds good that you managed to fix this.

To remove download button for free invoice, you will find this code on below mentioned path.
root/components/com_payplans/themes/wireframe/dashboard/subscription/default.php
see attached screen shot.

Let me know if you have any query.
·
Monday, 28 January 2019 17:40
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post