Results 1 to 10 of 45

Hybrid View

  1. #1
    Join Date
    Apr 2008
    Location
    Perth, Western Australia
    Posts
    1
    Plugin Contributions
    0

    Default Re: Need to get the Request for Quote Shipping module to work for v1.38a

    I have installed this module however the icon "shipping_rfq.gif" does not show (dreaded red X).

    includes/modules/shipping/rfq.php has the following line:
    $this->icon = DIR_WS_ICONS . 'shipping_rfq.gif';

    However, when I view the source of the displayed page it shows as:
    <legend>Request Shipping Quote&nbsp;<img src="DIR_WS_ICONSshipping_rfq.gif" alt="Request Shipping Quote" title=" Request Shipping Quote " width="100" height="80" /></legend>

    The icon is in the images/icons folder.

    Can anyone help?

  2. #2
    Join Date
    Sep 2005
    Location
    Waikato, New Zealand
    Posts
    1,539
    Plugin Contributions
    3

    Default Re: Need to get the Request for Quote Shipping module to work for v1.38a

    Does anyone have this working with the 1.3.9 version of zencart

    and

    Does the cart get "saved" till the quote is sent to the customer?
    Webzings Design
    Semi retired from Web Design

  3. #3
    Join Date
    Nov 2008
    Posts
    27
    Plugin Contributions
    0

    Default Re: Need to get the Request for Quote Shipping module to work for v1.38a

    I also need to know if the new RFQ 1.01b is compatible with ZenCart 1.3.9h.

    I need to upgrade ZenCart to close security holes, but I'll wait if they are not compatible (must have RFQ working). I would love to hear about a working install.

    ZenCart: 1.3.8a Fresh install back in 2008 (Admin folder renamed recently)
    Addons: Request For Quote (RFQ v1.01), FCK Editor 2.5
    Template: ezBlue
    Customizations: Maybe a few display text changes in the PHP code here and there (footer, etc) ... nothing special

  4. #4
    Join Date
    Feb 2005
    Location
    Houghton, MI, USA
    Posts
    19
    Plugin Contributions
    2

    xhtml problem Re: Need to get the Request for Quote Shipping module to work for v1.38a

    OK, I've finally gotten this module to work with the ability to set a shipping zone that causes the module to be DISABLED. If the shipping address is IN the shipping zone, this module is DISABLED. If the shipping address is NOT IN the shipping zone, this module is ENABLED.

    I've attached an updated rfq.php file with all the above corrections and my corrections. This is for Zen-Cart 1.38a.

    Here's my corrections:

    Starting at line 40 replace this code:
    Code:
            $check_flag = true;
            $check = $db->Execute("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id <> '" . MODULE_SHIPPING_RFQ_ZONE . "' and zone_country_id = '" . $order->delivery['country']['id'] . "' order by zone_id");
            while (!$check ->EOF) {
              if ($check->fields['zone_id'] < 1) {
                $check_flag = true;
                break;
              } elseif ($check->fields['zone_id'] == $order->delivery['zone_id']) {
                $check_flag = false;
                break;
              }
              $check->MoveNext();
    		}
    With this code:
    Code:
            $check_flag = true;
            $check = $db->Execute("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id <> '" . MODULE_SHIPPING_RFQ_ZONE . "' and zone_country_id = '" . $order->delivery['country']['id'] . "' order by zone_id");
            while (!$check ->EOF) {
              if ($check->fields['zone_id'] == $order->delivery['zone_id']) {
                $check_flag = false;
                break;
              }
              $check->MoveNext();
    		}
    WOO HOO!
    Last edited by 3rdCoast; 21 Jun 2011 at 10:07 PM.

  5. #5
    Join Date
    Feb 2005
    Location
    Houghton, MI, USA
    Posts
    19
    Plugin Contributions
    2

    red flag Re: Need to get the Request for Quote Shipping module to work for v1.38a

    One last (fingers crossed) minor correction. (Change <> to =).

    Code:
      $check_flag = true;
            $check = $db->Execute("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_SHIPPING_RFQ_ZONE . "' and zone_country_id = '" . $order->delivery['country']['id'] . "' order by zone_id");
            while (!$check ->EOF) {
              if ($check->fields['zone_id'] == $order->delivery['zone_id']) {
                $check_flag = false;
                break;
              }
              $check->MoveNext();
    		}
    I'll submit update to the add ons directory as well.
    Last edited by 3rdCoast; 27 Jun 2011 at 01:57 PM.

 

 

Similar Threads

  1. v151 Request for Quote plugin
    By raunharman in forum General Questions
    Replies: 1
    Last Post: 25 May 2013, 10:11 AM
  2. Replies: 10
    Last Post: 5 Mar 2013, 07:33 PM
  3. Request contact shipping quote for international orders?
    By picandnix in forum General Questions
    Replies: 0
    Last Post: 1 Nov 2011, 12:37 AM
  4. Looking for Manual Shipping Quote module
    By JacobBushnell in forum Addon Shipping Modules
    Replies: 4
    Last Post: 19 Sep 2011, 07:05 PM
  5. How to generate a Request for Quote?
    By kevinw in forum Managing Customers and Orders
    Replies: 4
    Last Post: 15 Mar 2007, 12:35 AM

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