Results 1 to 3 of 3

admin notes - highly recomended contrib

This is a discussion on admin notes - highly recomended contrib within the osCmax v2 Customization/Mods forums, part of the osCmax v2.0 Forums category; a fantastic contribution http://www.oscommerce.com/community/...l/search,admin plugs right into the back end with no problems (okay, one problem in the install you ...

      
  1. #1
    osCMax Development Team met00's Avatar
    Join Date
    Oct 2005
    Location
    wherever I happen to be at the moment
    Posts
    854
    Blog Entries
    2
    Rep Power
    21


    Default admin notes - highly recomended contrib

    a fantastic contribution
    http://www.oscommerce.com/community/...l/search,admin
    plugs right into the back end with no problems

    (okay, one problem

    in the install you have to modify orders.php as follows

    old code:
    Code:
    Released under the GNU General Public License
    */
    
    require('includes/application_top.php');
    
    require(DIR_WS_CLASSES . 'currencies.php');
    $currencies = new currencies();
    $orders_statuses = array();
    $orders_status_array = array();
    to:
    Code:
    Released under the GNU General Public License
    */
    
    require('includes/application_top.php');
    
    require(DIR_WS_CLASSES . 'currencies.php');
    $currencies = new currencies();
    if (!isset($HTTP_GET_VARS['cID'])) {
    $cid_query = tep_db_query("select customers_id from " . TABLE_ORDERS . " where orders_id = '" . (int)$oID . "'");
    $cidq = tep_db_fetch_array($cid_query);
    $cID = $cidq['customers_id'];
    }
    $orders_statuses = array();
    $orders_status_array = array();
    That's the only fix needed. )

    Now, as to why this is a great mod.

    1) allows you to make notes on individual accounts
    2) those customer notes show up in customers orders
    3) allows you to get rid of the 1,248 little scraps of paper cluttering your desk with notes on contribs, and other things with notes attached to the store/admin that are searchable and categorized... Every small mod can now have a recorded history in the store. Instructions and details that were noted on pieces of paper can now be accessed and not lost!

    another small contrib that is HIGHLY recomended (and should be in the next release of the oscMAX).
    so endith the lesson
    <think>sometimes I just sit's and thinks</think>
    "Here you are with a hand full of holes, a thumb up your ass, and a big grin to pass the time of day with." - TWB

  2. #2
    Active Member chrismole's Avatar
    Join Date
    Dec 2003
    Location
    Chicago
    Posts
    102
    Rep Power
    9


    Default

    hey met00,
    I applied this mod and it seems to work fine. However, it seems my store has lost the ability to make a customer's address entered at registration their primary address. I'm finding that new customers do not have a primary address and they have to manually set it during their first checkout.

    did you have any issues like this after this mod install?

    If not, do you have any clue where in this mod code I could have broken this functionality?

    Thx,
    C

  3. #3
    osCMax Development Team met00's Avatar
    Join Date
    Oct 2005
    Location
    wherever I happen to be at the moment
    Posts
    854
    Blog Entries
    2
    Rep Power
    21


    Default

    hmmm, maybe set it so customers_notes in the customers table deaults to null.
    so endith the lesson
    <think>sometimes I just sit's and thinks</think>
    "Here you are with a hand full of holes, a thumb up your ass, and a big grin to pass the time of day with." - TWB

Similar Threads

  1. installing GPG contrib
    By kerrydax in forum osCommerce 2.2 Modification Help
    Replies: 27
    Last Post: 08-20-2006, 02:01 PM
  2. Linkpoint - Which contrib to use? Please help!
    By giyer in forum osCommerce 2.2 Modification Help
    Replies: 13
    Last Post: 02-13-2006, 09:14 AM
  3. help with pwa contrib
    By dmiles in forum osCmax v1.7 Discussion
    Replies: 8
    Last Post: 05-15-2004, 03:50 PM
  4. Ask A Qusetion Contrib??
    By Kristine in forum osCmax v1.7 Discussion
    Replies: 1
    Last Post: 04-11-2004, 09:41 PM
  5. What to add Contrib for contact us page
    By Kristine in forum osCmax v1.7 Discussion
    Replies: 2
    Last Post: 04-08-2004, 02:31 PM

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
  •