Results 1 to 10 of 13

Hybrid View

  1. #1
    Join Date
    Mar 2004
    Posts
    16,042
    Plugin Contributions
    5

    Default Re: General Linkpoint Question

    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

  2. #2
    Join Date
    Jun 2005
    Location
    Pittsburgh
    Posts
    174
    Plugin Contributions
    0

    Default Re: General Linkpoint Question

    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?

  3. #3
    Join Date
    Mar 2004
    Posts
    16,042
    Plugin Contributions
    5

    Default Re: General Linkpoint Question

    you see the linkpoint auth number in your linkpoint control panel
    Zen cart PCI compliant Hosting

  4. #4
    Join Date
    Jun 2005
    Location
    Pittsburgh
    Posts
    174
    Plugin Contributions
    0

    Default Re: General Linkpoint Question

    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.

  5. #5
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: General Linkpoint Question

    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.

    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;
    It can probably be refined further, but this should get you most of what you need.
    .

    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.

  6. #6
    Join Date
    Jun 2005
    Location
    Pittsburgh
    Posts
    174
    Plugin Contributions
    0

    Default Re: General Linkpoint Question

    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.

 

 

Similar Threads

  1. LinkPoint General Question
    By MCanes in forum Built-in Shipping and Payment Modules
    Replies: 12
    Last Post: 20 Oct 2009, 10:18 PM
  2. Document-General Question
    By ex.wear in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 9 Oct 2008, 04:53 AM
  3. General Template Question
    By Ralleh in forum Addon Templates
    Replies: 5
    Last Post: 18 Jan 2008, 07:33 AM
  4. general operations question
    By defkiss in forum Managing Customers and Orders
    Replies: 2
    Last Post: 23 Apr 2007, 01:31 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg