Thanks for the info guy's. They do have really really long product names.
Printable View
If you are using Super Orders with Zen Cart v1.5.3, please be advised that this module has not yet been updated for Zen Cart v1.5.3
(updates are in to Super Orders are in progress. PLEASE don't ask for a timeframe.. we're volunteers.. doing this in our SPARE time.. that said we're working as fast as our time permits..)
The upcoming release WILL NOT be backwards compatible.. If you are running v1.5.0 - 1.5.1 of Zen Cart the upcoming Super Order v4.0.10 will NOT work on your site, and there are ABSOLUTELY no plans to make it backwards compatible.
DivaVocals,
Thank you, yes I am running ZC 1.5.3 right now.
Look forward to see the Super Order 4.0.10
Thank a lot of who make this great module.
I know that particular error and thought I squashed it during my edit sweep. Did you grab the files BEFORE DivaVocals merged my changes? You can tell as one of the changes would say "<!-- BOF added to get currency type and value for totals (modified for ZenCart 1.5.3 and beyond by retched) -->"
After I batch update the status of my orders to "complete", some of them revert back to "pending". I have been CAREFULLY checking to be sure all are checked and the "pending" total equals "0" after I'm done. Then, mysteriously, a select few will revert back to pending.
I believe I have tracked it down to something switching them back after I capture my funds in PayPal. Tonight, the only orders that switched back were orders that were paid with "paypalwpp". Also, the comments in the order history at the time of the pending status change references the PayPal status change to "complete".
Can someone help me find where to fix this? It seems like a switch somewhere, but I can't find it.
Thanks a million!
I need some help to add a much needed feature to Super Orders. Right now I have it set up so that orders that are paid for get assigned the status "In Production". I need a function to query the contents of an order before assigning it a status update and if it contains an item from a certain category it gets assigned a different status "Wholesale - In Production".
There's these two functions from admin/includes/functions/general.php
Code:////
function zen_cfg_pull_down_order_statuses($order_status_id, $key = '') {
global $db;
$name = (($key) ? 'configuration[' . $key . ']' : 'configuration_value');
$statuses_array = array(array('id' => '0', 'text' => TEXT_DEFAULT));
$statuses = $db->Execute("select orders_status_id, orders_status_name
from " . TABLE_ORDERS_STATUS . "
where language_id = '" . (int)$_SESSION['languages_id'] . "'
order by orders_status_id");
while (!$statuses->EOF) {
$statuses_array[] = array('id' => $statuses->fields['orders_status_id'],
'text' => $statuses->fields['orders_status_name'] . ' [' . $statuses->fields['orders_status_id'] . ']');
$statuses->MoveNext();
}
return zen_draw_pull_down_menu($name, $statuses_array, $order_status_id);
}
function zen_get_order_status_name($order_status_id, $language_id = '') {
global $db;
if ($order_status_id < 1) return TEXT_DEFAULT;
if (!is_numeric($language_id)) $language_id = $_SESSION['languages_id'];
$status = $db->Execute("select orders_status_name
from " . TABLE_ORDERS_STATUS . "
where orders_status_id = '" . (int)$order_status_id . "'
and language_id = '" . (int)$language_id . "'");
return $status->fields['orders_status_name'] . ' [' . (int)$order_status_id . ']';
}
////
And then there's this from admin/includes/init_includes/init_so_config.php
Code:$sql = "INSERT IGNORE INTO ".DB_PREFIX."configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES (NULL, 'Auto Status - Payment', 'AUTO_STATUS_PAYMENT', '2', 'Number of the order status assigned when a payment (<strong>not</strong> attached to a purchase order) is added to the payment data.', '".$so_configuration_id."', 5, now(), now(), 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses(')";
$db->Execute($sql);
I know I pretty much need to clone the above code from init_so_config.php into another drop down option for my admin but I'm not sure if I need to edit one of the two above functions or create an entirely new one to compare the customer's order to their payment status. Any help in accomplishing this would be so greatly appreciated.
Hi, I installed superorders in zencart 1.5.3 whit two languages Spanish and English in English I can see the orderlist but in Spanish i can't see it.
I copied languages and I have doubled renaming the folder, the truth is that it took several days with this and can not find the solution.
Can you help me, please.Attachment 14535Attachment 14536
Thank you very much for a little of your time.
Hi,
I need to add customers comments into the display in the Master Packing Slip PDF. Can anyone suggest how I do this?
ZC 1.5.1 Super Order 4.0.3.
Thanks.
PDF packingslip code was contributed LONG ago by another contributor who is LONG SINCE gone and has not supported the feature.. Not only that the PDF library which it is built on (FPDF) is an OLD version of FPDF.. I'll keep it in the mod as long as it continues to work and doesn't pose a security threat.. otherwise I can provide NO insight on how to modify it or even how to update FPDF to the latest version (and YEP I did try to upgrade it myself).
Perhaps another community member will be able to chime in..