Page 24 of 102 FirstFirst ... 1422232425263474 ... LastLast
Results 231 to 240 of 1019
  1. #231
    Join Date
    Nov 2009
    Location
    Chicago, IL.
    Posts
    198
    Plugin Contributions
    0

    Default Re: Super Orders v3.0 Support Thread

    Quote Originally Posted by DivaVocals View Post
    Perhaps.. do you get a similar behavior with the default orders??
    nope. just super orders

  2. #232
    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 samar777 View Post
    nope. just super orders
    What version of Zen Cart are you running??
    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.

  3. #233
    Join Date
    May 2010
    Posts
    9
    Plugin Contributions
    0

    Default Re: Super Orders v3.0 Support Thread

    Is there any way to change the PDF packing list? I want to remove the prices on it and change the layout a bit...

  4. #234
    Join Date
    Oct 2007
    Posts
    22
    Plugin Contributions
    0

    Default Re: Super Orders v3.0 Support Thread

    running 1.3.9

  5. #235
    Join Date
    Nov 2006
    Posts
    296
    Plugin Contributions
    2

    Default Re: Super Orders v3.0 Support Thread

    Hello,
    When i click the "print" button in an order the super_data_sheet.php is invoked which generates error:
    STATUS HISTORY 1054 Unknown column 'track_id1' in 'field list'
    in:
    [select orders_status_id, date_added, customer_notified, track_id1, track_id2, track_id3, track_id4, track_id5, comments from orders_status_history where orders_id = '12696' order by date_added]


    Looking at the code:
    PHP Code:
    <!-- TY TRACKER 1 BEGIN, DISPLAY TRACKING ID IN COMMENTS TABLE------------------------------->
            <td class="dataTableHeadingContent smallText" align="left" valign="top" width="23%"><strong><?php echo TABLE_HEADING_TRACKING_ID?></strong></td>
    <!-- END TY TRACKER  1 ------------------------------------------------------------>
            <td class="dataTableHeadingContent smallText" align="left" valign="top" width="40%"><strong><?php echo TABLE_HEADING_COMMENTS?></strong></td>
          </tr>
    <?php // TY TRACKER 2 BEGIN, INCLUDE DATABASE FIELDS ------------------------------
        
    $orders_history $db->Execute("select orders_status_id, date_added, customer_notified, track_id1, track_id2, track_id3, track_id4, track_id5, comments
                                        from " 
    TABLE_ORDERS_STATUS_HISTORY "
                                        where orders_id = '" 
    zen_db_input($oID) . "'
                                        order by date_added"
    );
    // END TY TRACKER 2 -----------------------------------------------------------
        
    if ($orders_history->RecordCount() > 0) {
          while (!
    $orders_history->EOF) {
            echo 
    '      <tr>' "\n" .
                 
    '        <td class="smal<etcetera_snip>
    I think all of this code regarding to TY_tracker (which i do not have installed) should be evaluated through boolean TY_TRACKER first before it is executed like so:
    PHP Code:
    if (TY_TRACKER == 'True'
    correct? or did i miss something?

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

    Default Re: Super Orders v3.0 Support Thread

    The answer is even simpler.. If you turned on the Ty Tracker fields and do not have Ty Package Tracker installed (or installed correctly), you would get this error.. The flag to turn off Ty Package SHOULD be in Admin > Ty Package Tracker..

    Quote Originally Posted by nagelkruid View Post
    Hello,
    When i click the "print" button in an order the super_data_sheet.php is invoked which generates error:
    STATUS HISTORY 1054 Unknown column 'track_id1' in 'field list'
    in:
    [select orders_status_id, date_added, customer_notified, track_id1, track_id2, track_id3, track_id4, track_id5, comments from orders_status_history where orders_id = '12696' order by date_added]


    Looking at the code:
    PHP Code:
    <!-- TY TRACKER 1 BEGIN, DISPLAY TRACKING ID IN COMMENTS TABLE------------------------------->
            <td class="dataTableHeadingContent smallText" align="left" valign="top" width="23%"><strong><?php echo TABLE_HEADING_TRACKING_ID?></strong></td>
    <!-- END TY TRACKER  1 ------------------------------------------------------------>
            <td class="dataTableHeadingContent smallText" align="left" valign="top" width="40%"><strong><?php echo TABLE_HEADING_COMMENTS?></strong></td>
          </tr>
    <?php // TY TRACKER 2 BEGIN, INCLUDE DATABASE FIELDS ------------------------------
        
    $orders_history $db->Execute("select orders_status_id, date_added, customer_notified, track_id1, track_id2, track_id3, track_id4, track_id5, comments
                                        from " 
    TABLE_ORDERS_STATUS_HISTORY "
                                        where orders_id = '" 
    zen_db_input($oID) . "'
                                        order by date_added"
    );
    // END TY TRACKER 2 -----------------------------------------------------------
        
    if ($orders_history->RecordCount() > 0) {
          while (!
    $orders_history->EOF) {
            echo 
    '      <tr>' "\n" .
                 
    '        <td class="smal<etcetera_snip>
    I think all of this code regarding to TY_tracker (which i do not have installed) should be evaluated through boolean TY_TRACKER first before it is executed like so:
    PHP Code:
    if (TY_TRACKER == 'True'
    correct? or did i miss something?
    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. #237
    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 ericvanwenkop View Post
    Is there any way to change the PDF packing list? I want to remove the prices on it and change the layout a bit...
    Short answer is it's software.. It can all be modified to do whatever you wish.. That said, as I have said here previously, it's a PITA to do. So I personally will not be able to help with this.. (got too much on my plate with paid and personal projects)

    The PDF packingslip code was generously donated to the community for free, and apart from a few minor changes to align them functionally with the default packinglists/invoices they are as we got the code from the author.

    I suppose it could be made a LOT more flexible so that everyone could have everything they might want, with admin controlled options, etc.. However, I will leave that to someone else to develop and contribute..

    Feel free to search through this thread.. There's 1 or 2 people who've posted some of their modifications to the Super Orders PDF packing list..

    Good luck..
    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.

  8. #238
    Join Date
    Nov 2006
    Posts
    296
    Plugin Contributions
    2

    Default Re: Super Orders v3.0 Support Thread

    Quote Originally Posted by DivaVocals View Post
    The answer is even simpler.. If you turned on the Ty Tracker fields and do not have Ty Package Tracker installed (or installed correctly), you would get this error.. The flag to turn off Ty Package SHOULD be in Admin > Ty Package Tracker..
    did you read what i said about the boolean part at all?

  9. #239
    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 nagelkruid View Post
    did you read what i said about the boolean part at all?
    I did.. and I didn't see this was in reference to the super_data_sheet.php file..

    A search of this thread would have turned up this post: http://www.zen-cart.com/forum/showpo...6&postcount=55
    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. #240
    Join Date
    Nov 2006
    Posts
    296
    Plugin Contributions
    2

    Default Re: Super Orders v3.0 Support Thread

    Quote Originally Posted by DivaVocals View Post
    I did.. and I didn't see this was in reference to the super_data_sheet.php file..

    A search of this thread would have turned up this post: http://www.zen-cart.com/forum/showpo...6&postcount=55
    thanks, that is indeed what i was referring to.
    funny, i did search the thread and that post didn't come up in my results, and it is even a relative small thread yet....mmm

 

 
Page 24 of 102 FirstFirst ... 1422232425263474 ... 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