Page 82 of 202 FirstFirst ... 3272808182838492132182 ... LastLast
Results 811 to 820 of 2020
  1. #811
    Join Date
    Sep 2004
    Posts
    1,388
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    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?
    Frank Koehl
    "Cleverly Disguised as a Responsible Adult"

    frankkoehl.com

  2. #812
    Join Date
    Jan 2008
    Posts
    1
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    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

  3. #813
    Join Date
    Feb 2007
    Posts
    159
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    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

  4. #814
    Join Date
    Aug 2005
    Posts
    20
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by BlindSide View Post
    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?
    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:

    Code:
    <?php if ($_GET['pagebreaks'] != 1) { ?>
    also you need to add global $db; to super_invoices.php.

    Code:
    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');
    }
    Download changes at: http://www.lurkerfilms.com/ftp/superorder_update.zip

  5. #815
    Join Date
    Jan 2008
    Posts
    3
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    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?

  6. #816
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Super Orders 2.0

    Hi,

    Quote Originally Posted by bsgtackle View Post
    Is there something i missed with loading the sql?
    Nope, looks more like you haven't uploaded all of the files from the archive. The following file, at least, appears to be missing:

    includes/classes/super_order.php

    All the best...

    Conor

  7. #817
    Join Date
    Sep 2005
    Posts
    912
    Plugin Contributions
    1

    Default Re: Super Orders 2.0

    is there a way to remove Tax Price (ex) and Total (ex) From the invoice

  8. #818
    Join Date
    Feb 2007
    Posts
    159
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    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

  9. #819
    Join Date
    Feb 2007
    Posts
    159
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by Beth-katherine View Post
    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.
    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

  10. #820
    Join Date
    Dec 2007
    Posts
    12
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    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.

 

 

Similar Threads

  1. v150 Super Orders v4.0 Support Thread for ZC v1.5.x
    By DivaVocals in forum Addon Admin Tools
    Replies: 804
    Last Post: 18 Apr 2025, 12:04 AM
  2. v139h Super Orders v3.0 Support Thread (for ZC v1.3.9)
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1018
    Last Post: 28 Apr 2014, 11:38 PM
  3. RE: Super Orders v3.0 Support Thread
    By Johnnyd in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 22 Jun 2011, 09:28 AM
  4. Super Orders 2.0 postage marks with Super Orders
    By sketchhgal in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 22 Mar 2009, 03:05 PM
  5. Edit Orders and Super Orders, anyone doing that?
    By swamyg1 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 4 Feb 2009, 06:03 AM

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