Page 56 of 80 FirstFirst ... 646545556575866 ... LastLast
Results 551 to 560 of 798
  1. #551
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)

    Quote Originally Posted by countrycharm View Post
    Crystal, hope you get well soon. Stay in bed enjoy yourself a little while.....
    HA! Thanks..I'm tryng.. 10 days after my (emergency) surgery. I started a new full time gig.. (I'm an IT PM/BA contractor by trade..) Hubby is making sure that I'm taking it pretty easy though.. (short work days and early/dinner bedtimes..)
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  2. #552
    Join Date
    Sep 2008
    Location
    WA
    Posts
    555
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)

    Quote Originally Posted by DivaVocals View Post
    HA! Thanks..I'm tryng.. 10 days after my (emergency) surgery. I started a new full time gig.. (I'm an IT PM/BA contractor by trade..) Hubby is making sure that I'm taking it pretty easy though.. (short work days and early/dinner bedtimes..)
    Enjoy your new job and take care.

    L

  3. #553
    Join Date
    Aug 2008
    Posts
    23
    Plugin Contributions
    1

    Default Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)

    I needed to be able to see the shipping module when batch printing orders (we offer rush processing and charge extra for it). So I added a column to show what shipping was selected by the customer. I didn't add in the drop down to choose which shipping option is sorted, I am messing with it a little bit, but have nothing yet that works.

    Code:
    In ADMIN\super_batch_forms.php
    Find (lines 251-52)
      $orders_query_raw = "SELECT o.orders_id, o.customers_id, o.customers_name,
                                  o.payment_method, o.date_purchased, o.order_total, s.orders_status_name
    
    Change to
      $orders_query_raw = "SELECT o.orders_id, o.customers_id, o.customers_name,
                                  o.payment_method, o.shipping_method, o.date_purchased, o.order_total, s.orders_status_name
    
    Find (lines 288-291)
      if (isset($_GET['payments']) && zen_not_null($_GET['payments'])) {
        $orders_query_raw .= " AND o.payment_module_code = '" . $_GET['payments'] . "'";
      }
    
    Add below
      if (isset($_GET['shipments']) && zen_not_null($_GET['shipments'])) {
        $orders_query_raw .= " AND o.shipment_module_code = '" . $_GET['shipments'] . "'";
      }
    
    Find (line 435)
                            <td class="dataTableHeadingContent" align="left"><?php echo TABLE_HEADING_PAYMENT_METHOD; ?></td>
    Add below it
                            <td class="dataTableHeadingContent" align="left"><?php echo TABLE_HEADING_SHIPPING_METHOD; ?></td>
    
    Find (line 450)
                            <td class="dataTableContent" align="left"><?php echo $orders->fields['payment_method']; ?></td>
    
    Add below (or other place you want this to show up)
                            <td class="dataTableContent" align="left"><?php echo $orders->fields['shipping_method']; ?></td>
    
    Open up file ADMIN/includes/languages/english/super_batch_forms.php
    Add to bottom of file
    define('TABLE_HEADING_SHIPPING_METHOD', 'Shipping Method');
    define('HEADING_SEARCH_SHIPMENT_METHOD', 'Shipping Method');
    Sean

  4. #554
    Join Date
    Apr 2010
    Posts
    40
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)

    Hello Folks

    Its been many years since I installed or messed with this module. But I had a new project to help with..

    My issue is when using the split orders part of the plugin. I check the boxes for the items I want to split to a different order. The child order is created. But when I go to the child order. None of the products I split from the previous Order are listed. It simply has a icon for split packing slip. None of the items are listed. Maybe its something I Simply overlooked or a file that didn't transfer when installing..

    Appreciate anyone that has dealt with this same issue to offer some insight.

    Also - I just noticed after checking split orders on my original cart and comparing results. the child orders on the new site are not only not having products added but also they are not being assigned an order ID.

    Thanks!
    Last edited by roberttimmons; 23 Sep 2015 at 02:41 AM.

  5. #555
    Join Date
    May 2004
    Location
    UK
    Posts
    478
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)

    Quote Originally Posted by roberttimmons View Post
    Hello Folks

    Its been many years since I installed or messed with this module. But I had a new project to help with..

    My issue is when using the split orders part of the plugin. I check the boxes for the items I want to split to a different order. The child order is created. But when I go to the child order. None of the products I split from the previous Order are listed. It simply has a icon for split packing slip. None of the items are listed. Maybe its something I Simply overlooked or a file that didn't transfer when installing..

    Appreciate anyone that has dealt with this same issue to offer some insight.

    Also - I just noticed after checking split orders on my original cart and comparing results. the child orders on the new site are not only not having products added but also they are not being assigned an order ID.

    Thanks!
    I have got the same issue - reported it a while back but as yet I have not had or found or worked out any fix - sorry

  6. #556
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)

    Quote Originally Posted by roberttimmons View Post
    Hello Folks

    Its been many years since I installed or messed with this module. But I had a new project to help with..

    My issue is when using the split orders part of the plugin. I check the boxes for the items I want to split to a different order. The child order is created. But when I go to the child order. None of the products I split from the previous Order are listed. It simply has a icon for split packing slip. None of the items are listed. Maybe its something I Simply overlooked or a file that didn't transfer when installing..

    Appreciate anyone that has dealt with this same issue to offer some insight.

    Also - I just noticed after checking split orders on my original cart and comparing results. the child orders on the new site are not only not having products added but also they are not being assigned an order ID.

    Thanks!
    Quote Originally Posted by SarahL View Post
    I have got the same issue - reported it a while back but as yet I have not had or found or worked out any fix - sorry
    I will look at this as soon as I can free up some time from paid projects.. No guarantees I can fix the issue as this code was originally contributed by a contributor who is no longer active in the Zen Cart community..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  7. #557
    Join Date
    May 2004
    Location
    UK
    Posts
    478
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)

    Quote Originally Posted by DivaVocals View Post
    I will look at this as soon as I can free up some time from paid projects.. No guarantees I can fix the issue as this code was originally contributed by a contributor who is no longer active in the Zen Cart community..
    thank you - would be very much appreciated

  8. #558
    Join Date
    Apr 2010
    Posts
    40
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)

    Quote Originally Posted by DivaVocals View Post
    I will look at this as soon as I can free up some time from paid projects.. No guarantees I can fix the issue as this code was originally contributed by a contributor who is no longer active in the Zen Cart community..
    On another site I run we use an old version of zencart. Bad Idea I know But it all works so well I dont want to screw it up. Its version 1.3.8a And super orders version 3.0 . And it works perfectly..

    Out of curiosity I tried to put the older version of super orders on my new installation of zen cart and it did not work really didnt expect it to. I also compared the super_edit.php to the old version on my other install and it was identical. As that is the file that is called on when you click the split orders dialog opens up.

    Code:
    <!-- body_text //--> 
    <td align="center">
          <table border="0" cellpadding="2" cellspacing="0" width="100%">
        <form name="edit" action="https://xxx/super_edit.php" method="post"><input type="hidden" name="securityToken" value="xxx />
          <input type="hidden" name="target" value="product" />
          <input type="hidden" name="process" value="1" />
          <input type="hidden" name="oID" value="6003" />
    <!-- Begin Products Listing Block -->

    Either way I will keep messing with it..But this will be pretty important to my client as they do a ton of back orders and planned to split the items that will be back ordered.. If need be I can speak to my client about turning this into a paid project for a willing coder.

  9. #559
    Join Date
    May 2007
    Posts
    93
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)

    Hi all, havent had time to search as I have to get ready to head to work, drive two hours after crossing Mexican border... I have an issue with some text when writing comments in the details section of super orders, though I am not sure if it is a module issue, but I did have the same issue with 2.0, I am currently using the 4.0.9 version of Super Orders.

    When I write a comment in Details, the end result is the following attached image snippet:

    Hey all this is an example\r\nof what is the results\r\nof the comments\r\nperhaps it is the \"enter\" or next line issue?
    Click image for larger version. 

