Adding a prefix to SagePay Transaction numbers

Posted By holtcomp Sat 11 Apr 2015
Add to Favorites0
Author Message
holtcomp
 Posted Sat 11 Apr 2015
Supreme Being

Supreme Being - (9,985 reputation)Supreme Being - (9,985 reputation)Supreme Being - (9,985 reputation)Supreme Being - (9,985 reputation)Supreme Being - (9,985 reputation)Supreme Being - (9,985 reputation)Supreme Being - (9,985 reputation)Supreme Being - (9,985 reputation)Supreme Being - (9,985 reputation)

Group: Forum Members
Last Active: Wed 18 May 2016
Posts: 12, Visits: 145
I have a situation where several online shops share one sagepay account which works fine.

The existing websites were using cactushop and I inserted a bit of code to add a prefix to the sagepay transaction numbers so that

a) when looking at the list of transactions in the sagepay interface you could easily identify which website a transaction related to

and

b) it avoided the real possibility that duplicate transaction numbers could be generated from two different databases, i.e. order number 20 on website a would attempt to generate the same TX number as order number 20 on website b.

As I switch to Kartris I am trying to avoid inserting little bits of code so I wondered if there was a cleverer way of achieving this, or if it does involve a bit of code what would be the neatest coding solution.
Sat 11 Apr 2015 by holtcomp
Paul
 Posted Tue 14 Apr 2015
große Käse

große Käse - (450,004 reputation)große Käse - (450,004 reputation)große Käse - (450,004 reputation)große Käse - (450,004 reputation)große Käse - (450,004 reputation)große Käse - (450,004 reputation)große Käse - (450,004 reputation)große Käse - (450,004 reputation)große Käse - (450,004 reputation)

Group: Administrators
Last Active: Fri 15 Sep 2023
Posts: 806, Visits: 2,737
Easiest way is to seed the SQL identity field on the tblKartrisOrders table. Normally order numbers start with 1, but you can change the seed value on the table to start at 1000000, 2000000, 3000000, etc.

--
If my post solves your issue, can you 'Mark as Answer' so it's easier for other users to find in future.

If you would like to be informed of new features, new releases, developments and occasional special bonuses, please sign up to our mailing list: http://bit.ly/19sKMZb
holtcomp
 Posted Tue 14 Apr 2015
Supreme Being

Supreme Being - (9,985 reputation)Supreme Being - (9,985 reputation)Supreme Being - (9,985 reputation)Supreme Being - (9,985 reputation)Supreme Being - (9,985 reputation)Supreme Being - (9,985 reputation)Supreme Being - (9,985 reputation)Supreme Being - (9,985 reputation)Supreme Being - (9,985 reputation)

Group: Forum Members
Last Active: Wed 18 May 2016
Posts: 12, Visits: 145
Yes thanks, I meant to say is there any way other than setting the seed value.

That will work but I was hoping to be able to have the name of the site followed by a number but i guess it wouldn't be the end of the world.

cheers

mark

Similar Topics

Expand / Collapse

Reading This Topic

Expand / Collapse

Back To Top