+ Reply to Thread
Results 1 to 7 of 7

Thread: can you add the order number to the order details?

  1. #1
    Client
    Join Date
    Mar 2010
    Posts
    37
    Squirrelcart version
    v3.3.2

    can you add the order number to the order details?

    I manufacture all my parts to order, so i generally make a list every week of what i need to make. Next to each item i add the product options, name, date ordered, and order number. To do this, i use the manage order page in control pannel and click on each order on the list. However, the order number isn't on there at all, so i have to go back and copy the order number from the main page, which of course opens the order again, so it's kind of a PITA. Any chance you can make it so it shows the order number on the page of the order? It shows it if you click edit, however it doesn't show the product options so that doesnt work either.
    I just hate having to open multiple pages when all this info should be on one. I can go through my emails and do it that way, however it's nice to see if the payment went through or not before i make my list.
    Thanks,
    Dan

  2. #2
    Squirrelcart Staff Jamie's Avatar
    Join Date
    May 2002
    Posts
    6,829
    Squirrelcart version
    v3.3.7
    Add this to the order_detail_admin.tpl.php template file and it will display the order number:
    PHP Code:
    <?php print $Order_Number ?>
    Instructions for modifying template files can be found here if needed:
    http://www.squirrelcart.com/help/?Mo...Templates.html

  3. #3
    Client
    Join Date
    Mar 2010
    Posts
    37
    Squirrelcart version
    v3.3.2
    that worked perfect, thanks!

  4. #4
    Client
    Join Date
    Mar 2010
    Posts
    37
    Squirrelcart version
    v3.3.2
    what would be awesome is if i can get the customer's name, order date, and the total quantity of products for the order. then i can just copy and paste it all at one time. I can figure out how to do that with the customer name and the order number, but i'm stumped on the date and order quantity.

    for example:
    John Smith 103245675 5/11/2010 7


    Is that doable? If i had the code for the date and the quantity i can figure the rest out.

    Thanks!

  5. #5
    Squirrelcart Staff Jamie's Avatar
    Join Date
    May 2002
    Posts
    6,829
    Squirrelcart version
    v3.3.7
    PHP Code:
    <?php print "$Bill_First_Name $Bill_Last_Name $Order_Number ".date('n/j/Y',strtotime($Order_Date)).' '.count($Items); ?>

  6. #6
    Client
    Join Date
    Mar 2010
    Posts
    37
    Squirrelcart version
    v3.3.2
    that worked perfect, thanks!

  7. #7
    Squirrelcart Staff Jamie's Avatar
    Join Date
    May 2002
    Posts
    6,829
    Squirrelcart version
    v3.3.7
    You're welcome!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts