Page 156 of 202 FirstFirst ... 56106146154155156157158166 ... LastLast
Results 1,551 to 1,560 of 2020
  1. #1551
    Join Date
    Nov 2007
    Location
    USA
    Posts
    882
    Plugin Contributions
    5

    Default Re: Super Orders 2.0

    Quote Originally Posted by DivaVocals View Post
    Try downloading and re-installing..
    Reinstalling what? Just the contrib?
    Cheers!
    v2.0+

  2. #1552
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Super Orders 2.0

    Quote Originally Posted by webskipper View Post
    Reinstalling what? Just the contrib?
    Yes.. that would be my suggestion.. If you don't want to do that I would suggest at least re-installing the files that are causing issues..

  3. #1553
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Modifying payments

    Hoping someone more sage than I can help decypher this mystery.. If you click the "Modify" button next to to a Super Orders payment, the popup window does not open up the payment for modification at all.

    I believe that the key to fixing this is found on line 108 or the super_payments.php file.
    Code:
                zen_redirect(zen_href_link(FILENAME_SUPER_PAYMENTS, 'oID=' . $so->oID . '&payment_mode=' . $payment_mode . '&index=' . $_GET['payment_id'] . '&action=confirm', 'NONSSL'));
    I've tried a few things, but ultimately I am not sure what needs to be modified.. (I think is a minor fix).. Anyone got any ideas??

    If I can't figure this out, I think I may just disable this feature since from an auditing point of view, the CORRECT way to "modify" a payment is to make a payment adjustment. (Yes even if you made a data entry mistake -- in real accounting software this is how it would be handled)

  4. #1554
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Super Orders 2.0

    Another observation.. When an order is either canceled or marked completed, ALL of the buttons which allow you to add, modify, or delete payments, P.O.s and Refunds should be hidden. I noticed that other editing features are hidden, but not these.Does anyone have any clue as to how I would go about correcting this???

  5. #1555
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Not all Credit Card Types Posted in Payments Correctly

    I've been testing how payments made using the "Credit Card - Offline Processing" payment module appear in Super Orders. I noticed that not all credit cards payments display the correct payment_type in Super Orders. In particular Master Card and Diners Club. (Visa, Amex, and Discover all show up correctly) After doing some tiptoeing through the Developers Tool Kit I think found the answer:

    I believe that Master Card does not show up because the Master Card value used in the array in the Super Orders class files (store and admin) and the payment type for Master Card in the so_payment_types table do not match the cc_type for Master Card in the /includes/classes/cc_validation.php file.

    Diners Club doesn't show up because it's not defined in the array in the Super Orders class files (store and admin) and simply needs to be added the class files and the so_payment_types table.

    To fix Master Card and add Diners Club here's the changes I made:

    Go to /admin/includes/classes/super_order.php around line 276 and make the changes highlighted in red:
    Code:
        $cc_type_key = array('MasterCard' => 'MC',
                             'Visa' => 'VISA',
                             'American Express' => 'AMEX',
                             'Diners Club' => 'DINE',
                             'Discover' => 'DISC');
    Go to /includes/classes/super_order.php around line 276 and make the changes highlighted in red:
    Code:
        $cc_type_key = array('MasterCard' => 'MC',
                             'Visa' => 'VISA',
                             'American Express' => 'AMEX',
                             'Diners Club' => 'DINE',
                             'Discover' => 'DISC');
    Then run the following SQL changes in Admin>Tools>
    Install SQL Patches
    to correct the Master Card payment type and add Diners Club to the Super Orders payment types tables.

    Code:
    UPDATE `so_payment_types` SET `payment_type_full` = 'MasterCard' WHERE `so_payment_types`.`payment_type_full` = 'Master Card';
    
    INSERT INTO `so_payment_types` (`payment_type_id` ,`language_id` ,`payment_type_code` ,`payment_type_full`)
    VALUES ('10', '1', 'DINE', 'Diners Club');
    For the record any other credit cards you would like to add, you can simply update the class files to add them to the array. You must make sure that you also add them to the so_payment_types table as well. Remember they must match the cc_types used in the /includes/classes/cc_validation.php file.

    Thought I'd share this too.. I used the following test credit card numbers for the various credit card types

    Master Card - 5105105105105100 - (16) Characters
    Master Card - 5555555555554444 - (16) Characters
    Master Card - 4222222222222 - (13) Characters
    VISA - 4111111111111111 - (16) Characters
    VISA - 4012888888881881 - (16) Characters
    American Express - 378282246310005 - (15) Characters
    American Express - 371449635398431 - (15) Characters
    Amex Corporate - 378734493671000 - (15) Characters
    Dinners Club - 38520000023237 - (14) Characters
    Dinners Club - 30569309025904 - (14) Characters
    Discover - 6011111111111117 - (16) Characters
    Discover - 6011000990139424 - (16) Characters
    JCB - 3530111333300000 - (16) Characters
    JCB - 3566002020360505 - (16) Characters
    Here's the source for these test credit card numbers: http://www.ameripayment.com/testcreditcard.htm

    Hope all of this is useful for someone else..

  6. #1556
    Join Date
    Nov 2007
    Location
    USA
    Posts
    882
    Plugin Contributions
    5

    Default Re: Super Orders 2.0

    Quote Originally Posted by DivaVocals View Post
    Yes.. that would be my suggestion.. If you don't want to do that I would suggest at least re-installing the files that are causing issues..
    Question.

    Can Super Orders and Edit Order coexist? Should either one be installed first or is Edit Order redundant when SO is installed correctly?
    Cheers!
    v2.0+

  7. #1557
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Super Orders 2.0

    Quote Originally Posted by webskipper View Post
    Question.

    Can Super Orders and Edit Order coexist? Should either one be installed first or is Edit Order redundant when SO is installed correctly?
    Please don't take this wrong Webskipper, but you've asked this question over and over since LAST December, and (IMO) it's been answered a few times in this support thread.. I'm not sure what additional information you are seeking in asking again, but I'll throw in my 3 cents on the subject again..

    Super Orders as it's name and the readme file states is supposed to be the replacement for the stock Zen Cart orders.php, packingslip.php, and invoice.php. It's an order management system that includes many more features not included in the stock Zen Cart order management.

    Edit Orders as it's name implies and the readme file states is a module that allows you to edit an order.

    These are two separate mods with COMPLETELY different purposes, and there is NO FEATURE OVERLAP between the two.. It's not a matter of one versus the other, that's like comparing apples to oranges.. They are both fruit, but they are different kinds of fruit..

    That said if you are replacing the stock order management with Super Orders there is no reason why you can't use Edit Orders with Super Orders. In fact there are instructions in the Edit Orders readme file which address SPECIFICALLY how to incorporate Edit Orders with Super Orders. There are also several threads in this support thread which give guidelines on how to achieve this integration as well.. (Including one posted by yours truly which I believe provides a lot more detail than other posts in past have provided on the subject)

    http://www.zen-cart.com/forum/showpo...postcount=1510
    http://www.zen-cart.com/forum/showpo...&postcount=250

    It's been over a year since I dropped into this support thread, and it appears that you are still having issues getting the integration of these two modules to work. Perhaps you might want to consider seeking some paid assistance which might give you more detailed or hands on help than you've gotten here. It appears that Scott might offer commercial assistance with this integration on his site: http://www.zencartmod.com/index.php?...&products_id=3.. Dunno.. If you want to try taking a stab at this, check out the threads I posted and see if they help..

  8. #1558
    Join Date
    Nov 2007
    Location
    USA
    Posts
    882
    Plugin Contributions
    5

    Default Re: Super Orders 2.0

    Ah yes since December 2008?

    Been busy serving my country.

    Appreciate your response.
    Cheers!
    v2.0+

  9. #1559
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Super Orders 2.0

    Quote Originally Posted by webskipper View Post
    Ah yes since December 2008?

    Been busy serving my country.

    Appreciate your response.
    Yep Dec 2008..

    Appreciate your service to our country..

    Hope the posts I listed help.. I used the guidelines I posted, and have Super Orders successfully integrated with Edit Orders. On my loaded test store I have Super Orders integrated with the following modules:

    • Fast & Easy Check Out
    • FedEx Shipping Labels
    • Admin Comments
    • Edit Orders

    Everything is playing VERY nicely together.. The application Beyond Compare is my secret weapon to help pulling it all together..

  10. #1560
    Join Date
    Nov 2007
    Location
    USA
    Posts
    882
    Plugin Contributions
    5

    Default Re: Super Orders 2.0

    So what you are saying is that you have the next version of So ready with Admin Notes Integrated? That's like including a corkscrew with a Wine & Cheese Gift set.

    The issue I was having was that the htaccess page was hacked. Once I fixed that and cleaned up the mess, everything worked correctly. All the issues were resolved.

    Don't take this the wrong way. In the future, you may want to ask more questions before responding the way you did above.
    Cheers!
    v2.0+

 

 

Similar Threads

  1. v150 Super Orders v4.0 Support Thread for ZC v1.5.x
    By DivaVocals in forum Addon Admin Tools
    Replies: 804
    Last Post: 18 Apr 2025, 12:04 AM
  2. v139h Super Orders v3.0 Support Thread (for ZC v1.3.9)
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1018
    Last Post: 28 Apr 2014, 11:38 PM
  3. RE: Super Orders v3.0 Support Thread
    By Johnnyd in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 22 Jun 2011, 09:28 AM
  4. Super Orders 2.0 postage marks with Super Orders
    By sketchhgal in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 22 Mar 2009, 03:05 PM
  5. Edit Orders and Super Orders, anyone doing that?
    By swamyg1 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 4 Feb 2009, 06:03 AM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR