Zen Cart Logo
Forums / Managing Customers and Orders / Compare Super Orders and Edit Orders

Compare Super Orders and Edit Orders

Locked

Views: 2,481

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
16 Jul 2008, 2:37 PM
#1
gthenry avatar

gthenry

New Zenner

Join Date:
Oct 2007
Location:
Northeast Georgia, USA
Posts:
36
Plugin Contributions:
0

Compare Super Orders and Edit Orders

First, Super Orders is listed for 1.3.7. Does it work with 1.3.8 without unusual problems?

I have not been able to find this on the forum or download descriptions.

What can be edited and specific features of Edit Orders?

What can be edited and specific features of Super Orders?

I would appreciate a list instead of the general descriptions. I want to be able to target what I need without adding a lot of unnecessary features to my store.

Thanks.

G. T.

http://www.motorcyclestuffwarehouse.com

13 Feb 2009, 7:10 PM
#2
thunderhawk6630 avatar

thunderhawk6630

New Zenner

Join Date:
Oct 2008
Posts:
19
Plugin Contributions:
0

Re: Compare Super Orders and Edit Orders

I would also like to know this, I went ahead and tried it. I got everything to work so far except for Optional File Edit Step 3 - Storing the Last Four CC Digits. I cannot find the string in the authorizenet_aim.php file.

Blindside could you make a suggestion? I cannot find anyone that has said it either works or doesn't work with 1.3.8

Thanks,

C

13 Feb 2009, 7:22 PM
#3
thunderhawk6630 avatar

thunderhawk6630

New Zenner

Join Date:
Oct 2008
Posts:
19
Plugin Contributions:
0

Re: Compare Super Orders and Edit Orders

On line 1203 it says this

    // DATABASE SECTION

    // Insert the send and receive response data into the database.

    // This can be used for testing or for implementation in other applications

    // This can be turned on and off if the Admin Section

    if (MODULE_PAYMENT_AUTHORIZENET_AIM_STORE_DATA == 'True'){

      $db_response_text = $response[3] . ($this->commError !='' ? ' - Comm results: ' . $this->commErrNo . ' ' . $this->commError : '');

      $db_response_text .= ($response[0] == 2 && $response[2] == 4) ? ' NOTICE: Card should be picked up - possibly stolen ' : '';

      $db_response_text .= ($response[0] == 3 && $response[2] == 11) ? ' DUPLICATE TRANSACTION ATTEMPT ' : '';

I think that they just changed the variable from

MODULE_PAYMENT_AUTHORIZENET_AIM_STORE_NUMBER

to

MODULE_PAYMENT_AUTHORIZENET_AIM_STORE_DATA

13 Feb 2009, 7:24 PM
#4
thunderhawk6630 avatar

thunderhawk6630

New Zenner

Join Date:
Oct 2008
Posts:
19
Plugin Contributions:
0

Re: Compare Super Orders and Edit Orders

Another find: I found this code at line 545

    $order->info['cc_number']  = str_pad(substr($_POST['cc_number'], -4), strlen($_POST['cc_number']), "X", STR_PAD_LEFT);

Which is very similar to the one posted in the Simple Orders directions

          $saved_digits = substr($cc_number, -4);
          $stored_cc = str_pad($saved_digits, $length, "X", STR_PAD_LEFT);

C