-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
ScriptJunkie
Hi Diva,
I have a question about customizing PDF packing slips.
I'm aware that I can change the default logo to my own logo through the SO config in admin...however, it advises to keep images to a specific size for best output. I prefer to use a banner logo, plus that gigantic font "Packing Slip" text just bugs me.
Go into <admin folder>/includes/functions/extra_functions/lcsd_merged_packing_slips.php and find around line 73:
PHP Code:
if(LCSD_SHOW_SHIPPING_LABEL == 'False'){
$this->SetFont('Arial','B', 28);
$this->SetXY(350, 85);
$this->MultiCell(270, 24, 'Packing Slip');
}
You can remove the B for bold (empty will be fine) and adjust 28 to something smaller for the fontsize.
All the other lines regarding the logo and the rest of the text is in that file as well, it is -more or less- hardcoded into this file instead of adjustable in the admin. You could volunteer and make it with adjustable variables for the next version :cool:
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
nagelkruid
Go into <admin folder>/includes/functions/extra_functions/lcsd_merged_packing_slips.php and find around line 73:
PHP Code:
if(LCSD_SHOW_SHIPPING_LABEL == 'False'){
$this->SetFont('Arial','B', 28);
$this->SetXY(350, 85);
$this->MultiCell(270, 24, 'Packing Slip');
}
You can remove the B for bold (empty will be fine) and adjust 28 to something smaller for the fontsize. All the other lines regarding the logo and the rest of the text is in that file as well, it is -more or less- hardcoded into this file instead of adjustable in the admin.
Thanks nagel!
Quote:
You could volunteer and make it with adjustable variables for the next version :cool:
I have no problem volunteering to do that work, I just have no clue how to do that :smile:
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
nagelkruid
Ouch, not even when you select 2 or more orders and hit the print button? I may have bumped in the old "error behind keyboard" then, grmblll...:lamo:
Nope not ever..
Quote:
Originally Posted by
ScriptJunkie
Hi Diva,
I have a question about customizing PDF packing slips.
I'm aware that I can change the default logo to my own logo through the SO config in admin...however, it advises to keep images to a specific size for best output. I prefer to use a banner logo, plus that gigantic font "Packing Slip" text just bugs me.
What I really want to do is get into the header portion of the PDF and take out all the space holders, pre-existing text, and white space and replace it with a banner logo.
The problem is that because it renders in the browser as a PDF, I'm unable to identify which file to edit.
Can you point me in the right direction?
Gonna say what I have said everytime someone has asked me about customizing the PDF packingslips..
It is somewhat of a PITA to modify them if you want to do anything drastically different than how they are setup..
Is this code customizable?? Yes.. But unless it's a SLIGHT variation to the current layout, it becomes a PITA to do..
Quote:
Originally Posted by
nagelkruid
Go into <admin folder>/includes/functions/extra_functions/lcsd_merged_packing_slips.php and find around line 73:
PHP Code:
if(LCSD_SHOW_SHIPPING_LABEL == 'False'){
$this->SetFont('Arial','B', 28);
$this->SetXY(350, 85);
$this->MultiCell(270, 24, 'Packing Slip');
}
You can remove the B for bold (empty will be fine) and adjust 28 to something smaller for the fontsize.
Keep in mind that there is an admin control here that displays the text "Packing Slip" or shows a peel off shipping label in this same section depending on your admin settings..
Yes you certainly can modify the header section of the packing slip to your liking.. Keep in mind though that if you modify the header section of the PDF packingslip, you will want to make sure that you don't get errors because of this missing admin control.. Meaning you MAY need to run a small bit of SQL to remove the admin control from the Super Order admin..
Quote:
Originally Posted by
nagelkruid
All the other lines regarding the logo and the rest of the text is in that file as well, it is -more or less- hardcoded into this file instead of adjustable in the admin. You could volunteer and make it with adjustable variables for the next version :cool:
Well like everything in open source, it's usually something developed for a specific client (who does not need admin controls since the PDF will be constructed to theri specifications), and the developer was gracious enough to share it with the community (as was the case here).. However, if "someone" (hint hint) wants to take a whack at adding more admin controls, I welcome the improvement..:smile:
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
ScriptJunkie
I have no problem volunteering to do that work, I just have no clue how to do that :smile:
no problem, you are hired and it is noted it will take a bit longer, congrats :smartalec:
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
DivaVocals
It is somewhat of a PITA to modify them if you want to do anything drastically different than how they are setup..
have to agree, all warnings apply, that and a good backup of the file off course.
-
Re: Super Orders v3.0 Support Thread
Done! Woot :clap:
All my changes were made by editing admin/includes/functions/extra_functions/lcsd_merged_packing_slips.php as follows:
- Changed image size params on lines 46 and 47 to allow for a larger image
- Adjusted the coordinates on line 57 to center the image
- Deleted all code from lines 60 through 99
- Adjusted the coordinates on lines 101 and 102 to get rid of all the extra white space in the header
End result: Page layout is the way I want it (banner logo centered across the top of the page), unwanted text and extra white space gone.
Naturally, this means I no longer have the option to include a shipping label or store name and address in the header, but that's ok because I didn't need any of that anyway.
Quote:
no problem, you are hired and it is noted it will take a bit longer, congrats :smartalec:
Seriously, I have no idea how to do this. You mentioned adjustable variables...I don't even know what those are :blush:
I assume I'd have to know how to read and write in PHP, as well as understand the relationship between the files that create switches and options in the admin, and files that output the results of flipping those switches and changing those options.
LOL I'm still trying to figure out how to clone and modify a mod that only has two files in it (and one of them is a language file!).
I really don't think I'm the right person for this job :blink:
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
ScriptJunkie
Done! Woot :clap:
End result: Page layout is the way I want it (banner logo centered across the top of the page), unwanted text and extra white space gone.
good for you! (and for the rest i was just kidding lol) you should be a shop owner trying to sell stuff, not trying to be a programmer at the same time, programming a website, imho
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
nagelkruid
good for you! (and for the rest i was just kidding lol)
Whew! That's a relief! :cool:
-
1 Attachment(s)
Re: Super Orders v3.0 Support Thread
A new issue. When using super orders, adding the payment to the order there is a "total", and "Amount applied" and a "Balance due" field. Now it looks like it does not matter what the currency is in - I use 3 different currencies in the shop - the amount applied has to be in the default curency.
Previous version displayed this correctly - the total was in USD - not it is all mixed and matched. See the attached picture.
How can this be fixed?
Also I posted a note 2 pages before which seem to have been overlooked:
http://www.zen-cart.com/forum/showpo...&postcount=186
-
Re: Super Orders v3.0 Support Thread
1. Earlier in the thread, I noticed some people getting blank admin pages when installing SO 3.0 because of the "lcsd_merged_packing_slips.php" error.
I got this same error, so I deleted the file, then installed Edit Order and Ty Tracker, then re-uploaded lcsd_merged_packing_slips.php and everything worked fine. Just FYI. I want to say it worked after installing Edit Orders, but I can't remember which one I installed first :)
2. I'm from California and I have my own little mod for sales taxes. The sales tax is located in it's own table.....so could you possibly tell me which SO file calls the db tax rate so I can adjust it for myself? I would greatly appreciate it.
I've tried looking on my own but I'm getting a headache looking for a needle in a haystack :)
Excellent work here. :D
Wendy
-
2 Attachment(s)
Re: Super Orders v3.0 Support Thread
DivaVocals, All, Good Evening
Running
Live Site Zen Cart 1.3.9h
Database Patch Level: 1.3.9h
PHP Version 5.2.14
Browser Firefox - Zoom Reset
Test Site
Live Site Zen Cart 1.3.9h
Database Patch Level: 1.3.9h
PHP Version 5.2.9
Xammp on windows xp
Browser Firefox - Zoom Reset
Has anyone had experience of this situation; Super Orders 3 & Edit Orders 3 latest versions. Functionality fine. But Batch Status Print & Batch Status Update on the live site only, are wider than the screen. See images.
As a workaround I can zoom out, but I cannot account for why this would happen. Older versions of the contribution did not do this.
I would be grateful for any guidance or suggestions as to where to start looking
Thank you Centec2b
-
Added Totals Row to SuperPackingSlip
The following code adds a Totals Row to \admin\super_packingslip.php (Lines 184-277), which gives an easy scan of Total Qty vs Total Products.
In my arrangement, I also swapped the model and product columns, and made other minor adjustments.
I have not tested this code with split orders. If anyone can improve, please post.
Code:
// SUPER_CODE_START
if ($display_images) { ?>
<td class="dataTableHeadingContent" width="10%"><?php echo TABLE_HEADING_IMAGE; ?></td>
<td class="dataTableHeadingContent" width="10%"><?php echo TABLE_HEADING_QTY; ?></td>
<?php } else { ?>
<td class="dataTableHeadingContent" width="10%"><?php echo TABLE_HEADING_QTY; ?></td>
<?php } ?>
<td class="dataTableHeadingContent" width="10%"><?php echo TABLE_HEADING_PRODUCTS_MODEL; ?></td>
<td class="dataTableHeadingContent" xwidth="20%"><?php echo TABLE_HEADING_PRODUCTS; ?></td>
</tr>
<?php
for ($i = 0, $n = sizeof($order->products); $i < $n; $i++) {
echo ' <tr class="dataTableRow">' . "\n";
if ($display_images && isset($order->products[$i]['id']) ) {
$products = $db->Execute("SELECT products_image
FROM " . TABLE_PRODUCTS . "
WHERE products_id ='" . $order->products[$i]['id'] . "'");
echo ' <td class="dataTableContent" valign="top">' . zen_image(DIR_WS_CATALOG . DIR_WS_IMAGES . $products->fields['products_image'] , $order->products[$i]['name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a></td>';
}
echo ' <td class="dataTableContent" valign="top">';
echo zen_image(DIR_WS_ICONS . 'tick.gif', ICON_TICK);
echo $order->products[$i]['qty'] . ' </td>' . "\n" .
' <td class="dataTableContent" valign="top">' . $order->products[$i]['model'] . '</td>' . "\n" .
' <td class="dataTableContent" valign="top">' . $order->products[$i]['name'];
if (isset($order->products[$i]['attributes']) && (sizeof($order->products[$i]['attributes']) > 0)) {
for ($j=0, $k=sizeof($order->products[$i]['attributes']); $j<$k; $j++) {
echo '<br><nobr><small> <i> - ' . $order->products[$i]['attributes'][$j]['option'] . ': ' . nl2br(zen_output_string_protected($order->products[$i]['attributes'][$j]['value']));
echo '</i></small></nobr>';
}
}
echo ' </td>' . "\n" .
' </tr>' . "\n";
}
?>
<?php
$parent_child= $db->Execute("select split_from_order, is_parent
from " . TABLE_ORDERS . "
where orders_id = '" . $oID . "'");
if($parent_child->fields['split_from_order']):
$so = new super_order($parent_child->fields['split_from_order']);
$order = new order($parent_child->fields['split_from_order']);
?>
<?php
for ($i = 0, $n = sizeof($order->products); $i < $n; $i++) {
echo ' <tr class="dataTableRow">' . "\n";
if ($display_images && isset($order->products[$i]['id']) ) {
$products = $db->Execute("SELECT products_image
FROM " . TABLE_PRODUCTS . "
WHERE products_id ='" . $order->products[$i]['id'] . "'");
echo ' <td class="dataTableContent" valign="middle">' . zen_image(DIR_WS_CATALOG . DIR_WS_IMAGES . $products->fields['products_image'] , $order->products[$i]['name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a> </td>';
}
echo ' <td class="dataTableContent" valign="middle">';
echo zen_image(DIR_WS_ICONS . 'cross.gif', ICON_CROSS);
echo $order->products[$i]['qty'] . ' </td>' . "\n" .
' <td class="dataTableContent" valign="middle">' . $order->products[$i]['name'];
if (isset($order->products[$i]['attributes']) && (sizeof($order->products[$i]['attributes']) > 0)) {
for ($j=0, $k=sizeof($order->products[$i]['attributes']); $j<$k; $j++) {
echo '<br><nobr><small> <i> - ' . $order->products[$i]['attributes'][$j]['option'] . ': ' . $order->products[$i]['attributes'][$j]['value'];
echo '</i></small></nobr>';
}
}
echo ' </td>' . "\n" .
' <td class="dataTableContent" valign="middle">' . $order->products[$i]['model'] . '</td>' . "\n" .
' </tr>' . "\n";
}
?>
<?php
endif;
?>
<!-- bof totals row -->
<?php
$qtyDisplay = 0;
for ($i = 0, $n = sizeof($order->products); $i < $n; $i++) {
$qtyDisplay += ($order->products[$i]['qty']);
}
?>
<tr>
<td class="dataTableContent" width="10%"><strong>Totals</strong></td>
<td class="dataTableContent" width="10%"><strong><?php echo $qtyDisplay; ?></strong></td>
<td class="dataTableContent" width="10%"><strong> </strong></td>
<td class="dataTableContent" xwidth="10%"><strong><?php echo sizeof($order->products); ?></strong></td>
</tr>
<!-- eof totals row -->
</table></td>
</tr>
<?php if ($customer_notes) { ?>
Cheers
-
Re: Super Orders v3.0 Support Thread
Is it possible to remove the product image from the packing slip?
Thanks!
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
Danielle
Is it possible to remove the product image from the packing slip?
Thanks!
This is clearly explained in the Super Orders readme file.. (Configure & Features tab -- I even included a nice screenprint..:wink:)
From the changelog in the Super Orders readme (lists v3.0 features)
Quote:
Change Log
v3.0
- Clean up and reorganize the readme file (again!!!)
- MANY misc bug fixes and corrections
- Overall cleanup of the files to remove deprecated and unused code
- Countries now included as search option in "Batch Form Printing" and "Batch Status Updating"
- The "Edit Status History" feature has been restored and the functionality modified. Editing of order comments is now limited to hidden "admin only" comments. Additionally in previous versions of Super Orders the "Edit Status History" feature inserted HTML and ASCII line breaks into the database, and this ugly line break code was displayed when the customer viewed their order history from "Status History & Comments". This particular problem goes back to 2006, and has now been FULLY resolved/addressed.
- Customer comments modified to incorporate the latest Zen Cart 1.3.9 functionality/format
- Packing slip images are now a simple on/off admin configurable option.
- Batch print functionality has been expanded to include PDF invoices!! Options for the invoices are admin configurable
- Split orders has been improved to help shopowners easily reconcile a split order. Creates a parent and child order. Paid split orders will display the grand total paid for both parent and child order. For orders paid via PayPal, Authorize.net or Linkpoint, the admin payment panel will not display on the child order.
- Order total and customer address edit features have been removed in their entirety. (use Edit Orders if you need order/customer address editing functionality)
- Added missing shortcut icons on the orders listing screen. Now there is a corresponding shortcut icon on each order line that matches the buttons that appear in the sidebox.
- Restoration of missing default Zen Cart orders.php functionality. This now allows payment processor generated (PayPal, Authorize.net or Linkpoint) refunds to now be processed within Super Orders. (no longer requires the retention of the default orders.php to process PayPal, Authorize.net or Linkpoint refunds)
- AUTO PAYMENT FOR ORDERS PAID VIA PAYPAL!!!!!!! 'Nuff said...
- Improved graphics and buttons to SPRUCE UP the Super Orders UI
- If you have Edit Orders v3.0 installed, you can enable Edit Order in the Super Orders admin to enable Edit Orders buttons in Super Orders (No Super Orders code merging required.. Simply install Edit Orders and "turn on" Edit Orders in the Super Orders admin!!)
- If you have Ty Package Tracker v3.0 installed, you can enable the Ty Package Tracker fields for Super Orders (No Super Orders code merging required..) Simply install Ty Package Tracker and "turn on" Super Orders from the Ty Package Tracker admin!!)
- If you have USPS Click-N-Ship installed, you can enable USPS Click-N-Ship in the Super Orders admin to enable USPS Click-N-Ship fields/buttons in Super Orders (No Super Orders code merging required.. Simply install USPS Click-N-Ship and "turn on" USPS Click-N-Ship in the Super Orders admin!!)
- If you have FedEx Automated Labels installed, you can enable FedEx Automated Labels in the Super Orders admin to enable FedEx Automated Labels buttons in Super Orders (No Super Orders code merging required.. Simply install FedEx Automated Labels and "turn on" FedEx Automated Labels in the Super Orders admin!!)
-
Re: Super Orders v3.0 Support Thread
Forgive me if this has already been answered, I have read through tons of the help forums and cant seem to find an answer.
I am in need of a mod to help me create orders as well.
I have this mod installed (love it) and edit orders, and the ty tracking mod too.
Super orders does not that I can find, have the ability to create an order. I tried to use the create order mod but cant seem to get it to mesh with super orders and edit orders. Is there something I can do to have create order capability with super orders? Your help would be very much appreciated.
-
Manual Orders/Create Orders using Super Orders
Quote:
Originally Posted by
staradmire
Forgive me if this has already been answered, I have read through tons of the help forums and cant seem to find an answer.
I am in need of a mod to help me create orders as well.
I have this mod installed (love it) and edit orders, and the ty tracking mod too.
Super orders does not that I can find, have the ability to create an order. I tried to use the create order mod but cant seem to get it to mesh with super orders and edit orders. Is there something I can do to have create order capability with super orders? Your help would be very much appreciated.
Creating orders is not the intent of Super Orders at all.. (see http://www.zen-cart.com/forum/showpo...4&postcount=77
http://www.zen-cart.com/forum/showpo...6&postcount=83 -- this same information is posted in the readme as well) Super Orders is simply a "pimped out":laugh: version of the default Zen Cart orders.php.
Any detailed discussion of manual order creation processes is off topic for this support thread.. These threads might provide more insight though on how a manual order process could be implemented using Super Orders and a number of other modules..
http://www.zen-cart.com/forum/showpo...4&postcount=77
http://www.zen-cart.com/forum/showpo...6&postcount=83
http://www.zen-cart.com/forum/showthread.php?t=169530
manual orders or create orders using Super Orders - manually creating orders - create orders from admin - phone orders
-
Re: Super Orders v3.0 Support Thread
I am currently using the PO mod rather than the Super Orders PO option at checkout so customers can enter the PO # then. How difficult would it be to either 1) modify the PO option for Super Orders to allow the customer to enter their PO # at checkout, or 2) have the Purchase Order mod post the collected PO # into the field Super Orders uses for the PO #?
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
gfogleman
I am currently using the PO mod rather than the Super Orders PO option at checkout so customers can enter the PO # then. How difficult would it be to either 1) modify the PO option for Super Orders to allow the customer to enter their PO # at checkout, or 2) have the Purchase Order mod post the collected PO # into the field Super Orders uses for the PO #?
If your question is is it POSSIBLE to do this, the answer is: It's software.. So it's likely that it's doable.. The level of effort needed to achieve this is what is unknown. I have not taken a look at the PO mod to analyze what would be required to meet your needs..
-
Re: Super Orders v3.0 Support Thread
Thanks for the reply. My gut reaction was that it would be easier to use the Super Orders PO option and add an entry field at checkout by implementing the appropriate code there from super_payments.php. I just can't seem to quite wrap my head around it though.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
gfogleman
Thanks for the reply. My gut reaction was that it would be easier to use the Super Orders PO option and add an entry field at checkout by implementing the appropriate code there from super_payments.php. I just can't seem to quite wrap my head around it though.
That would be my gut reaction as well.. I can't promise I will be able to look at this:smile:, but if my time permits, I'll take a look and share my findings with you..
-
Re: Super Orders v3.0 Support Thread
Hello everyone,
I upgraded from super order v2 to v3.
Everything looks and works fine. Well most of the time.
50 percent of the time, when I go to admin>customers> super orders, I get a blank page. Please note that I said it happens sometimes and not all the time.
any clue why this might be?
I have check in the cache/debug reports, and nothing in there pertaining to this.
as always help is appreciated.
-
Re: Super Orders v3.0 Support Thread
Are you saying that there are NO error logs being generated when you get a blank page??
Quote:
Originally Posted by
samar777
Hello everyone,
I upgraded from super order v2 to v3.
Everything looks and works fine. Well most of the time.
50 percent of the time, when I go to admin>customers> super orders, I get a blank page. Please note that I said it happens sometimes and not all the time.
any clue why this might be?
I have check in the cache/debug reports, and nothing in there pertaining to this.
as always help is appreciated.
-
Re: Super Orders v3.0 Support Thread
nope, nothing, zip. Thats whats bothering me. I know there should be a clue some place, but I have given up looking for it and came asking for assistance.
-
Re: Super Orders v3.0 Support Thread
DivaVocals,
Once you've had the opportunity to submit your updated version of Super Orders, will it be available for download from your site, prior to being released here under Free Software Add Ons?
Curious, since I have decided to wait on adding Super Orders to my version, until the new update is complete and released. For I will be having to hack the code and make adjustments since adding an Item Number to everything so that the Model Number, can truly be a Model Number. For inventory tracking and audit purposes. :smile:
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
DivaVocals
Are you saying that there are NO error logs being generated when you get a blank page??
does this have anything to do with the problem? I found it in the cache folder just now.
Code:
[18-Feb-2011 22:24:16] PHP Fatal error: Call to a member function get_content_type() on a non-object in /var/www/vhosts/mylovelysite.com/httpdocs/SuperSecretADMIN/includes/classes/order.php on line 242
and
Code:
[18-Feb-2011 21:50:25] PHP Fatal error: Call to undefined function zen_get_multiple_tax_rates() in /var/www/vhosts/mylovelysite.com/httpdocs/supersecretadmin/includes/classes/order.php on line 434
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
Joseph_Greely
DivaVocals,
Once you've had the opportunity to submit your updated version of Super Orders, will it be available for download from your site, prior to being released here under Free Software Add Ons?
Curious, since I have decided to wait on adding Super Orders to my version, until the new update is complete and released. For I will be having to hack the code and make adjustments since adding an Item Number to everything so that the Model Number, can truly be a Model Number. For inventory tracking and audit purposes. :smile:
Because the admins kinda frown upon this, I have been refraining from doing this as or recently.. They (Zen admins)have been doing an AWESOME job of getting submissions approved and available so it won't take too long for it to be available once I submit it.:smile: Updates are done and tested, just gotta update the readme and submit it.. (and I'm committed to doing this TONIGHT as the rest of my weekend is BOOKED solid!!!!)
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
samar777
does this have anything to do with the problem? I found it in the cache folder just now.
Code:
[18-Feb-2011 22:24:16] PHP Fatal error: Call to a member function get_content_type() on a non-object in /var/www/vhosts/mylovelysite.com/httpdocs/SuperSecretADMIN/includes/classes/order.php on line 242
and
Code:
[18-Feb-2011 21:50:25] PHP Fatal error: Call to undefined function zen_get_multiple_tax_rates() in /var/www/vhosts/mylovelysite.com/httpdocs/supersecretadmin/includes/classes/order.php on line 434
Perhaps.. do you get a similar behavior with the default orders??
-
Re: Super Orders v3.0 Support Thread
DivaVocals,
Thanks for the quick reply. OK, I'll wait patiently for the release. :cool:
-
Re: Super Orders v3.0 Support Thread
Thanks, Diva. I'll try to dive into it as well and let you know if I come up w/ anything.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
gfogleman
Thanks, Diva. I'll try to dive into it as well and let you know if I come up w/ anything.
What version of Zen Cart are you running???
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
DivaVocals
Perhaps.. do you get a similar behavior with the default orders??
nope. just super orders
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
samar777
nope. just super orders
What version of Zen Cart are you running??
-
Re: Super Orders v3.0 Support Thread
Is there any way to change the PDF packing list? I want to remove the prices on it and change the layout a bit...
-
Re: Super Orders v3.0 Support Thread
-
Re: Super Orders v3.0 Support Thread
Hello,
When i click the "print" button in an order the super_data_sheet.php is invoked which generates error:
STATUS HISTORY 1054 Unknown column 'track_id1' in 'field list'
in:
[select orders_status_id, date_added, customer_notified, track_id1, track_id2, track_id3, track_id4, track_id5, comments from orders_status_history where orders_id = '12696' order by date_added]
Looking at the code:
PHP Code:
<!-- TY TRACKER 1 BEGIN, DISPLAY TRACKING ID IN COMMENTS TABLE------------------------------->
<td class="dataTableHeadingContent smallText" align="left" valign="top" width="23%"><strong><?php echo TABLE_HEADING_TRACKING_ID; ?></strong></td>
<!-- END TY TRACKER 1 ------------------------------------------------------------>
<td class="dataTableHeadingContent smallText" align="left" valign="top" width="40%"><strong><?php echo TABLE_HEADING_COMMENTS; ?></strong></td>
</tr>
<?php // TY TRACKER 2 BEGIN, INCLUDE DATABASE FIELDS ------------------------------
$orders_history = $db->Execute("select orders_status_id, date_added, customer_notified, track_id1, track_id2, track_id3, track_id4, track_id5, comments
from " . TABLE_ORDERS_STATUS_HISTORY . "
where orders_id = '" . zen_db_input($oID) . "'
order by date_added");
// END TY TRACKER 2 -----------------------------------------------------------
if ($orders_history->RecordCount() > 0) {
while (!$orders_history->EOF) {
echo ' <tr>' . "\n" .
' <td class="smal<etcetera_snip>
I think all of this code regarding to TY_tracker (which i do not have installed) should be evaluated through boolean TY_TRACKER first before it is executed like so:
PHP Code:
if (TY_TRACKER == 'True')
correct? or did i miss something?
-
Re: Super Orders v3.0 Support Thread
The answer is even simpler.. If you turned on the Ty Tracker fields and do not have Ty Package Tracker installed (or installed correctly), you would get this error.. The flag to turn off Ty Package SHOULD be in Admin > Ty Package Tracker..
Quote:
Originally Posted by
nagelkruid
Hello,
When i click the "print" button in an order the super_data_sheet.php is invoked which generates error:
STATUS HISTORY 1054 Unknown column 'track_id1' in 'field list'
in:
[select orders_status_id, date_added, customer_notified, track_id1, track_id2, track_id3, track_id4, track_id5, comments from orders_status_history where orders_id = '12696' order by date_added]
Looking at the code:
PHP Code:
<!-- TY TRACKER 1 BEGIN, DISPLAY TRACKING ID IN COMMENTS TABLE------------------------------->
<td class="dataTableHeadingContent smallText" align="left" valign="top" width="23%"><strong><?php echo TABLE_HEADING_TRACKING_ID; ?></strong></td>
<!-- END TY TRACKER 1 ------------------------------------------------------------>
<td class="dataTableHeadingContent smallText" align="left" valign="top" width="40%"><strong><?php echo TABLE_HEADING_COMMENTS; ?></strong></td>
</tr>
<?php // TY TRACKER 2 BEGIN, INCLUDE DATABASE FIELDS ------------------------------
$orders_history = $db->Execute("select orders_status_id, date_added, customer_notified, track_id1, track_id2, track_id3, track_id4, track_id5, comments
from " . TABLE_ORDERS_STATUS_HISTORY . "
where orders_id = '" . zen_db_input($oID) . "'
order by date_added");
// END TY TRACKER 2 -----------------------------------------------------------
if ($orders_history->RecordCount() > 0) {
while (!$orders_history->EOF) {
echo ' <tr>' . "\n" .
' <td class="smal<etcetera_snip>
I think all of this code regarding to TY_tracker (which i do not have installed) should be evaluated through boolean TY_TRACKER first before it is executed like so:
PHP Code:
if (TY_TRACKER == 'True')
correct? or did i miss something?
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
ericvanwenkop
Is there any way to change the PDF packing list? I want to remove the prices on it and change the layout a bit...
Short answer is it's software.. It can all be modified to do whatever you wish.. That said, as I have said here previously, it's a PITA to do. So I personally will not be able to help with this.. (got too much on my plate with paid and personal projects)
The PDF packingslip code was generously donated to the community for free, and apart from a few minor changes to align them functionally with the default packinglists/invoices they are as we got the code from the author.
I suppose it could be made a LOT more flexible so that everyone could have everything they might want, with admin controlled options, etc.. However, I will leave that to someone else to develop and contribute.. :smile:
Feel free to search through this thread.. There's 1 or 2 people who've posted some of their modifications to the Super Orders PDF packing list..
Good luck..
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
DivaVocals
The answer is even simpler.. If you turned on the Ty Tracker fields and do not have Ty Package Tracker installed (or installed correctly), you would get this error.. The flag to turn off Ty Package SHOULD be in Admin > Ty Package Tracker..
did you read what i said about the boolean part at all?
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
nagelkruid
did you read what i said about the boolean part at all?
I did.. and I didn't see this was in reference to the super_data_sheet.php file..
A search of this thread would have turned up this post: http://www.zen-cart.com/forum/showpo...6&postcount=55
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
DivaVocals
thanks, that is indeed what i was referring to.
funny, i did search the thread and that post didn't come up in my results, and it is even a relative small thread yet....mmm
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
nagelkruid
thanks, that is indeed what i was referring to.
funny, i did search the thread and that post didn't come up in my results, and it is even a relative small thread yet....mmm
No worries.. The corrected file will be included in the next release (still working on the updated readme..)
-
Re: Super Orders v3.0 Support Thread
Hi All,
I've just installed the Super Orders Add on (latest one) and it is great.
I've had some sales before hand and now when I go into the super orders screen and click on an order, on the order details screen it is saying that there is No Order Payment Data Available.
I use paypal to process my payments, is there anything I need to do to get these showing up as payment made as it is still showing that the balance is due.
Regards,
Brett Rogers
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
samar777
nope. just super orders
Quote:
Originally Posted by
DivaVocals
What version of Zen Cart are you running??
1.3.9.h
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
samar777
1.3.9.h
Darn.. I was hoping this was a 1.3.8 issue..
-
Re: Super Orders v3.0 Support Thread
Somehow this got missed in the flurry of recent posts..:blush:
Quote:
Originally Posted by
lbowenc
why do the 'Refund Transaction' and 'Void Transaction' functions require me to input values that are either already in the database (last 4 digits) or could be stored in the database with a little effort (trans ID and auth ID)? Why force the user to enter them in order to do a refund or void when they could be saved with the order and retrieved when a refund or void is needed?
Not really a Super Orders question since this functionality comes directly from default Zen Cart code. (Remember Super Orders is based on the default orders.php so this is why this behavior is the same for both orders.php and super_orders.php)
I have seen DrByte post the answer to similar questions regarding the notifications.php functionality elsewhere on the forum.. Suggest searching for these posts.. (Try searching the terms 'Refund Transaction' and 'Void Transaction')
Quote:
Originally Posted by
lbowenc
This question could also apply to the base Orders option, but I'm asking here since it could possibly (hopefully) result in an enhancement to Super Orders.
The credit card/PayPal payment notification panel (the grey box which displays this information) comes from default ZEN CART functionality (this same notification panel is displayed on the default orders.php page). This is not specific to Super Orders there is NO INTENT on our part to "fix" this. As a matter of fact we just FIXED the fact that super_orders.php was out of synch with the default orders.php refund/void/auth functionality in v3.0. I have NO PLANS to enhance this ONLY for Super Orders.
IMHO the way to address this is to "fix" the way the notifications.php works so that refunds and voids processed BOTH default in the orders.php and super_orders.php would work the same way. To "fix" this ONLY in Super Orders doesn't make much sense IMHO..
-
Re: Super Orders v3.0 Support Thread
Just upgraded to the latest zencart edition, and then tried to reinstall super orders. Now I can't access the admin page. Can somebody link me to a fix, or what I'm doing wrong?
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
samuelsmith1979
Just upgraded to the latest zencart edition, and then tried to reinstall super orders. Now I can't access the admin page. Can somebody link me to a fix, or what I'm doing wrong?
Blank page = error. You need to post the results of the error logs in your store's cache folders..
-
Re: Super Orders v3.0 Support Thread
I have had SO installed and working fine, but I just added Paypal Website Payments Pro along with Express. Now the USPS autofill is not working on orders placed with WPP (cc). It still works fine for orders done thru Paypal express.
It takes me to the USPS site, but none of the customer fields get transfered to the USPS form.
Any ideas?
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
sailsport1
I have had SO installed and working fine, but I just added Paypal Website Payments Pro along with Express. Now the USPS autofill is not working on orders placed with WPP (cc). It still works fine for orders done thru Paypal express.
It takes me to the USPS site, but none of the customer fields get transfered to the USPS form.
Any ideas?
You need to ask this on the USPS Autofill module's support thread..
-
Re: Super Orders v3.0 Support Thread
Arrrgh HELP!
SO3 was working great on my live site with test customers.
Just got my first real LIVE order and going into SO I got the following:
1146 Table 'metalpix_db1.TABLE_CUSTOMERS_ADMIN_NOTES' doesn't exist
in:
[select * from TABLE_CUSTOMERS_ADMIN_NOTES where customers_id = '17']
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.
Only thing I have done recently is run the SO3 patch from Fast and easy checkout (I think)
-
Re: Super Orders v3.0 Support Thread
I'm at work so I can't look at the fileset from here.. But all of that admin notes code was removed from SO3. So I'll have to take a look when I get home and see if there is a remnant I'm unaware of in the fileset. Truthfully I don't think there is as I am running SO3 with FEC on my test store and I don't get that error.. (and I'm pretty sure that it's not left in the SO3 fileset) Just out of curiosity, when you say "SO3 patch from Fast and easy checkout", where did you get this patch??
Quote:
Originally Posted by
Rizla
Arrrgh HELP!
SO3 was working great on my live site with test customers.
Just got my first real LIVE order and going into SO I got the following:
1146 Table 'metalpix_db1.TABLE_CUSTOMERS_ADMIN_NOTES' doesn't exist
in:
[select * from TABLE_CUSTOMERS_ADMIN_NOTES where customers_id = '17']
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.
Only thing I have done recently is run the SO3 patch from Fast and easy checkout (I think)
-
Re: Super Orders v3.0 Support Thread
Sent you a PM (I hope)
It was the SO3 part for FEC (explained in the pm)
a2_FEC .... Read it in a post... Not saying that has caused it just letting you know what I've meddled with!
Rizla
-
Re: Super Orders v3.0 Support Thread
It's quietin here ;)
Ok... Would I be safe running SO3 install over my current install?
Indeed that database field does not exist in my setup.
-
Re: Super Orders v3.0 Support Thread
The call for TABLE_CUSTOMERS_ADMIN_NOTES is comming from the admin/super_orders.php that is INCLUDED with the FEC module from the Numinix site.
How should I proceed with this as my PHP is limited???
-
Re: Super Orders v3.0 Support Thread
Was busy last night.. Didn't get your PM until this morning.. I'm at work and I can't look at this here.. but I do have a few observations/suggestions:
The files in the SO3 fileset DO NOT contain ANY references to "TABLE_CUSTOMERS_ADMIN_NOTES" at all.. I'm certain that you are using the super_orders.php file which comes with FEC v1.81. We included instructions in the readme explicitly for users of FEC and COWOA.
Please note this from the SO3 readme:
Quote:
FEC or COWOA Files
Also included in the fileset are properly modded files to use Super Orders with the Fast and Easy Checkout or Checkout Without Account modules. DO NOT USE the Super Orders files that come with Fast and Easy Checkout or Checkout Without Account. They are for an older version of Super Orders. Super Orders v3.0 already has the correctly integrated Fast and Easy Checkout or Checkout Without Account code in the files included
Using a file comparison program, you can compare your store's current super_orders.php to the one from the SO3 fileset for FEC if you want to see what I mean. Otherwise I would recommend replacing your super_orders.php file with the one for FEC users from the SO3 fileset.
Quote:
Originally Posted by
Rizla
It's quietin here ;)
Ok... Would I be safe running SO3 install over my current install?
Indeed that database field does not exist in my setup.
Quote:
Originally Posted by
Rizla
Sent you a PM (I hope)
It was the SO3 part for FEC (explained in the pm)
a2_FEC .... Read it in a post... Not saying that has caused it just letting you know what I've meddled with!
Rizla
Quote:
Originally Posted by
Rizla
The call for TABLE_CUSTOMERS_ADMIN_NOTES is comming from the admin/super_orders.php that is INCLUDED with the FEC module from the Numinix site.
How should I proceed with this as my PHP is limited???
-
Re: Super Orders v3.0 Support Thread
I just noticed a "Have a drink" icon to the LHS of the thread title Sticky: Super Orders v3.0 Support Thread (Multi-page thread 1 2 3 4 5 ... Last Page).
I thought this may have meant celebrations were in order for a new release of this module, but I could not find such.
I am still smiling from the Sherry, Shandies and Cointreau had at dinner this evening.
Cheers
-
Re: Super Orders v3.0 Support Thread
I have a client that just gave me the go ahead to upgrade him from 1.3.8a to 1.3.9h. I have super orders installed on his system, but he has not been consistent in using just one (orders vs super orders).
Will this cause any problems for upgrading? Is there anything specific ( sorry, I haven't read the instructions yes :p ) I should be aware of when doing the upgrade?
Really liking what I've read about 3.0 so I'm hoping for a smooth transition.
Thanks!
-
Re: Super Orders v3.0 Support Thread
Deva...
Bang on!!!!
Thanks... Nice to see it back... Cant live without it :)
Thank you
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
Rizla
Deva...
Bang on!!!!
Thanks... Nice to see it back... Cant live without it :)
Thank you
All is right with the world again??:smile: (please say yes!!)
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
chadderuski
I have a client that just gave me the go ahead to upgrade him from 1.3.8a to 1.3.9h. I have super orders installed on his system, but he has not been consistent in using just one (orders vs super orders).
IMHO there is no need to use both. One thing we attempted to do in SO3 was to re-align super_orders.php better with the current orders.php. We even provided EASY integration options for many popular admin mods.. Suggest that if you upgrade you use the files in the "Optional Edits" folder which replace orders.php with super_orders.php.
Quote:
Originally Posted by
chadderuski
Will this cause any problems for upgrading? Is there anything specific ( sorry, I haven't read the instructions yes :p ) I should be aware of when doing the upgrade?
Really liking what I've read about 3.0 so I'm hoping for a smooth transition.
Thanks!
You should read the readme IN FULL before you upgrade. It will give you the full scoop on all the changes in SO3 (as does page 1 of this support thread), and the upgrade instructions..:wink: I put a LOT of time and effort into writing that darn readme so that folks would have all the information they needed.. If there is anything that is not clear or covered in the readme, I'll be happy to help clarify those things here, but I don't want to simply re-publish the readme..:smile:
-
Re: Super Orders v3.0 Support Thread
Hey Diva, All
Would it be possible for you to help me, I've installed the Super Orders v3.0 on my 1.3.9h Zen Cart Install and when I goto the Order Details page I'm getting No Order Payment Data Available even though people have paid via Paypal.
Is there anything I need to do to get the payment data showing as it is still showing a Balance due. I don't mind going into the database table to add the data.
Will this be fixed in the long awaited update? I've had sales since installing this too and no payment is showing. The payment status coming from paypal is set as 'Completed'.
Your thoughts are welcome on the matter.
Kindest Regards,
Brett Rogers
-
Re: Super Orders v3.0 Support Thread
Hey All,
Just a quick update, I've just noticed that my payment preferences didn't have the PDT turned on and the settings in my Zen Cart are set to Paypal Express Checkout (there is no PDT token setting in this module)
The PDT Token field is only available in the Paypal Website Payments Standard - IPN module.
I don't know if this helps or not.
Regards,
Brett Rogers
Quote:
Originally Posted by
myth3_16
Hey Diva, All
Would it be possible for you to help me, I've installed the Super Orders v3.0 on my 1.3.9h Zen Cart Install and when I goto the Order Details page I'm getting No Order Payment Data Available even though people have paid via Paypal.
Is there anything I need to do to get the payment data showing as it is still showing a Balance due. I don't mind going into the database table to add the data.
Will this be fixed in the long awaited update? I've had sales since installing this too and no payment is showing. The payment status coming from paypal is set as 'Completed'.
Your thoughts are welcome on the matter.
Kindest Regards,
Brett Rogers
-
1 Attachment(s)
Re: Super Orders v3.0 Support Thread
Hi All,
This add on is working great, just a quickie about the batch packing slip bit of the module.
When I click on the button it brings up the packing slips I want to print and I've been playing about with the layout too of it too to make it more for me.
I've noticed that instead of the currency symbols (in my case '£' it is being replaced with '£'.
Does anybody know why it is doing this as on the invoices it is showing the symbol ok.
I've attached a screenshot of it anyway so that you can see what I'm talking about.
Many Thanks,
Brett Rogers
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
samuelsmith1979
Just upgraded to the latest zencart edition, and then tried to reinstall super orders. Now I can't access the admin page. Can somebody link me to a fix, or what I'm doing wrong?
Quote:
Originally Posted by
DivaVocals
Blank page = error. You need to post the results of the error logs in your store's cache folders..
Here is the error SO is giving me in place of the customer.
1146 Table 'shucks_sworx.sworxcustomers_admin_notes' doesn't exist
in:
[select * from sworxcustomers_admin_notes where customers_id = '4']
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.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
samuelsmith1979
Here is the error SO is giving me in place of the customer.
1146 Table 'shucks_sworx.sworxcustomers_admin_notes' doesn't exist
in:
[select * from sworxcustomers_admin_notes where customers_id = '4']
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.
Please go back one page and read through the posts on page 26 of this thread..
-
Re: Super Orders v3.0 Support Thread
Please search through the support thread.. this has been discussed several times.. will be addressed in the next release..
Quote:
Originally Posted by
myth3_16
Hey All,
Just a quick update, I've just noticed that my payment preferences didn't have the PDT turned on and the settings in my Zen Cart are set to Paypal Express Checkout (there is no PDT token setting in this module)
The PDT Token field is only available in the Paypal Website Payments Standard - IPN module.
I don't know if this helps or not.
Regards,
Brett Rogers
Quote:
Originally Posted by
myth3_16
Hey Diva, All
Would it be possible for you to help me, I've installed the Super Orders v3.0 on my 1.3.9h Zen Cart Install and when I goto the Order Details page I'm getting No Order Payment Data Available even though people have paid via Paypal.
Is there anything I need to do to get the payment data showing as it is still showing a Balance due. I don't mind going into the database table to add the data.
Will this be fixed in the long awaited update? I've had sales since installing this too and no payment is showing. The payment status coming from paypal is set as 'Completed'.
Your thoughts are welcome on the matter.
Kindest Regards,
Brett Rogers
-
Re: Super Orders v3.0 Support Thread
wonderful mod, I am using it with great pleasure.
one small thing though for a future release
In the super_invoice.php:
"Amount Paid:" ,and "Balance Due:"are hard-coded and not defines
-
Re: Super Orders v3.0 Support Thread
For customer clarity in the order confirmation email (includes/classes/superorder.php):
Is there any way to indent the list of attributes per product?
Alternatively, can a bullet be placed before each product name, but not before its attributes?
Thanks in advance
-
Re: Super Orders v3.0 Support Thread
Please help! I am setting up a new site on zen 1.3.9h. I downloaded and installed Super Orders 3.0 for the purchase order payment ability. Purchase order is not listed in the payment modules. Super orders is showing in admin > config > super orders but no purchase order under payment modules. Please help! I read the readme files and didn't find anything.
thanks!
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
gocards61684
Please help! I am setting up a new site on zen 1.3.9h. I downloaded and installed Super Orders 3.0 for the purchase order payment ability. Purchase order is not listed in the payment modules. Super orders is showing in admin > config > super orders but no purchase order under payment modules. Please help! I read the readme files and didn't find anything.
thanks!
If the purchase order payment module is not appearing then it means that all of your Super Orders files did not get loaded to your store.. Please re-check your install and make sure all the files are in place.
-
Re: Super Orders v3.0 Support Thread
I have a question:
Why having separated Super Orders and Edit Orders in v3.0 ?
This double the maintenance for updating the code and can introduce errors.
SO 1.3.9 by softwareguy incorporated edit_orders.php if i remember.
(I found also the define switch of EO not the same in SO)
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
gob33
I have a question:
Why having separated Super Orders and Edit Orders in v3.0 ?
This double the maintenance for updating the code and can introduce errors.
Don't know where you got the impression that these modules were separated when in fact Edit Orders and Super Orders have ALWAYS been two separate modules.. (Please feel free to download both and read through the changelogs for BOTH modules if you still believe otherwise.)
Quote:
Originally Posted by
gob33
SO 1.3.9 by softwareguy incorporated edit_orders.php if i remember.
You are mistaken.. SO v1.3.9 only added changes to bring to mod up to date with Zen Cart v1.3.9. Again, Edit Orders and Super Orders have ALWAYS been separate modules. What you may have mistaken as an integration of these apps was actually OLD original Super Orders code which added some very rudimentary order editing features to Super Orders.. This code never worked well and it was removed in v3.0..
In v3.0, we also decided to add the ability for users to easily integrate Super Orders with the Edit Orders module as it was something that folks were FREQUENTLY asking about. We felt that Edit Orders had BETTER order editing features and we decided NOT to re-invent the wheel by patching the rudimentary order editing that was part of older versions of Super Orders.
Quote:
Updated to 1.3.9. No other changes.
Author: That Software Guy
Version: 1.3.9
Zen Cart™ Version: v1.3.9
Update added on Jul 05 2010
PHP 5.3 Compatible?: Yes
Download Now!
File size: 204775 bytes
Quote:
Originally Posted by
gob33
(I found also the define switch of EO not the same in SO)
Not sure I understand this statement..
-
Re: Super Orders v3.0 Support Thread
Quote:
What you may have mistaken as an integration of these apps was actually OLD original Super Orders code which added some very rudimentary order editing features to Super Orders.. This code never worked well and it was removed in v3.0..
I see. Thats what i was talking.
I was thinking to integrate the code of Edit Orders 3.03 in Super Orders 3.0. EO consists mainly of edit_orders.php so could be integrated directly without complication to understand for the new users.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
gob33
I see. Thats what i was talking.
I was thinking to integrate the code of Edit Orders 3.03 in Super Orders 3.0. EO consists mainly of edit_orders.php so could be integrated directly without complication to understand for the new users.
Perhaps, but we decided to not re-invent the wheel. Edit Orders worked and had a good track record..
What WAS difficult for new users to understand was how to link these two modules (Edit Orders/Super Orders). Hence the number of questions surrounding that topic. It was EASY enough to provide links between the two modules.. It's not complicated at all for new users to understand.. Install Edit Orders, install Super orders turn on the buttons that links one to the other.. Simple..
-
Re: Super Orders v3.0 Support Thread
File: admin\super_report_await_pay.php
Line 132: Missing a <?php
Code:
</table></td>
</tr>
<?
if ($report_type) {
?>
<tr>
<td valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr class="dataTableHeadingRow">
-
Re: Super Orders v3.0 Support Thread
I apologize in advance for not taking the time to search the forum for this problem but it is fairly urgent. been working happily with Super Orders for a while. Just bumped our server from PHP4 to PHP5.2.17. There were a few minor hiccups but the site is back up. Today, my shipper needs to do some status updates but Batch Status Update brings up an error:
Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 35 bytes) in /home/xxxxxx/public_html/shop/includes/classes/db/mysql/query_factory.php on line 411
Batch Form Print does the same, Super Orders is working fine.
Any help would be greatly appreciated!
-
Re: Super Orders v3.0 Support Thread
OK, got it. The problem was the default memory limit when we upgraded the PHP. My host has it resolved. Nothing to do with this fine add-on.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
DivaVocals
No worries.. The corrected file will be included in the next release (still working on the updated readme..)
have you had a chance to get to the update?
-
Re: Super Orders v3.0 Support Thread
I had a recent problem and while it was due to my own bone-headedness, I wonder if a safeguard could be put in place.
In batch_status_update, I cleared the 'notify customer' checkbox, then clicked 'Check All' and 'update status'. Unfortunately, when I clicked 'Check All', it reset my prior settings so I ended up sending a bunch of emails to people with a default status.
I *was* able to use query builder to help me send apologies to the affected people though :blush:
Suggestion 1: Don't reset the 'notify customer' box, or make the default 'unchecked'. I did this by changing line 311 in super_batch_status.php:
Code:
echo zen_draw_checkbox_field('notify', 'on', false); echo ' ' . ENTRY_NOTIFY_CUSTOMER
I'll probably go through and do this in other places too.
Suggestion 2: Offer a confirmation box when sending more than N emails.
Great package - thanks for your help
-
Re: Super Orders v3.0 Support Thread
Thanks for the tip/suggestion..
Still reviewing the files you sent.. Been a little busy with the new day job and some pretty big client projects..
Will see if I can carve out time for this and all the other things on my "to-do" list..:blush:
Quote:
Originally Posted by
carlvt88
I had a recent problem and while it was due to my own bone-headedness, I wonder if a safeguard could be put in place.
In batch_status_update, I cleared the 'notify customer' checkbox, then clicked 'Check All' and 'update status'. Unfortunately, when I clicked 'Check All', it reset my prior settings so I ended up sending a bunch of emails to people with a default status.
I *was* able to use query builder to help me send apologies to the affected people though :blush:
Suggestion 1: Don't reset the 'notify customer' box, or make the default 'unchecked'. I did this by changing line 311 in super_batch_status.php:
Code:
echo zen_draw_checkbox_field('notify', 'on', false); echo ' ' . ENTRY_NOTIFY_CUSTOMER
I'll probably go through and do this in other places too.
Suggestion 2: Offer a confirmation box when sending more than N emails.
Great package - thanks for your help
-
Re: Super Orders v3.0 Support Thread
hi can any one help or point me in the right direction
when i use super order
Batch Form Printing
PDF Packing Slip
Print Packing slips for selected orders
i get £ on my invoices instead of £ sign
also is there any way to drop the tax column ?
using zencart 1.3.9
super order 3.0
only other addons i have are easy populate, and froogle
thanks:smartalec:
-
Re: Super Orders v3.0 Support Thread
Does Super Orders conflict with any other mods?
Thanks!
-
Re: Super Orders v3.0 Support Thread
I hope I'm posting this in the right thread. When I bring up an invoice, in the address bar it says its super_invoice.php.
Under the tax column for every product it says None! regardless of where the customer is from. When I check the taxes being calculated just above the Total on the invoice, they are being calculated and displayed correctly there, and the balance due is correct. What do I check, where do I look, how do I fix this?:frusty:
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
highlander
I hope I'm posting this in the right thread. When I bring up an invoice, in the address bar it says its super_invoice.php.
Under the tax column for every product it says None! regardless of where the customer is from. When I check the taxes being calculated just above the Total on the invoice, they are being calculated and displayed correctly there, and the balance due is correct. What do I check, where do I look, how do I fix this?:frusty:
You have entered a Tax ID number in the Super Orders configuration settings.. and since SO3 by default has no value here and now displays the text "Tax Exempt" when a Tax ID number is entered in this configuration setting, I am assuming you must be running SO2.. (SO2 questions should be posted in the SO2 support thread)
-
Re: Super Orders v3.0 Support Thread
I 'm fairly certain superorders 3.03 is installed. Where would I find the setting you are referring to? Is it a manual edit to a file, or off one of the menu's?
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
highlander
I 'm fairly certain superorders 3.03 is installed. Where would I find the setting you are referring to? Is it a manual edit to a file, or off one of the menu's?
Tax ID number is in the Super Orders admin configuration settings..
and if the tax column display's "None!" that is SO2 behavior.. In SO3 there is no default value in the tax ID value. (unlike SO2)
AND if your admin configuration shows this setting labeled any other way than "Tax Exemption ID Number", you are NOT running SO3 or you did not run the SO3 upgrade script (if you were upgrading)..
-
Re: Super Orders v3.0 Support Thread
thanks. I'll check it out.
-
Re: Super Orders v3.0 Support Thread
I ran through the upgrade procedure in the instruction....ran the sql script at the end and get the following error:
1062 Duplicate entry 'TAX_ID_NUMBER' for key 2
in:
[UPDATE zen_configuration SET configuration_title = 'Tax Exemption ID Number', configuration_key = 'TAX_ID_NUMBER', configuration_value = '', configuration_description = 'If your business or organization is tax exempt, then you may have been issued a tax exmption ID number. Enter the number here and the tax columns will not appear on the invoice and the tax exemption ID number will also be displayed at the top of the invoice.' WHERE configuration_key = @t4;]
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.
How can I correct this?
-
Re: Super Orders v3.0 Support Thread
I looked up a few invoices out of curiosity. The tax rates are now displaying in the tax column, but I also see an additional price and an additional total column. Is this supposed to happen? Both price rows show the same amount as do both total rows for each item. Is this an error?
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
highlander
I ran through the upgrade procedure in the instruction....ran the sql script at the end and get the following error:
1062 Duplicate entry 'TAX_ID_NUMBER' for key 2
in:
[UPDATE zen_configuration SET configuration_title = 'Tax Exemption ID Number', configuration_key = 'TAX_ID_NUMBER', configuration_value = '', configuration_description = 'If your business or organization is tax exempt, then you may have been issued a tax exmption ID number. Enter the number here and the tax columns will not appear on the invoice and the tax exemption ID number will also be displayed at the top of the invoice.' WHERE configuration_key = @t4;]
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.
How can I correct this?
Run the uninstall and reinstall..
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
highlander
I looked up a few invoices out of curiosity. The tax rates are now displaying in the tax column, but I also see an additional price and an additional total column. Is this supposed to happen? Both price rows show the same amount as do both total rows for each item. Is this an error?
Not sure what you are seeing.. a screenprint would help..
-
Re: Super Orders v3.0 Support Thread
-
Re: Super Orders v3.0 Support Thread
ok...I've uninstalled exit orders and super orders, and then reinstalled them. All of my problems seem to have gone away. I do still have that one questions regarding what I see on invoices. I can email you an invoice to look at if that's ok?. I'd prefer not to post confidential customer info in the forum.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
highlander
ok...I've uninstalled exit orders and super orders, and then reinstalled them. All of my problems seem to have gone away. I do still have that one questions regarding what I see on invoices. I can email you an invoice to look at if that's ok?. I'd prefer not to post confidential customer info in the forum.
I understand, but you could always create a test account and a test sale and post a screenshot of that..
OR since it's only the totals and details section you are asking about, why not just post a screen shot of just that section of the invoice.
-
Re: Super Orders v3.0 Support Thread
Am I missing something or did I good up a bit. I tried to send a message to a customer using the Update field... and there was a problem. If I use any sort of single quote marks in the field, I get a MySQL error as I'm trying to update.
Was this fixed or...?
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
retched
Am I missing something or did I good up a bit. I tried to send a message to a customer using the Update field... and there was a problem. If I use any sort of single quote marks in the field, I get a MySQL error as I'm trying to update.
Was this fixed or...?
Not fixed, and I'm sorry for that.. I have the next update mostly ready.. What I haven't had is a free moment to pull it all together.. So for now the workaround is to NOT use double or single quotes in messages..
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
DivaVocals
Not fixed, and I'm sorry for that.. I have the next update mostly ready.. What I haven't had is a free moment to pull it all together.. So for now the workaround is to NOT use double or single quotes in messages..
Ahh. I was going to ask if it's a small fix that a code change can do but if you're almost done with it I'll do the workaround I gues.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
retched
Ahh. I was going to ask if it's a small fix that a code change can do but if you're almost done with it I'll do the workaround I gues.
and quite honestly there are a few updates in the upcoming version that I wouldn't know where to find this "one" thing..:smile: Best to wait for the full update and just not use single or double quotes for now.. It's a minor thing really with an easy workaround..
-
Re: Super Orders v3.0 Support Thread
Hoping someone can help.
I've installed super orders 3.0. Everything looks good from the admin side as far as menus go, but nothing will fire in the customers, Super Orders menu. I just get a error page.
Also, in the installation instructions, it was stated to rename the "YOUR_TEMPLATE" folders. There were no folders of this kind in the installation pack. Just Admin and Includes folders.
Please help.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
elninomago
Hoping someone can help.
I've installed super orders 3.0. Everything looks good from the admin side as far as menus go, but nothing will fire in the customers, Super Orders menu. I just get a error page.
Also, in the installation instructions, it was stated to rename the "YOUR_TEMPLATE" folders. There were no folders of this kind in the installation pack. Just Admin and Includes folders.
Please help.
If you're getting an error page, there must be an error log file that's been generated.
Go to your cache folder (store_root/cache) and take a look at the log files. This will tell you what is causing the error or at least where to begin looking.
Once you find the error, look through this thread to see if anyone else has had the same error and how it was resolved. Alternatively, to keep from having to read post by post, you can do a thread search using some of the keywords from the error log.
If, after doing all that, you're still stuck, come back and post the error so we can help you trouble shoot it.
Lastly, the instruction to rename your admin and YOUR_TEMPLATE folders is a generic instruction for all mods. If the mod package doesn't have any custom template files in it, then you don't need to worry about it.
However, be aware that not all mod developers are as thorough as our wonderful Diva - meaning that some developers will include the instruction but skip putting the template folders in the install package - instead trusting you to know which files should be backed up into a custom folder.
Therefore, it is crucial that you learn about and use the override system so that you can discern for yourself when a mod file should be installed into a custom template folder - just in case the mod developer doesn't do it for you.
Example - In the SO3 install pack, there is a file located at includes/languages/english/modules/payment/purchaseorder.php
This file's location is one that is inside the override system, however, it does not need to be over-ridden (aka installed in a custom template folder) because the file "purchaseorder.php" is not a file that is native to zen cart - it is a new file added by the mod. Therefore, no "YOUR_CUSTOM_TEMPLATE" folder exists for this file in the SO3 install pack.
But, if the file in our example had been moneyorder.php, located at: includes/languages/english/modules/payment/moneyorder.php, then you would need to install this into a custom template folder (whether or not one existed in the install package) because the file "moneyorder.php" already exists in zen cart.
Does that make sense?
As you go through the process of customizing your cart and installing mods, you'll find that sometimes mods customize files that you've already customized either on your own or with another mod. In this case, you will need to do something called file merging.
It is very important to keep track of what files you've changed (or have been changed for you when you install mods) so that you don't overwrite one change with another.
This is a lot of information to absorb, so don't try and do it all at once. Learn it as you go. Here are some helpful tutorials and threads for you to read to learn more about this subject:
Thread, tutorial tutorial tutorial tutorial
For now, just worry about identifying and fixing the error by checking out the error log files and searching the thread for the same issue.
Hope this helps :)