The "Batch Form Print" feature was a port from OSC. I know the solution isn't eloquent, but it was there and it worked. A CSS-powered option would be far better, I agree. You got some spare hours in the day I could use? :blink:
Printable View
The "Batch Form Print" feature was a port from OSC. I know the solution isn't eloquent, but it was there and it worked. A CSS-powered option would be far better, I agree. You got some spare hours in the day I could use? :blink:
Hi Frank,
I'm Omar. I just recently installed the super orders version 2.0 of your contributions and I have encountered an error when running the sql script:
1062 Duplicate entry 'CA' for key 2
in:
[INSERT INTO zen_so_payment_types VALUES (NULL, 1, 'CA', 'Cash');]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
I have tried to see if their is a syntax error but I have fail. Could you help me on this?
-OmAR
Hello. I recently installed Super Orders and Edit Orders and love it however I get the following message whenever I save an order that I have edited
Fatal error: Cannot use object of type queryFactoryResult as array in /home/smock/public_html/admin/edit_orders.php on line 185
I search for the Edit Orders support thread but the last post was in 2006
Any suggestions?
Beth-katherine
I have changed the code to work using css adding page breaks. It required a rewrite of batch_forms() and minor changes to the super_packingslip, super_invoice and super_shipping_label files.
The changes to the files mentioned above are: require() must be changed to require_once() and a conditional around the HTML header and closing tags must be added using:
also you need to add global $db; to super_invoices.php.Code:<?php if ($_GET['pagebreaks'] != 1) { ?>
Download changes at: http://www.lurkerfilms.com/ftp/superorder_update.zipCode:function batch_forms($target_file, $selected_oids, $num_copies = 1)
{
// begin error handling
if (!is_array($selected_oids)) { exit(ERROR_NO_ORDERS); }
if (!is_file($target_file)) { exit(ERROR_NO_FILE); }
// end error handling
unset($batch_order_numbers);
foreach ($selected_oids as $order_number => $print_order)
{
$batch_order_numbers[] = $order_number;
}
sort($batch_order_numbers);
if (file_exists(DIR_WS_LANGUAGES . $_SESSION['language'] . '/'. $target_file))
{
include_once(DIR_WS_LANGUAGES . $_SESSION['language'] . '/'. $target_file);
}
?>
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html <?php echo HTML_PARAMS; ?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
<title><?php echo TITLE; ?></title>
<link rel="stylesheet" type="text/css" href="includes/stylesheet.css">
<script language="javascript" src="includes/menu.js"></script>
</head>
<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" bgcolor="#FFFFFF">
<?php
$_GET['pagebreaks'] = 1;
foreach ($batch_order_numbers as $order_number)
{
$_GET['oID'] = $order_number;
for ($copies = 1; $copies <= $num_copies; ++$copies)
{
include($target_file);
echo '<div style="page-break-after: always;"></div>';
}
}
?>
</body>
</html>
<?php
require(DIR_WS_INCLUDES . 'application_bottom.php');
}
hi Blindside,
Please help.
Installed super orders and everything seems to be working okay in admin
When you check out and confirm order, I get the following error message
Warning: create(includes/classes/super_order.php) [function.create]: failed to open stream: No such file or directory in /home/.trucker/tackleadmin/bsgtackle.com/cart/includes/classes/order.php on line 620
Warning: create(includes/classes/super_order.php) [function.create]: failed to open stream: No such file or directory in /home/.trucker/tackleadmin/bsgtackle.com/cart/includes/classes/order.php on line 620
Fatal error: create() [function.require]: Failed opening required 'includes/classes/super_order.php' (include_path='.:/usr/local/lib/php') in /home/.trucker/tackleadmin/bsgtackle.com/cart/includes/classes/order.php on line 620
Is there something i missed with loading the sql?
is there a way to remove Tax Price (ex) and Total (ex) From the invoice
I've downloaded the new files but the question is WHERE to put them?
Also I've noticed that not all of my orders have identical editing options, particularily the credit card numbers. When I change those nothing is changed in the file.
Any suggestions?
Beth-Katherine
I have figured out where but am still wondering how to delete the credit information of the file. Also should I delete the file when I am done or is that interferring with the customers' ability to see what they have ordered from me?
The reason why is that I get a lot of orders, 'bout 100 a month which quickly adds up over the years (my last cart had over 13,000 orders ... not bragging just the facts ma'am). Over the years this will end up a chaotic mess so I figured now is the time to ask.
Beth-Katherine
Hi I've installed super orders but the instructions are telling me to
"6. Install "Purchase Order" Payment Module
The PO tracking system and attached reports won't work without this! Go
to Admin > Modules > Payment, you should find "Purchase Order" at the
bottom. It should look familiar when you install and configure it,
since it mimics the "Check/Money Order" module."
When I go to Admin>Modules>Payment there is NO "Purchase Order" module. Is this a non standard module that I need to download and install? If so can someone link me so I know I have the correct one. I currently use authorize.net so I've never really looked at the other payment modules before.