Debbie - it only adds what's in the data base, unless there is a trick I'm not aware of... You'd need to add it to the data base first before adding to an order.
Printable View
Debbie - it only adds what's in the data base, unless there is a trick I'm not aware of... You'd need to add it to the data base first before adding to an order.
Ok well does it have to be an active product/attribute to appear? Can disabled products/attributes be listed?
Because these are custom products they aren't standard.
@dharrison: All this module does is create a new empty order. This module does not have anything to do with adding products to an order.
You may receive a faster answer by asking questions regarding editting an order in the Edit Orders support thread (the default page / module shown after the empty order is created). I believe you can add disabled products (not sure on attributes), but the best way to find out what can be done without modification of Edit Orders would be to try out your scenario in a "test" store.
Thanks @lhungil
The manager defintiely wants to be able to add orders to the system, but also customised items. I shall have a read and a play.
I have installed the New Orders it works ok with disabled products and attributes
Hope this helps.
Hi lhungil,
I wonder if you can help me. I've recently installed Edit_Orders_4.1.4, Admin_New_Order_1.4 and Super_Orders_4.0.9 and most features are working well. I just have one problem that I'm trying to sort out.
Our main use for Edit_Orders, Admin_New_Order and Super_Orders is to make our order and payment management easier. We have many regular customers that will phone in their order, have us deliver the order and make the payment afterwards. We use Admin_New_Order to log the orders on our website easily.
The problem that I have is that I'm trying to use Super_Orders to track the payments for these orders, but to do that it requires me to select a payment method (namely "Purchase Orders") for the order for the payments to show up in my "Awaiting Payment" Report. There is currently no way to select a payment method when placing an order through Admin_New_Order as far as I'm aware.
Is there any way around this? (without placing the order through the front end) or am I just missing something? Otherwise, is there an easy way to fix this, or is there any chance that this could be added to a future update?
Any help with this issue will be much appreciated. Thanks :)
has this been updated or tested on 1.5.4?
Thank you
Hi there, new Zenner here!
I am running Zencart 1.5.0 with Edit Orders 4.1.4. All working well.
I am having difficulty loading Admin New Order, I receive the message stating I have to install a compatible version of Edit Orders first! I already do!
Any help appreciated
Is there a way I can 'tell' the installer for Admin New Order that Edit Orders is installed?
In the Zen Cart administrative interface, what version is shown as installed when you go to "Configuration" -> "Edit Orders"?
If it does not list a version, or the version listed does not match the version of Edit Orders you believe is installed... I would suspect something is not right with your installation of Edit Orders (or the installation is incomplete). I would suggest downloading a clean copy of Edit Orders, applying any needed patches from the Edit Orders support thread, and re-installing Edit Orders.
It would also be a good idea to check your "cache" and "logs" folder for any debug files. If running Zen Cart > 1.5.1, be aware you will need to manually merge the required changes to core files (do not blindly overwrite these files).
Hi there,
I followed your suggestion and re-installed edit orders, then installed admin new order..... and.... it worked!! thank you so much!
Cheers
We're updating a site to v1.5.5a, and we need to update this plugin. However, it only has compatibility to v1.5.1 listed.
Any timeline on a v1.5.5+ release? Pointers on making it work with the newer version?
Would love this for 1.5.5 as well. Is it definitely broken for 1.5.5.?
Me too. Any word on 1.5.5a compatibility?
I have just found a way to make this work in V1.5.5c.
I am no expert, so I should not say "make it work", but if I remove a few lines of code in the new_order.php file it seems to work just fine.
The lines can be found close to the bottom, and this is what they are (I have no real idea what they do - or don't do, in this case)...
// Create the order totals.
$order_totals = $GLOBALS['order_total_modules']->process();
for($i=0, $n=sizeof($order_totals); $i<$n; $i++) {
// Skip shipping modules. No shipping method has been added at this point.
if($order_totals[$i]['code'] == 'ot_shipping') continue;
$sql_data_array = array(
'orders_id' => $cInfo->orders_id,
'title' => $order_totals[$i]['title'],
'text' => $order_totals[$i]['text'],
'value' => (is_numeric($order_totals[$i]['value'])) ? $order_totals[$i]['value'] : '0',
'class' => $order_totals[$i]['code'],
'sort_order' => $order_totals[$i]['sort_order']
);
zen_db_perform(TABLE_ORDERS_TOTAL, $sql_data_array);
}
Be careful to only remove exactly this section... OH and back stuff up first, so if this does something really stupid you can fix it.
I hope somebody really clever on here will know why this chunk of code makes this fail.
I, too, am really wanting to use this for 1.5.5. I have edit orders for 1.5.5 installed and really could use this one as of late since I have been getting a lot of face to face orders. Thus far, I have only been able to create an invoice on Paypal as I cannot seem to get the current iteration of this plugin to work without breaking anything.
ZC 1.5.3. Installed it but when try to use get following error " WARNING: Could not locate language file: includes/languages/english/modules/shipping/storepickup.php"
This file is present there. I am able to access new order screen add product, when I enter Credit Card it does not show CC field and when click on Update it give above error on top of page and page is almost blank.
Any experiences with ZC 1.5.7b and Admin New Order?
Not a direct answer, but zc157 has incorporated the Encrypted Master Password (https://www.zen-cart.com/downloads.php?do=file&id=94) plugin, so that you can place an order via button-click for a customer from your admin.
If you've enabled the feature, then when you view a customer via the admin's Customers :: Customers, you'll now see a Place Order button that will enable you to log into a customer's storefront account to place an order on their behalf.
Thanks, that was very helpful!
By default it's turned off, so anyone looking for the on-switch should look at the docs below:
https://docs.zen-cart.com/user/admin_pages/configuration/configuration_mystore
Or, as an alternative, especially if you need to do it more often, or find yourself in situations where you need to create a customer and then place an order for them, you might wanna consider my POS plugin.