Page 132 of 202 FirstFirst ... 3282122130131132133134142182 ... LastLast
Results 1,311 to 1,320 of 2020
  1. #1311
    Join Date
    Jan 2009
    Posts
    69
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Hello, i couldnt find the solution /thread for the famous red X problem in super order,

    can someone help me?

  2. #1312
    Join Date
    Aug 2007
    Location
    Williston, Vermont
    Posts
    182
    Plugin Contributions
    1

    Default Re: Super Orders 2.0

    sorry, but what's the red X problem? - never mind- I see you started a new thread

  3. #1313
    Join Date
    Nov 2007
    Location
    New Jersey
    Posts
    12
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Hi All. After spending a year in the hospital with a bunch of broken bones, I'm finally getting back to work!
    I've installed a clean zc using 1.3.8a and went thru the mods and decided Super Orders might be a bug help in getting me back up to speed quickly - and NOW I read this post and find it's no longer supported! ughh!
    I'm mostly looking for opinions on whether I should abandon SO and restore my default db n files?

    Any replies appreciated - I'd also be interested in knowing the modules that you have success with! My shops tend to be for clients that offer things like shirts, shoes - stuff that usually have multiple attributes associated to one piece.

    Best to all~
    jo
    Last edited by topaward; 16 May 2009 at 10:13 PM.
    [FONT="Comic Sans MS"]Jo[/FONT]

    Get YOUR logo...
    everywhere by Awards Worth Winning
    http://www.awardsworthwinning.com
    Make their lives rewarding with Old Pine Shop
    http://www.oldpineshoponline.com

  4. #1314
    Join Date
    Mar 2008
    Posts
    33
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Sorry, can someone tell me which version of Supers orders to use with Zencart 3.7?

  5. #1315
    Join Date
    May 2009
    Posts
    8
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Bug Reports/Fixes:

    Quote Originally Posted by dealbyethan.com View Post
    Does anyone know how to make the product image smaller on Super packing slip? At the moment, it looks too big and stretched. Thanks in advance.
    This is an old post but I ran into the same problem this week and couldn't find a reply. I noticed rev47 just came out with the same bug. The packing slip image is distorted because there is an error in the code around line 200 in super_packingslip.php that gives the incorrect order of SMALL_IMAGE WIDTH and SMALL_IMAGE_HEIGHT. (For those who want to know, the values of SMALL_IMAGE WIDTH and SMALL_IMAGE_HEIGHT in the packing slip thumbnails are set in Admin-->Configuration-->Images.)

    old incorrect code in catalog/admin/super_packingslip.php:

    echo ' <td class="dataTableContent" align="left">' . zen_image(DIR_WS_CATALOG . DIR_WS_IMAGES . $products->fields['products_image'] , $order->products[$i]['name'], SMALL_IMAGE_HEIGHT, SMALL_IMAGE_WIDTH) . '</a>&nbsp;</td>';

    Code should be:

    echo ' <td class="dataTableContent" align="left">' . zen_image(DIR_WS_CATALOG . DIR_WS_IMAGES . $products->fields['products_image'] , $order->products[$i]['name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a>&nbsp;</td>';


    Another potential problem -- catalog/admin/includes/super_stylesheet.CSS is missing # signs before a number of the color hex value assignments.

  6. #1316
    Join Date
    Feb 2009
    Posts
    5
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    So has anyone been able to solve the issue with PayPal payments not being recorded in SO tables or being calculated in super_order.php?

    I tried the solution posted Here but it had no effect. Nothing is going into so_payments unless I manually enter them. Looks like the code above should work at least to make the Balance Due accurate, but it never gets written anywhere.

    Zen 1.3.8a, SO 2.0 rev47

  7. #1317
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,617
    Plugin Contributions
    19

    Default Re: Super Orders 2.0

    I need help with invoice look.

    My SuperOrders page looks good, but when I click Invoice, I don't have all the data I need.

    I need invoice to look like this:

    Product --> Model --> Tax --> Price (ex) --> Tax value --> Price (incl)


    Also, when I go to Print Invoice, I would like the product rows to be colored.

    Here is how it looks now:

    SO page:



    Invoice page:


    why don't i have prices with and without tax, and why does my tax field say "nema!" (it means "no tax")

  8. #1318
    Join Date
    Jul 2007
    Posts
    45
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by Jaaxx View Post
    So has anyone been able to solve the issue with PayPal payments not being recorded in SO tables or being calculated in super_order.php?

    I tried the solution posted Here but it had no effect. Nothing is going into so_payments unless I manually enter them. Looks like the code above should work at least to make the Balance Due accurate, but it never gets written anywhere.

    Zen 1.3.8a, SO 2.0 rev47
    What I have been using is the changes as discussed on page 112 , it gets the paypal figures to work with Super Orders.

    I also use the refunds change as discussed here as you can now make refunds directly from either orders or Super Orders
    England's 1st Juggling Shop www.oddballs.co.uk

  9. #1319
    Join Date
    Feb 2009
    Posts
    5
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Topcat24,

    Thanks! Looks like those links will get me there. I've been beating my head against the PHP for days. Dunno how I managed to miss those posts.

    Looks like the right way to go.

  10. #1320
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,617
    Plugin Contributions
    19

    Default Re: Super Orders 2.0

    I solved my problem partially and now my invoice look like Product - Model - Price (ex) - Tax rate - Price (incl) - Total (ex) - Total (incl)

    All i did was changed the admin/super_invoice.php like this:

    original (at line 221):
    Code:
    <?php
        for ($i = 0, $n = sizeof($order->products); $i < $n; $i++) {
          echo '      <tr class="dataTableRow">' . "\n" .
               '        <td class="dataTableContent" valign="top" align="right">' . $order->products[$i]['qty'] . '&nbsp;x</td>' . "\n" .
               '        <td class="dataTableContent" valign="top">' . $order->products[$i]['name'];
    
          if (isset($order->products[$i]['attributes']) && (($k = sizeof($order->products[$i]['attributes'])) > 0)) {
            for ($j = 0; $j < $k; $j++) {
              echo '<br /><nobr><small>&nbsp;<i> - ' . $order->products[$i]['attributes'][$j]['option'] . ': ' . $order->products[$i]['attributes'][$j]['value'];
              if ($order->products[$i]['attributes'][$j]['price'] != '0') echo ' (' . $order->products[$i]['attributes'][$j]['prefix'] . $currencies->format($order->products[$i]['attributes'][$j]['price'] * $order->products[$i]['qty'], true, $order->info['currency'], $order->info['currency_value']) . ')';
              if ($order->products[$i]['attributes'][$j]['product_attribute_is_free'] == '1' and $order->products[$i]['product_is_free'] == '1') echo TEXT_INFO_ATTRIBUTE_FREE;
              echo '</i></small></nobr>';
            }
          }
    
          echo '        </td>' . "\n" .
               '        <td class="dataTableContent" valign="top">' . $order->products[$i]['model'] . '</td>' . "\n";
          echo '        <td class="dataTableContent" align="right" valign="top">';
          if ($display_tax) {
            echo zen_display_tax_value($order->products[$i]['tax']) . '%';
          }
          else {
            echo ENTRY_NO_TAX;
          }
          echo '</td>' . "\n" ;
        if ($display_tax) {
          echo '        <td class="dataTableContent" align="right" valign="top"><strong>' . $currencies->format($order->products[$i]['final_price'], true, $order->info['currency'], $order->info['currency_value']) . '</strong></td>' . "\n" .
               '        <td class="dataTableContent" align="right" valign="top"><strong>' . $currencies->format(zen_add_tax($order->products[$i]['final_price'], $order->products[$i]['tax']), true, $order->info['currency'], $order->info['currency_value']) . '</strong></td>' . "\n" .
               '        <td class="dataTableContent" align="right" valign="top"><strong>' . $currencies->format($order->products[$i]['final_price'] * $order->products[$i]['qty'], true, $order->info['currency'], $order->info['currency_value']) . '</strong></td>' . "\n" .
               '        <td class="dataTableContent" align="right" valign="top"><strong>' . $currencies->format(zen_add_tax($order->products[$i]['final_price'], $order->products[$i]['tax']) * $order->products[$i]['qty'], true, $order->info['currency'], $order->info['currency_value']) . '</strong></td>' . "\n";
          echo '      </tr>' . "\n";
        }
        else {
          echo '        <td class="dataTableContent" align="right" valign="top"><strong>' . $currencies->format($order->products[$i]['final_price'], true, $order->info['currency'], $order->info['currency_value']) . '</strong></td>' . "\n" .
               '        <td class="dataTableContent" align="right" valign="top"><strong>' . $currencies->format($order->products[$i]['final_price'] * $order->products[$i]['qty'], true, $order->info['currency'], $order->info['currency_value']) . '</strong></td>' . "\n" .
               '      </tr>' . "\n";
        }
        }
    ?>
    to this:
    Code:
    <?php
        for ($i = 0, $n = sizeof($order->products); $i < $n; $i++) {
          echo '      <tr class="dataTableRow">' . "\n" .
               '        <td class="dataTableContent" valign="top" align="right">' . $order->products[$i]['qty'] . '&nbsp;x</td>' . "\n" .
               '        <td class="dataTableContent" valign="top">' . $order->products[$i]['name'];
    
          if (isset($order->products[$i]['attributes']) && (($k = sizeof($order->products[$i]['attributes'])) > 0)) {
            for ($j = 0; $j < $k; $j++) {
              echo '<br /><nobr><small>&nbsp;<i> - ' . $order->products[$i]['attributes'][$j]['option'] . ': ' . $order->products[$i]['attributes'][$j]['value'];
              if ($order->products[$i]['attributes'][$j]['price'] != '0') echo ' (' . $order->products[$i]['attributes'][$j]['prefix'] . $currencies->format($order->products[$i]['attributes'][$j]['price'] * $order->products[$i]['qty'], true, $order->info['currency'], $order->info['currency_value']) . ')';
              if ($order->products[$i]['attributes'][$j]['product_attribute_is_free'] == '1' and $order->products[$i]['product_is_free'] == '1') echo TEXT_INFO_ATTRIBUTE_FREE;
              echo '</i></small></nobr>';
            }
          }
    
          echo '        </td>' . "\n" .
               '        <td class="dataTableContent" valign="top">' . $order->products[$i]['model'] . '</td>' . "\n";
          echo '        <td class="dataTableContent" align="right" valign="top"><b>' .
    		              $currencies->format($order->products[$i]['final_price'], true, $order->info['currency'], $order->info['currency_value']) . '</strong></td>' . "\n" .
    			'		<td class="dataTableContent" align="right" valign="top">' . zen_display_tax_value($order->products[$i]['tax']) . '%</td>' . "\n" .  
               '        <td class="dataTableContent" align="right" valign="top"><strong>' . 
    		   $currencies->format(zen_add_tax($order->products[$i]['final_price'], $order->products[$i]['tax']), true, $order->info['currency'], $order->info['currency_value']) . '</strong></td>' . "\n" .
    		  ' <td class="dataTableContent" align="right" valign="top"><strong>' . $currencies->format($order->products[$i]['final_price'] * $order->products[$i]['qty'], true, $order->info['currency'], $order->info['currency_value']) . '</strong></td>' . "\n" .
               '        <td class="dataTableContent" align="right" valign="top"><strong>' . $currencies->format(zen_add_tax($order->products[$i]['final_price'], $order->products[$i]['tax']) * $order->products[$i]['qty'], true, $order->info['currency'], $order->info['currency_value']) . '</strong></td>' . "\n";
          echo '      </tr>' . "\n";
        }
    ?>
    NOTE: you will also need to change some lines above because i changed the order of elements.

    Change to something like this:

    around line 207 change:
    Code:
    <td class="dataTableHeadingContent" colspan="2"><?php echo TABLE_HEADING_PRODUCTS; ?></td>
            <td class="dataTableHeadingContent"><?php echo TABLE_HEADING_PRODUCTS_MODEL; ?></td>
            <td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_TAX; ?></td>
            <?php if ($display_tax) { ?>
            <td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_PRICE_EXCLUDING_TAX; ?></td>
            <td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_PRICE_INCLUDING_TAX; ?></td>
            <td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_TOTAL_EXCLUDING_TAX; ?></td>
            <td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_TOTAL_INCLUDING_TAX; ?></td>
            <?php }
            else { ?>
            <td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_PRICE_NO_TAX; ?></td>
            <td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_TOTAL_NO_TAX; ?></td>
            <?php } ?>
    to this:
    Code:
    <td class="dataTableHeadingContent" colspan="2"><?php echo TABLE_HEADING_PRODUCTS; ?></td>
            <td class="dataTableHeadingContent"><?php echo TABLE_HEADING_PRODUCTS_MODEL; ?></td>
            <td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_PRICE_EXCLUDING_TAX; ?></td>
            <td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_TAX; ?></td>
            <td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_PRICE_INCLUDING_TAX; ?></td>
            <td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_TOTAL_EXCLUDING_TAX; ?></td>
            <td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_TOTAL_INCLUDING_TAX; ?></td>

    I hope this helps. Maybe i copied something wrong here - if so, contact me and i can email you complete file.

    IMPORTANT: I use only one tax rate and don't have untaxable goods so this works for me. I don't know if it will work with different or no tax rates!

    Anyway, it works for me...

 

 

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