Page 2 of 13 FirstFirst 123412 ... LastLast
Results 11 to 20 of 122
  1. #11
    Join Date
    Jul 2009
    Posts
    5
    Plugin Contributions
    0

    Default Re: Admin Simple Create Order Support Thread

    I am having the same problem as previous poster.
    I also have the inc/exc. VAT mod installed.
    The problem is that the invoice only adds the exc. tax prices to the total, but in the text is says inc. tax.

    I can't figure out how this happens.

  2. #12
    Join Date
    Mar 2005
    Posts
    58
    Plugin Contributions
    0

    Default Re: Admin Simple Create Order Support Thread

    I am using Admin Simple Create Order so that my client can add any physical orders they receive by check via mail. I can't seem to find a way to change the payment method from Credit Card to Check. Is there a way to do this? Thanks.

  3. #13
    Join Date
    Jul 2008
    Location
    Bristol, England
    Posts
    17
    Plugin Contributions
    1

    Default Re: Admin Simple Create Order Support Thread

    Quote Originally Posted by cycochuck View Post
    Found a solution to my problem. Not sure if its the right way to do it since I'm not a coder, but whatever works.

    in /admin/create_orders.php look at line 42. It will say:
    Code:
    WHERE `customers`.`customers_id` = ".$customer_id;
    Change it so it now says:
    Code:
    WHERE ".TABLE_CUSTOMERS." . `customers_id` = ".$customer_id;
    You may get the following error message after this fix:


    If you get this look in the /admin/create_orders.php file for the following:
    Code:
    'currency_value' => zen_get_currency_value(DEFAULT_CURRENCY),
    and comment out the line. It should work now.
    I found i was getting a blank page after fixing the initial table error.

    Found the currency function is included in this addon in admin/includes/functions/extra_functions/edit_orders.php

    To fix this just upload this file or add:

    Code:
    ////////////////////////////////////////////////////////////////////////////////////////////////
      //
      // Function    : zen_get_currency_value
      //
      // Arguments   : currency_code		currency code string
      //
      // Return      : currency_value
      //
      // Description : Function to retrieve the currency_value based on the currency's code
      //
      ////////////////////////////////////////////////////////////////////////////////////////////////
      function zen_get_currency_value($currency_code) {
    
       global $db;
        $currency_query = $db -> Execute("select * from " . TABLE_CURRENCIES . " where code = '" . $currency_code . "'");
    
        if (!$currency_query->RecordCount()) {
          return 0;
        }
        else {
          return $currency_query->fields['value'];
        }
      }
    to the end of this edit_orders.php file before the closing ?> tag.

    This will make sure the currency symbol is inserted into the database for the order.

  4. #14
    Join Date
    Dec 2009
    Posts
    32
    Plugin Contributions
    0

    Default Re: Admin Simple Create Order Support Thread

    Hi,
    Did anyone get the Tax section working on this? I don't have any tax mods added on, just have 1 tax rate set to the products but when i create an order it brings up the tax rate in the tax box does not apply the tax onto the product price?

    Regards,
    Breda

  5. #15
    Join Date
    Jun 2010
    Posts
    9
    Plugin Contributions
    0

    Default Re: Admin Simple Create Order Support Thread

    I'm having similar issues:

    1) Can't delete orders from the admin portal - annoying, but not crucial. I can delete them in the database manually if I really want to.

    2) A confirmation email is NOT sent to the customer when I use the Create Order function. Nor is the [NEW ORDER] email sent to the Admin email addresses. This is a big problem for us, the customer needs to get the confirmation email and we need to know there is a new order - we have a group of people that manage fulfillment.

    3) The "freeshipper" is the default shipping profile. Even if I type in something else in the FREE SHIPPING! field, it doesn't keep the data when submitted. The invoices still say "FREE SHIPPING!" Bad! We don't offer FREE SHIPPING, ever.... How do I fix this??

    Any help is greatly appreciated!

    Thanks

  6. #16
    Join Date
    Apr 2008
    Location
    South Florida
    Posts
    197
    Plugin Contributions
    0

    Default Re: Admin Simple Create Order Support Thread

    Quote Originally Posted by lpettyjohn View Post
    I'm having similar issues:

    1) Can't delete orders from the admin portal - annoying, but not crucial. I can delete them in the database manually if I really want to.

    2) A confirmation email is NOT sent to the customer when I use the Create Order function. Nor is the [NEW ORDER] email sent to the Admin email addresses. This is a big problem for us, the customer needs to get the confirmation email and we need to know there is a new order - we have a group of people that manage fulfillment.

    3) The "freeshipper" is the default shipping profile. Even if I type in something else in the FREE SHIPPING! field, it doesn't keep the data when submitted. The invoices still say "FREE SHIPPING!" Bad! We don't offer FREE SHIPPING, ever.... How do I fix this??

    Any help is greatly appreciated!

    Thanks
    Same issues here..

  7. #17
    Join Date
    Jun 2006
    Posts
    566
    Plugin Contributions
    0

    Default Re: Admin Simple Create Order Support Thread

    1. i had an issue with the create customer from admin but was able to fix it with bye overiding this mods files with the add customers from admin mod files.

    2. i noticed for edit orders the email you send to customers is not in the same format and really confuses the customers. like to have the same format email sent as the original carts order email.

    3. the whole create an order is not great i just end up using log in as customers.

    but would there be a way to set-up the create order section so you have the choosen customers group prices show up automatically, and all the shipping and payment options availible to be choosen via drop down or radio buttons.

    also noticed that it automatically creates the order as soon as you choose the customer and the mod just sends you to a blank edit order page to fill with products it would be nice if you could at least confirm an order before it stores any info on the database.
    www.gorillagear.ca = zencart v1.3.9h with 40+ mods

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

    Default Re: Admin Simple Create Order Support Thread

    Thought I'd share my experience with this mod.. This mod is using a much older and buggier version of Edit Orders so I decided to upgrade to Edit Orders 2.03. I made a few modifications to Edit Orders to use the same comments code as the latest version of Zen Cart (1.3.9) along with a few other minor cosmetic/functional updates to Edit Orders.

    Next I updated all the Add Customers files with the latest version of Add Customers available.

    Lastly if you downloaded this add-on from the Zen Cart downloads section, please note that there is an error in the submitted files that need to be corrected. In /admin/create_orders.php look at line 42. It will say:
    Code:
    WHERE `customers`.`customers_id` = ".$customer_id;
    Change it so it now says:
    Code:
    WHERE ".TABLE_CUSTOMERS." . `customers_id` = ".$customer_id;
    The reason that everyone is having issues with the delete NOT working is that the code in the orders.php file that comes with this add-on is wrong. Follow the instructions for editing the orders.php file that comes with Edit Orders and that should resolve this issue..

    Quote Originally Posted by MB1 View Post
    also noticed that it automatically creates the order as soon as you choose the customer and the mod just sends you to a blank edit order page to fill with products it would be nice if you could at least confirm an order before it stores any info on the database.
    I agree, but I think that this because of this add-on's dependence on Edit Orders is the reason why.. Edit Orders won't work if there is no order to Edit.. Not the greatest solution, but this is still a doable solution..
    Last edited by DivaVocals; 27 Oct 2010 at 08:49 PM.
    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.

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

    Default Re: Admin Simple Create Order Support Thread

    I implemented this by creating a extra functions folder for Create Orders (versus updating the one for Edit Orders).

    I created admin/includes/functions/extra_functions/create_order.php with the the following code:
    Code:
    <?php
    //
    // +----------------------------------------------------------------------+
    // |zen-cart Open Source E-commerce                                       |
    // +----------------------------------------------------------------------+
    // | Copyright (c) 2007 Numinix Technology                           |
    // |                                                                      |
    // | http://www.zen-cart.com/index.php                                    |
    // +----------------------------------------------------------------------+
    // | This source file is subject to version 2.0 of the GPL license,       |
    // | that is bundled with this package in the file LICENSE, and is        |
    // | available through the world-wide-web at the following url:           |
    // | http://www.zen-cart.com/license/2_0.txt.                             |
    // | If you did not receive a copy of the zen-cart license and are unable |
    // | to obtain it through the world-wide-web, please send a note to       |
    // | [email protected] so we can mail you a copy immediately.          |
    // +----------------------------------------------------------------------+
    /* 
     * @version $Id: edit_orders.php, v 1.0.0 12/11/2007 12:08:59 numinix $
     *
     */
     
      ////////////////////////////////////////////////////////////////////////////////////////////////
      //    Function    : zen_get_currency_value
      //    Arguments   : currency_code        currency code string
      //    Return      : currency_value
      //    Description : Function to retrieve the currency_value based on the currency's code
      ///////////////////////////////////////////////////////////////////////////////////////////////
      function zen_get_currency_value($currency_code) {
       global $db;
        $currency_query = $db -> Execute("select * from " . TABLE_CURRENCIES . " where code = '" . $currency_code . "'");
        if (!$currency_query->RecordCount()) {
          return 0;
        }
        else {
          return $currency_query->fields['value'];
        }
      }
    
    ?>

    Quote Originally Posted by rickcj View Post
    I found i was getting a blank page after fixing the initial table error.

    Found the currency function is included in this addon in admin/includes/functions/extra_functions/edit_orders.php

    To fix this just upload this file or add:

    Code:
    ////////////////////////////////////////////////////////////////////////////////////////////////
      //
      // Function    : zen_get_currency_value
      //
      // Arguments   : currency_code        currency code string
      //
      // Return      : currency_value
      //
      // Description : Function to retrieve the currency_value based on the currency's code
      //
      ////////////////////////////////////////////////////////////////////////////////////////////////
      function zen_get_currency_value($currency_code) {
    
       global $db;
        $currency_query = $db -> Execute("select * from " . TABLE_CURRENCIES . " where code = '" . $currency_code . "'");
    
        if (!$currency_query->RecordCount()) {
          return 0;
        }
        else {
          return $currency_query->fields['value'];
        }
      }
    to the end of this edit_orders.php file before the closing ?> tag.

    This will make sure the currency symbol is inserted into the database for the order.
    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. #20
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Admin Simple Create Order Support Thread

    So I'm still testing this.. Now that I've compared the version of this mod available here with the latest version of Edit Orders (v2.03) I'm going to see if I can figure out how to get this to work fully with the latest version of edit orders.. While I can create orders with the latest version of Edit Orders, what is missing is the ability to send an order confirmation e-mail to a customer and the shipping estimate data..

    Also I noticed that regardless of which version of Edit Orders I use (the modified one that comes with this module or the latest version) the customer's street address comes through on the order without the state information. Very curious as I cannot see what in the code would cause this behavior..

    Edited to Add: I see now the difference.. Customers who sign-up for an account in the store have a value in entry_zone_id but not in entry_state in the addressbook tables. While customers added using the Add Customer add-on will have an entry in entry_state but not in entry_zone_id. Seems that the create_orders.php code needs to accommodate BOTH kinds of customers..
    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.

 

 
Page 2 of 13 FirstFirst 123412 ... LastLast

Similar Threads

  1. v150 Admin New Order [Support Thread]
    By lhungil in forum Addon Admin Tools
    Replies: 121
    Last Post: 5 Feb 2021, 07:51 PM
  2. Admin Simple Create Order
    By stesouthby in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 23 Mar 2011, 02:35 PM
  3. Admin Simple Create Order
    By dmm2020 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 13 Nov 2010, 04:26 PM
  4. Re: Simple SEO URL [support thread]
    By creamcrackers in forum General Questions
    Replies: 2
    Last Post: 16 Aug 2009, 03:02 PM
  5. [Support Thread] Simple Video Manager
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 1 Nov 2008, 02:44 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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR