SMFHacks.com

SMF Store => Support => Topic started by: KKOG on December 06, 2017, 06:57:13 pm

Title: Adding a receipt number to Purchase Email
Post by: KKOG on December 06, 2017, 06:57:13 pm
Hello,

Some further assistance sought.

The legislation under which our association operates requires us to issue receipts for membership payments in the form "Financial Year-Sequential Number" eg "17/18-123".  The receipt number received through the PayPal transaction does not the legislative requirement.

I would like to add a receipt number for all purchases from our store, both membership and non-membership, with the sequential number incrementing no matter what type of purchase is made.

We could issue the receipt number as part of the text of the Purchase Email, but this would require the addition of 2 parameters that could be included into the text, i.e. one for Financial Year and one for the Sequential Number.  These parameters could be defined in the Store Settings, with the starting number for the Sequential Number being defined as would be the current Financial Year (if defined as a parameter then the financial year could be for example 17/18 or 2017 depending on how it is defined).  I am assuming the Sequential Number would require the addition of a field in the database.

Could you please advise if the above is possible and if you were to do it for us could you please PM me any cost that would be involved.

Thanks
Greg Ralph
KKOG Forum Admin
Title: Re: Adding a receipt number to Purchase Email
Post by: SMFHacks on December 06, 2017, 07:01:04 pm
For Sequential Number can that the order id?? If so then we only need to add one field in the admin area for the year.
Title: Re: Adding a receipt number to Purchase Email
Post by: KKOG on December 06, 2017, 09:15:04 pm
The Sequential Number could be the Order ID (number)
Title: Re: Adding a receipt number to Purchase Email
Post by: KKOG on December 07, 2017, 03:38:07 pm
Our Sec/Treasurer has asked that the receipt number asl be included in the Purchase Notification for Store Admins email as well.

This would mean making the % parameters available to that email as well.

Regards
Greg Ralph
KKOG Forum Admin
Title: Re: Adding a receipt number to Purchase Email
Post by: SMFHacks on December 07, 2017, 03:44:40 pm
Ok Can it should be 2017 or do you want two digits for year I can generate it internally as long as it is the current year.
Title: Re: Adding a receipt number to Purchase Email
Post by: KKOG on December 07, 2017, 04:56:38 pm
Could you please make it 2017, ie 4 digits, using the current year.

Thanks
Greg Ralph
KKOG Forum Admin


Title: Re: Adding a receipt number to Purchase Email
Post by: SMFHacks on December 07, 2017, 06:29:10 pm
Yes
Title: Re: Adding a receipt number to Purchase Email
Post by: SMFHacks on December 07, 2017, 10:35:36 pm
I posted an update check for this code in storeipn2.php https://www.smfhacks.com/index.php/topic,825.msg5016.html#msg5016

In multiple spots
Code: [Select]
//KKOG
$message = str_replace('%receiptnumber', date("Y"). '-' . $basketID,$message);


Then in your email template add this variable %receiptnumber
Title: Re: Adding a receipt number to Purchase Email
Post by: KKOG on December 08, 2017, 12:39:47 am
Thank you for this.  I have downloaded the new version.

Greg Ralph
KKOG Forum Admin