Results 1 to 10 of 649

Hybrid View

  1. #1
    Join Date
    Apr 2005
    Location
    Houston, TX
    Posts
    1,410
    Plugin Contributions
    1

    Default Re: Return Authorization Module (RMA)

    There was no read me with the original files, but it was clear that the files that touched the core code were outdated. I did a winmerge and updated those files. I uploaded the rest of the files which are unique to this mod, along with running the SQL. But in the end it didn't work. I've read a few posts about the RMA module so apparently somebody has it working, but i'm not sure what zencart version they are using.

  2. #2
    Join Date
    Apr 2005
    Location
    Houston, TX
    Posts
    1,410
    Plugin Contributions
    1

    Default Re: Return Authorization Module (RMA)

    It just occured to me that there are some members of this forum that are using an updated version of this mod on 1.3! I've contacted them. If I can get a hold of the mod, I will upload it to the downloads section.

  3. #3
    Join Date
    Apr 2005
    Location
    Houston, TX
    Posts
    1,410
    Plugin Contributions
    1

    Default Re: Return Authorization Module (RMA)

    Well this is frustrating. I've searched posts in the archive contributions section and from what i gather, this WAS available for download in the old download section. But I have looked and looked again, and it is not there. Was this removed from the download section? If you have it, can you please let me know and we can make it available for everyone?

    Thanks!

  4. #4
    Join Date
    Apr 2005
    Location
    Houston, TX
    Posts
    1,410
    Plugin Contributions
    1

    Default Re: Return Authorization Module (RMA)


  5. #5
    Join Date
    Jan 2006
    Location
    Portland, Oregon
    Posts
    276
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by voltage
    Downloaded it and the readme file does say it is modified for 1.3.0.1.
    I am running version 1.3.5

    There seems to be something funny with the form. I don't code so any help would be appreciated.

    http://www.oldwestgames.com/returns.html

    Here's the file...

    /includes/templates/template_default/templates/tpl_returns_default.php

    Code:
    <?php
    /**
     * Return Template
     *
     * @package templateSystem
     * @copyright Copyright 2003-2005 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: tpl_page_3_default.php 3254 2006-03-25 17:34:04Z ajeh $
     */
    ?>
    <div class="centerColumn" id="pageThree">
    
    <h1 id="pageThreeHeading" class="mmn"><?php echo HEADING_TITLE; ?></h1>
    
    <div id="pageThreeMainContent">
    <?php  
    require($define_page);
    ?>
    </div>
    <div class="content">
    <?php echo zen_draw_form('returns', zen_href_link(FILENAME_RETURNS, 'action=send')); ?>
    <fieldset id="contactUsForm">
    <legend>Return Request</legend>
    <br class="clearboth" />
    <label class="inputLabel" for="contactname"><?php echo ENTRY_NAME; ?></label>
    <?php echo zen_draw_input_field('contactname', $name, ' size="40" id="contactname"') . '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?>
    <br class="clearboth" />
    <label class="inputLabel" for="email-address"><?php echo ENTRY_EMAIL; ?></label>
    <?php echo zen_draw_input_field('email', ($error ? $_POST['email'] : $email), ' size="40" id="email-address"') . '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?>
    <br class="clearboth" />
    <label class="inputLabel" for="street-address"><?php echo ENTRY_STREET_ADDRESS; ?></label>
      <?php echo zen_draw_input_field('street_address', '', zen_set_field_length(TABLE_ADDRESS_BOOK, 'entry_street_address', '40') . ' id="street-address"') . (zen_not_null(ENTRY_STREET_ADDRESS_TEXT) ? '<span class="alert">' . ENTRY_STREET_ADDRESS_TEXT . '</span>': ''); ?>
    <br class="clearboth" />
    <label class="inputLabel" for="city"><?php echo ENTRY_CITY; ?></label>
    <?php echo zen_draw_input_field('city', '', zen_set_field_length(TABLE_ADDRESS_BOOK, 'entry_city', '40') . ' id="city"') . (zen_not_null(ENTRY_CITY_TEXT) ? '<span class="alert">' . ENTRY_CITY_TEXT . '</span>': ''); ?>
    <br class="clearboth" />
    <?php
      if (ACCOUNT_STATE == 'true') {
    ?>
    <label class="inputLabel" for="state"><?php echo ENTRY_STATE; ?></label>
    
    <?php
        if ($process == true) {
          if ($entry_state_has_zones == true) {
            echo zen_draw_pull_down_menu('state', $zones_array, $zone_name . ' id="state"');
          } else {
            echo zen_draw_input_field('state', '', zen_set_field_length(TABLE_ADDRESS_BOOK, 'entry_state', '40') . ' id="state"');
          }
        } else {
          echo zen_draw_input_field('state', '', zen_set_field_length(TABLE_ADDRESS_BOOK, 'entry_state', '40') . ' id="state"');
        }
        if (zen_not_null(ENTRY_STATE_TEXT)) echo '<span class="alert">' . ENTRY_STATE_TEXT . '</span>';?>
    <br class="clearboth" />
    <?php
      }
    ?>
    <label class="inputLabel" for="postcode"><?php echo ENTRY_POST_CODE; ?></label>
    <?php echo zen_draw_input_field('postcode', '', zen_set_field_length(TABLE_ADDRESS_BOOK, 'entry_postcode', '40') . ' id="postcode"') . (zen_not_null(ENTRY_POST_CODE_TEXT) ? '<span class="alert">' . ENTRY_POST_CODE_TEXT . '</span>': ''); ?>
    <br class="clearboth" />
    <label class="inputLabel" for="order_number"><?php echo ENTRY_ORDER_NUMBER; ?></label>
    <?php echo zen_draw_input_field('order_number', '', 'size="30"') ; ?>
    <br class="clearboth" />
    <label class="inputLabel" for="value"><?php echo ENTRY_VALUE; ?></label>
    <?php echo zen_draw_input_field('value', '', 'size="30"') ; ?>
    <br class="clearboth" />
    <label class="inputLabel" for="item_number"><?php echo ENTRY_ITEM_NUMBER; ?></label>
    <?php echo zen_draw_input_field('item_number', '', 'size="15"') ; ?>
    <br class="clearboth" />
    <label class="inputLabel" for="item_name"><?php echo ENTRY_ITEM_NAME; ?></label>
    <?php echo zen_draw_input_field('item_name', '', 'size="30"') ; ?>
    <br class="clearboth" />
    <label class="inputLabel" for="action"><?php echo ENTRY_ACTION; ?></label>
    <select name="action">
    <?php echo '<option value="' . ENTRY_ACTION_REFUND . '">' . ENTRY_ACTION_REFUND . '</option>' ; ?>
    <?php echo '<option value="' . ENTRY_ACTION_REPLACE . '">' . ENTRY_ACTION_REPLACE . '</option>' ;?>
     </select>
    <br class="clearboth" />
    <label for="enquiry">Reason for Return:</label>
    <textarea name="enquiry" cols="30" rows="7" id="enquiry"></textarea>
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_SEND, BUTTON_SEND_ALT); ?></div>
    </fieldset>
    </form></div>
    
    </div>
    <div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) . '</a>'; ?></div>

  6. #6
    Join Date
    Aug 2004
    Location
    Germany
    Posts
    663
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    You seem to have missed the language file, when you uploaded this to your site....

  7. #7
    Join Date
    Jan 2006
    Location
    Portland, Oregon
    Posts
    276
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by masterblaster
    You seem to have missed the language file, when you uploaded this to your site....
    ah! I knew it was something simple. Thank you very much.

  8. #8
    Join Date
    Apr 2005
    Posts
    298
    Plugin Contributions
    0

    help question Re: Return Authorization Module (RMA)

    Can someone please put a link to this mod it was removed from the site in the eariler post.

  9. #9
    Join Date
    Jan 2006
    Location
    Portland, Oregon
    Posts
    276
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by voltage
    Okay. I have tested this with 1.3.5 and it seems to work just fine.

    However, as always seems to be the case with contributions, I want it to do more. lol.

    No, really, I was wondering if there was a way to have an actual personalized submission success page. As it is now it simply returns to an empty form...

    http://www.oldwestgames.com/returns.html?action=success

    Any ideas for this would be great.

    Great contribution. Sorely needed. Thank you.

    p.s. - (I could use some advice on how to organize the form boxes so they line up appropriately with their titles.)
    Last edited by mafiasam; 19 Sep 2006 at 04:23 AM.

  10. #10
    Join Date
    Sep 2006
    Posts
    38
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    Can someone re-post this mod? I searched all over and came up empty.

    The download links seem to be removed...

    Thanks in advance

 

 

Similar Threads

  1. v151 Flexible Return Authorization (RMA) for ZC v1.5.x [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 167
    Last Post: 11 Apr 2021, 08:56 PM
  2. Return Authorization Module
    By itspec in forum All Other Contributions/Addons
    Replies: 13
    Last Post: 10 Feb 2009, 11:29 PM
  3. Return Merchandise Authorization (RMA) Module Follow-up
    By killertofu in forum Managing Customers and Orders
    Replies: 1
    Last Post: 11 Aug 2008, 11:13 PM
  4. Return Authorization Module (RMA)
    By dscott1966 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 11 Nov 2006, 08:04 PM

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