no rnet there is no way to pass the order number,
linkpoint creates its own transaction id,
I may be mistaken but dosnt the approval number that comes back from linkpoint go on the order
no rnet there is no way to pass the order number,
linkpoint creates its own transaction id,
I may be mistaken but dosnt the approval number that comes back from linkpoint go on the order
Zen cart PCI compliant Hosting
I'm looking at that area now, my fear is the linkpoint conf # does not pass to cardservices so when we look at the batch deposits there is no way to track back to the zen order.
There must me several linkpoint users -- I wonder how they insure every order is processed and funds deposited?
you see the linkpoint auth number in your linkpoint control panel
Zen cart PCI compliant Hosting
I have found where linkpoint shows an order id ( a rather long number) and matched that to the linkpoint cc review screen in zen. I tried to create a report using a dump of linkpoint data, however I don't see a way to export the linkpoint payments from zen.
My plan was to do a pivot table to line up the orders and payments. There are too many orders to do this manually.
The problem is compounded since we take paypal, Visa, MC, Disc, Amex -- and only Visa, MC & Disc are listed.
I'm not sure how to get my arms around this data in a usable format.
Studying the data and refining queries for an hour, I came up with this query, which you can run in phpMyAdmin and export the results as CSV or whatever you desire to import into a spreadsheet program so you can refine sorts as you desire, etc.
It can probably be refined further, but this should get you most of what you need.Code:select lp.zen_order_id as order_num, o.date_purchased, concat(o.orders_status, ' - ', os.orders_status_name) as orders_status, concat(lp.customer_id, ' - ', c.customers_lastname, ', ', c.customers_firstname) as customer, o.cc_type, o.order_total, o.currency, lp.lp_trans_num as linkpoint_transaction_num, lp.transaction_result, o.lp_avs as avs_response from linkpoint_api lp, orders_status os, orders o left join customers c on c.customers_id = o.customers_id where lp.zen_order_id = o.orders_id and lp.customer_id = o.customers_id and o.orders_status = os.orders_status_id order by o.date_purchased, o.cc_type, o.orders_id;
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
Great -- and thank you!!
I'll spend some time data mining and see if this will help us audit & verify the transactions.
I REALLY appreciate the support.