Page 71 of 102 FirstFirst ... 2161697071727381 ... LastLast
Results 701 to 710 of 1019
  1. #701

    Default Re: Super Orders v3.0 Support Thread

    1. No, the SO version for ZC150 is not ready yet. Hang in there, we're working on it. No ETA yet.

    2. Yes, EO and SO integrate together nicely. In the EO readme, this is step 7 of the installation process. In the SO readme, check out the "Addons Integration" tab. If both are installed, a switch needs to be flipped in both of them.

    3. Yes, SO will pick up your PayPal transaction data and display it to you in the admin. Depending on your settings and configuration, an email with that info will go out to your customer as well.

    4. Installing SO and EO together in no way inhibits your ability to process refunds. They are built to work together.

    Good luck and happy Zenning

    Quote Originally Posted by windsurfer View Post
    I have "edit_orders_v3.03" and not sure if this has come up at all but I was reading through the installation but didn't see anything about integrating with edit orders unless i missed it.
    When i process an order payed through Paypal and use their shipping module the customer gets an e-mail from Paypal with the tracking number. I am just wondering if Super orders will pick this transaction up and updates the order or is there a way to manually enter the tracking number and when i hit update the customer is e-mailed with the updated information. I know when setting the order to shipped in edit orders the customer gets an e-mail but i can't put the tracking information in.
    Also is the super orders V1.5 ready ?
    Also refunds can be issued oin edit orders, will i lose that capability ?
    Any thoughts ?
    Thank you.
    Go that extra mile, you never know what's at the end of the road

    Empowerment Sanctuary

  2. #702

    Default Re: Super Orders v3.0 Support Thread

    Thank you for the reply. I notice that you prefer to have the Ty Package Tracker package installed. I am using Canada Post and just wondering if anybody has the tracking link for CPC, perhaps this is in the wrong topic but can't find anywhere elase i can post this.
    Thank you

  3. #703

    Default Re: Super Orders v3.0 Support Thread

    Quote Originally Posted by windsurfer View Post
    Thank you for the reply. I notice that you prefer to have the Ty Package Tracker package installed. I am using Canada Post and just wondering if anybody has the tracking link for CPC, perhaps this is in the wrong topic but can't find anywhere elase i can post this.
    Thank you
    Having TY Package Tracker installed is a choice...there's no preference among the SO or EO mod authors as to whether you use it or not. The code to make them work together was added because of popularity rather than preference.

    So whether or not you use it is entirely up to you

    Regarding a link for CPC, suggest creating a thread with your question in the "General Questions" area of the forum
    Go that extra mile, you never know what's at the end of the road

    Empowerment Sanctuary

  4. #704

    Default Re: Super Orders v3.0 Support Thread

    Thank you
    I just installed TY and checked the install twice switch is set but there is no difference when i look at an invoice or edit an order placed after i installed.

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

    Default Re: Super Orders v3.0 Support Thread

    Quote Originally Posted by windsurfer View Post
    Thank you for the reply. I notice that you prefer to have the Ty Package Tracker package installed. I am using Canada Post and just wondering if anybody has the tracking link for CPC, perhaps this is in the wrong topic but can't find anywhere elase i can post this.
    Thank you
    It is the wrong topic..

    Quote Originally Posted by windsurfer View Post
    Thank you
    I just installed TY and checked the install twice switch is set but there is no difference when i look at an invoice or edit an order placed after i installed.
    Post your Ty Package Tracker questions in the Ty Package Tracker support thread please.. (and before you ask.. the link to the Ty Package Tracker support thread is in the Ty Package Tracker readme file -- a forum search would have also turned up the support thread too..)
    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.

  6. #706
    Join Date
    Sep 2009
    Posts
    49
    Plugin Contributions
    0

    Default Re: Super Orders v3.0 Support Thread

    Quote Originally Posted by DivaVocals View Post
    Sure I'm interested.. please make sure your code is clearly commented/highlighted.. In the v1.5 ready version I'm doing away with the super_orders.php file
    Well, that surely changes how this could be integrated, as I've included it in the class, but I suppose it could be a function as well.

    New function to update stock:
    PHP Code:
    // Updates product stock upon order cancellation
    function update_stock($action) {
        global 
    $db;
          
    $order $db->Execute("select products_id, products_quantity
                                 from " 
    TABLE_ORDERS_PRODUCTS "
                                 where orders_id = '" 
    . (int)$this->oID "'");

           
    // if order cancelled, return stock
            
    if($action=='cancel')
            {
              while (!
    $order->EOF) {
                
    $db->Execute("update " TABLE_PRODUCTS "
                              set products_quantity = products_quantity + " 
    $order->fields['products_quantity'] . ", products_ordered = products_ordered - " $order->fields['products_quantity'] . " where products_id = '" . (int)$order->fields['products_id'] . "'");
                
    $order->MoveNext();
              }
            }
            
    // if re-opening a cancelled order, take stock
            
    elseif($action=='reopen')
            {
               while (!
    $order->EOF) {
                
    $db->Execute("update " TABLE_PRODUCTS "
                              set products_quantity = products_quantity - " 
    $order->fields['products_quantity'] . ", products_ordered = products_ordered + " $order->fields['products_quantity'] . " where products_id = '" . (int)$order->fields['products_id'] . "'");
                
    $order->MoveNext();
              }           
            }
        } 
    Updated the mark cancelled and reopen functions

    PHP Code:
      // timestamp the date_cancelled field in orders table
      // will also NULL out date_completed field if set (you can't have both at once!)
      
    function mark_cancelled() {
        global 
    $db;
        if (
    $this->status == false || $this->status == "completed") {
          
    $db->Execute("UPDATE " TABLE_ORDERS " SET date_cancelled = now(), order_followup = 0 WHERE orders_id = '" $this->oID "'");

          if (
    $this->status == "completed") {
            
    $db->Execute("UPDATE " TABLE_ORDERS " SET date_completed = NULL, order_followup = 0 WHERE orders_id = '" $this->oID "'");
          }
          if (
    STATUS_ORDER_CANCELLED != 0) {
            
    update_status($this->oIDSTATUS_ORDER_CANCELLED);
          }
          
    $this->status "cancelled";
          
    $this->status_date zen_datetime_short(date('Y-m-d H:i:s'));
         
    $this->update_stock('cancel'); // return stock
        
    }
      }


      
    // removes the cancelled/completed timestamp
      
    function reopen() {
        global 
    $db;
        
    $db->Execute("update " TABLE_ORDERS " set
                      date_completed = NULL, date_cancelled = NULL
                      where orders_id = '" 
    $this->oID "' limit 1");

        if (
    STATUS_ORDER_REOPEN != 0) {
          
    update_status($this->oIDSTATUS_ORDER_REOPEN);
        }
        
        
    // if order was cancelled, update and take stock
        
    if($this->status == "cancelled")
        {
            
    $this->update_stock('reopen');
        }
        
    $this->status false;
        
    $this->status_date false;
        
      } 

  7. #707
    Join Date
    Apr 2012
    Posts
    4
    Plugin Contributions
    0

    Default Re: Super Orders v3.0 Support Thread

    Two quick questions & I apologize up front if someone already covered this but, I've searched & have not found any answers.
    1. How do I change the regular packing slip from the Super Orders page(not pdf) to have the "Ship To" information on the right side & the "Bill to" information on the left side like the invoice does?
    2. Can I make it so no comments show up on the packing slips?

  8. #708
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Super Orders v3.0 Support Thread

    Quote Originally Posted by Rizla View Post
    Had SO3 installed for a while now and although only used test orders it seemed fine.

    My site is beginning to receive orders and payment through paypal. However I have noticed that the payment details come through ok but the amount has not been applied automatically...
    Just wondered if this is correct and I have to manually apply payment or if I have a bad install? as there is no PayPal option in the manual method.

    Thanks
    I have SO 3.0.1 installed.

    According to the description in the download section: "- AUTO PAYMENT FOR ORDERS PAID VIA PAYPAL!!!!!!! 'Nuff said..."

    But paypal payments are still not being applied to order balances in my store. Is this an error in my installation, or was it actually not corrected in this version yet?

    If it was corrected, is there any possibility you could tell me exactly which code I need to apply to make this work?

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

    Default Re: Super Orders v3.0 Support Thread

    Discussed in several places in this support thread (a search of the thread will net you the answer you seek)

    Quote Originally Posted by abcisme View Post
    I have SO 3.0.1 installed.

    According to the description in the download section: "- AUTO PAYMENT FOR ORDERS PAID VIA PAYPAL!!!!!!! 'Nuff said..."

    But paypal payments are still not being applied to order balances in my store. Is this an error in my installation, or was it actually not corrected in this version yet?

    If it was corrected, is there any possibility you could tell me exactly which code I need to apply to make this work?
    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.

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

    Default Re: Super Orders v3.0 Support Thread

    Quote Originally Posted by Rizla View Post
    Had SO3 installed for a while now and although only used test orders it seemed fine.

    My site is beginning to receive orders and payment through paypal. However I have noticed that the payment details come through ok but the amount has not been applied automatically...
    Just wondered if this is correct and I have to manually apply payment or if I have a bad install? as there is no PayPal option in the manual method.

    Thanks
    Quote Originally Posted by DivaVocals View Post
    Discussed in several places in this support thread (a search of the thread will net you the answer you seek)
    Seriously, I've spent hours between yesterday and today reading through this and Super Orders 2.0 thread and there is conflicting information throughout.

    Could you please just give me the correct answer?

 

 
Page 71 of 102 FirstFirst ... 2161697071727381 ... 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. v150 Super Orders v4.0 Support Thread for ZC v1.5.x
    By DivaVocals in forum Addon Admin Tools
    Replies: 797
    Last Post: 23 Mar 2024, 06:51 AM
  3. 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
  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