Name:	super-orders-001.jpg 
Views:	52 
Size:	30.9 KB 
ID:	15699
    Click image for larger version. 

Name:	super-orders-002.jpg 
Views:	67 
Size:	25.9 KB 
ID:	15700

    Ideas? Its something I can deal with but its also been happening since 2.0 I think.

    thanks,

    Gerry

  10. #560
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)

    I've just noticed that one-time attribute charges are not displayed on the admin invoice (when you click invoice button from order details page) or on the batch pdf packing slips. Is there any way to add this info? Kind of important, as the total doesn't add up on paper without the one-time charge displayed.

    Thanks.

 

 
Page 56 of 80 FirstFirst ... 646545556575866 ... LastLast

Similar Threads

  1. v150 Edit Orders v4.0 Support Thread
    By DivaVocals in forum Addon Admin Tools
    Replies: 1786
    Last Post: 10 Apr 2024, 03:17 PM
  2. Edit Orders v3.0 for ZC 1.3.9 [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 656
    Last Post: 18 Apr 2016, 06:28 PM
  3. 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
  4. OLD Super Orders 2.0 (See v3.0 thread instead)
    By BlindSide in forum All Other Contributions/Addons
    Replies: 2019
    Last Post: 17 Jan 2012, 05:43 AM
  5. 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

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