Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 3 of 3

Thread: Google Checkout Change Order Number

  1. #1
    DotNetDevelopments is offline Senior Member
    Join Date
    Jul 2008
    Location
    Harlow / Essex / UK
    Posts
    619

    Exclamation Google Checkout Change Order Number

    I have looked into the Google Checkout gateway and I see that it uses the order number to communicate with the database. Sadly I want to send over the customer id as is it easy for our accountant.

    Would it be possible for only Google Checkout orders to have the order id as orderid-customerid?

    That way it would be easy for our accounts to match up and not force too many core changes.

    Is this possible?

    Thanks in advance.
    =====
    Version (Code/DB): AspDotNetStorefront MSx 9.1.0.1/9.1.0.0
    Execution Mode: 64 Bit
    Dot Net Developments - E-commerce By Experience

  2. #2
    webopius is offline Senior Member
    Join Date
    Nov 2008
    Location
    London, UK
    Posts
    440

    Default

    Hi

    Rather than change the gateway or the method of recording order numbers/customer ids, why not send your accountant a feed of the sales data from the orders table itself for just the Google Checkout orders?

    Code:
    select OrderNumber, CustomerID, OrderSubtotal, OrderTax from dbo.Orders where LOWER(paymentgateway) like 'google checkout%'  and TransactionState = 'CAPTURED' and OrderDate **between specific dates**

  3. #3
    DotNetDevelopments is offline Senior Member
    Join Date
    Jul 2008
    Location
    Harlow / Essex / UK
    Posts
    619

    Default

    Hm guess that would be the best way around it, just a customer XML package to link everything up.

    Shame really that Google Checkout is so hard to work with, we changed our Sage Pay Order Numbers without any issues.

    Thanks for your help again.
    =====
    Version (Code/DB): AspDotNetStorefront MSx 9.1.0.1/9.1.0.0
    Execution Mode: 64 Bit
    Dot Net Developments - E-commerce By Experience