HA! Thanks..I'm tryng.. 10 days after my (emergency) surgery. I started a new full time gig.. (I'm an IT PM/BA contractor by trade..) Hubby is making sure that I'm taking it pretty easy though.. (short work days and early/dinner bedtimes..)
Printable View
I needed to be able to see the shipping module when batch printing orders (we offer rush processing and charge extra for it). So I added a column to show what shipping was selected by the customer. I didn't add in the drop down to choose which shipping option is sorted, I am messing with it a little bit, but have nothing yet that works.
SeanCode:In ADMIN\super_batch_forms.php
Find (lines 251-52)
$orders_query_raw = "SELECT o.orders_id, o.customers_id, o.customers_name,
o.payment_method, o.date_purchased, o.order_total, s.orders_status_name
Change to
$orders_query_raw = "SELECT o.orders_id, o.customers_id, o.customers_name,
o.payment_method, o.shipping_method, o.date_purchased, o.order_total, s.orders_status_name
Find (lines 288-291)
if (isset($_GET['payments']) && zen_not_null($_GET['payments'])) {
$orders_query_raw .= " AND o.payment_module_code = '" . $_GET['payments'] . "'";
}
Add below
if (isset($_GET['shipments']) && zen_not_null($_GET['shipments'])) {
$orders_query_raw .= " AND o.shipment_module_code = '" . $_GET['shipments'] . "'";
}
Find (line 435)
<td class="dataTableHeadingContent" align="left"><?php echo TABLE_HEADING_PAYMENT_METHOD; ?></td>
Add below it
<td class="dataTableHeadingContent" align="left"><?php echo TABLE_HEADING_SHIPPING_METHOD; ?></td>
Find (line 450)
<td class="dataTableContent" align="left"><?php echo $orders->fields['payment_method']; ?></td>
Add below (or other place you want this to show up)
<td class="dataTableContent" align="left"><?php echo $orders->fields['shipping_method']; ?></td>
Open up file ADMIN/includes/languages/english/super_batch_forms.php
Add to bottom of file
define('TABLE_HEADING_SHIPPING_METHOD', 'Shipping Method');
define('HEADING_SEARCH_SHIPMENT_METHOD', 'Shipping Method');
Hello Folks
Its been many years since I installed or messed with this module. But I had a new project to help with..
My issue is when using the split orders part of the plugin. I check the boxes for the items I want to split to a different order. The child order is created. But when I go to the child order. None of the products I split from the previous Order are listed. It simply has a icon for split packing slip. None of the items are listed. Maybe its something I Simply overlooked or a file that didn't transfer when installing..
Appreciate anyone that has dealt with this same issue to offer some insight.
Also - I just noticed after checking split orders on my original cart and comparing results. the child orders on the new site are not only not having products added but also they are not being assigned an order ID.
Thanks!
On another site I run we use an old version of zencart. Bad Idea I know But it all works so well I dont want to screw it up. Its version 1.3.8a And super orders version 3.0 . And it works perfectly..
Out of curiosity I tried to put the older version of super orders on my new installation of zen cart and it did not work really didnt expect it to. I also compared the super_edit.php to the old version on my other install and it was identical. As that is the file that is called on when you click the split orders dialog opens up.
Code:<!-- body_text //-->
<td align="center">
<table border="0" cellpadding="2" cellspacing="0" width="100%">
<form name="edit" action="https://xxx/super_edit.php" method="post"><input type="hidden" name="securityToken" value="xxx />
<input type="hidden" name="target" value="product" />
<input type="hidden" name="process" value="1" />
<input type="hidden" name="oID" value="6003" />
<!-- Begin Products Listing Block -->
Either way I will keep messing with it..But this will be pretty important to my client as they do a ton of back orders and planned to split the items that will be back ordered.. If need be I can speak to my client about turning this into a paid project for a willing coder.
Hi all, havent had time to search as I have to get ready to head to work, drive two hours after crossing Mexican border... I have an issue with some text when writing comments in the details section of super orders, though I am not sure if it is a module issue, but I did have the same issue with 2.0, I am currently using the 4.0.9 version of Super Orders.
When I write a comment in Details, the end result is the following attached image snippet:
Attachment 15699Quote:
Hey all this is an example\r\nof what is the results\r\nof the comments\r\nperhaps it is the \"enter\" or next line issue?
Attachment 15700
Ideas? Its something I can deal with but its also been happening since 2.0 I think.
thanks,
Gerry
I've just noticed that one-time attribute charges are not displayed on the admin invoice (when you click invoice button from order details page) or on the batch pdf packing slips. Is there any way to add this info? Kind of important, as the total doesn't add up on paper without the one-time charge displayed.
Thanks.