Contributions
Order Editor
This is a long-awaited update to my original order editing tool. This time, nearly every aspect of an order can be quickly edited.
PLUS! The ability to add products to an existing order, reliably update order totals, insert coupons & discounts & extra fees, update tax on individual products, edit product information on individual orders, update product quantities, product prices, and more!
AND! It's ready and formatted for the admin area. Installation in 3 easy steps!
Expand All / Collapse All
the language_id is not used in the query, selecting the first products_id. In my db the name is ommited there so the name is left empty. Fix is as follows (simply added the languageid to the query):
// Get Product Info
//BOF Added languageid (otherwise products_name is empty)
//$product_query = tep_db_query("select p.products_model, p.products_price, pd.products_name, p.products_tax_class_id from " . TABLE_PRODUCTS . " p left join " . TABLE_PRODUCTS_DESCRIPTION . " pd on pd.products_id = p.products_id where p.products_id = '" . (int)$add_product_products_id . "'");
$product_query = tep_db_query("select p.products_model, p.products_price, pd.products_name, p.products_tax_class_id from " . TABLE_PRODUCTS . " p left join " . TABLE_PRODUCTS_DESCRIPTION . " pd on pd.products_id = p.products_id where p.products_id = '" . (int)$add_product_products_id . "' and pd.language_id = '" . $languages_id . "'");
//EOF Added languageid
$product = tep_db_fetch_array($product_query);
$country_id = oe_get_country_id($order->delivery["country"]);
$zone_id = oe_get_zone_id($country_id, $order->delivery['state']);
$products_tax = tep_get_tax_rate($product['products_tax_class_id'], $country_id, $zone_id);
(this is not a full package, no files attached)
Bugfix when update products quantity negative
on line 190 in edit_orders.php replace:
$quantity_difference = ($products_details['qty'] - $order['products_quantity']);
with:
$quantity_difference = ($products_details['qty'] - $order_products['products_quantity']);
Thanks for a great contribution! I did a quick Finnish translation and added the screenshot from previous post.
Order Editor v. 5.0.6.3
Change log:
-Added Finnish + images
-Added screenshot from previous post
Full package with the following languages:
-English
-Danish
-Dutch
-Finnish
-French
-German
-Italian
This is JUST a screenshot of Order Editor, for people who would like to see it "in action".
I know I know, it's in Norwegian, but you'll get a general idea :-P
NOTE: This is NOT the contribution, just an image.
Dutch language pack Full package
Norwegian added!
Full package
Italian and german added!
Full package
Deutsche Übersetzung für den Order Editor 5.0.6
Viel Spaß
Craxx;)
just downloaded and tried the previous release "v5.0.6 with two bug fixes". If anyone else gets the error
undefined function tep_hide_session_id
just edit catalogadminincludesfunctionsgeneral.php and add the following before the end
function tep_hide_session_id() {
global $session_started, $SID;
if (($session_started == true) && tep_not_null($SID)) {
return tep_draw_hidden_field(tep_session_name(), tep_session_id());
}
}
HTH
Si.
note: blank file attached
9/8/2007
v5.0.6
-Fixed bug that would result in products not displaying as line items in Order Editor if there was no longer a corresponding item in the catalog
-Fixed one additional problem that was causing an E_NOTICE level error
FULL PACKAGE, including upgrade instructions and all files necessary for installation.
This package contains full installation instructions, including the line by line instructions for upgrading from v5.0.4 to v5.0.5 that were not previously included.
This package does not have any changes to the code as compared to the previously released package for v5.0.5.
8/27/2007
v5.0.5
-A large number of small changes to clear up what was a surprisingly large number of E_NOTICE level errors being generated by various Order Editor files
v5.0.4
-Incorporated the use of the iconv() function to prevent strange characters from appearing via the AJAX (aka the UTF-8 bug)
-Added on to the fix for the "too many requires" bug
FULL PACKAGE, including upgrade instructions and all files necessary for installation.
Includes language definition files and buttons for Danish, English, and French.
8/18/2007
v5.0.3
-Fixed the "too many requires" bug as suggested by Vexiphne in the support thread
-Added the file http_client.php to the folder admin/order_editor/ to avoid errors when trying to access the file stored on the catalog side (various reports)
-Fixed the stock check bug as pointed out by yedle in the support thread
-Fixed the CHARSET bug as suggested by VaM in the support thread
-Fixed the shipping tax bug (shipping tax added twice to the order total on sites with Display Price with Tax set to 'true') as pointed out by EuroTimmy in the support thread
-Added discussion of the undefined function tep_hide_session_id() problem to the "Common Problems" section of the install file (various reports, but not a bug)
-Added discussion of the strange characters caused by UTF-8 encoding to the "Common Problems" section of the install file (various reports)
-Added discussion of incredible disappearing credit card fields to the "Common Problems" section of the install file (various reports, but not a bug)
For support please visit the Order Editor support thread:
http://forums.oscommerce.com/index.php?showtopic=54032
FULL PACKAGE, including upgrade instructions and all files necessary for installation.
Includes language definition files and buttons for Danish, English, and French.
8/12/2007
v5.0.2
-Fixed bug where JavaScript would throw error when totalling products info in unlikely event there was an attribute on the page with an attribute_id
equal to the product_id of the product being worked on
-Fixed bug that would result in Low Order Fee remaining in orders where adding products had brought the subtotal greater than the fee threshold
-Changed the way order weight is displayed below the shipping quotes. New way breaks the order into boxes using algorithm in shipping.php class file
-Expanded the Order Totals tooltip hint
-A few other minor changes
For support please visit the Order Editor support thread:
http://forums.oscommerce.com/index.php?showtopic=54032
Full 5.0.1 pack with the french file and button
Have make the Danish fil complte now.
Full 5.0.1 pack with the danish file and button
v5.0.1
FULL PACKAGE
-Fixed bug where comments were not being displayed properly in edit_orders.php.
Fix instructions can be seen at:
http://forums.oscommerce.com/index.php?s=&showtopic=54032&view=findpost&p=1120020
(ie, it's not necessary to download the whole package if you just want to fix v5.0, just read that post)
FULL PACKAGE, including upgrade instructions and all files necessary for installation.
NOTE: This release is not a revision of Order Editor 4.x. The 4.x and 5.x releases were developed independently, and, linearly speaking, are both updates to the 3.x series of Order Editor. As such they would best be considered parallel forks.
For support please visit the Order Editor support thread:
http://forums.oscommerce.com/index.php?showtopic=54032
New features of Order Editor 5.0:
-Fully integrated AJAX interface allows for near real-time updating of the database without use of the update button. In order to update a field the user need only type the new information in the appropriate box then press the tab button or otherwise move the cursor and the appropriate change will be accomplished without reloading the page. Additionally, if you don't like AJAX, these features can be turned off via the admin control panel.
-Real-time shipping quotes using the catalog side shipping modules.
-Order total process using the catalog side order total modules.
-Updated HTML layout does away with many of the nested tables found in previous versions (Cleaner! Faster! Easier to edit!).
-Advanced Add a Product function allows for searching by categories, subcategories, name, or model.
-Form is totally functional on browsers with JavaScript disabled (once you set "Order Editor use AJAX" to 'false' in the admin panel:)).
-Much easier to read HTML install/upgrade instructions.
Order Editor v5.0 BETA 1 for public testing
NOTE: This release is for public testing and is NOT RECOMMENDED FOR USE ON PRODUCTION SITES.
NOTE: This release is not a revision of Order Editor 4.x. The 4.x and 5.x releases were developed independently, and, linearly speaking, are both updates to the 3.x series of Order Editor. As such they would best be considered parallel forks.
FULL PACKAGE, including upgrade instructions
Please post all bug reports on the Order Editor support thread:
http://forums.oscommerce.com/index.php?showtopic=54032
Features of Order Editor 5.0:
-Fully integrated AJAX interface allows for near real-time updating of the database without use of the update button. In order to update a field the user need only type the new information in the appropriate box then press the tab button or otherwise move the cursor and the appropriate change will be accomplished without reloading the page.
-Real-time shipping quotes using the catalog side shipping modules.
-Order total process using the catalog side order total modules.
-Updated HTML layout does away with many of the nested tables found in previous versions.
-Advanced Add a Product function allows for searching by categories, subcategories, name, or model.
Known bugs/issues:
-Shipping tax is apparently not being added to the appropriate tax component, but is added to the total
-Add a Product function does not work at all on browsers with javascript disabled (implementation of javascript-less Add a Product function planned for BETA 2)
Planned revisions for BETA 2;
-Bug fixes as necessary
-Add a Product functionality on javascript impaired browsers
-Ability to toggle AJAX features on/off via admin (for all the haters)
-Clean up and streamline the AJAX code
-Use responseText to generate success messages in AJAX code in order to better catch errors
Please post all bug reports on the Order Editor support thread:
http://forums.oscommerce.com/index.php?showtopic=54032
v4.0.2 - minor update and fixes
-Added functionality to retrieve and hold shipping method from customer side order rather than having it being overwritten after hitting update.
-Added code to unregister session variables
-Updated code to reduce SQL queries where not needed.
-Included usps.php file updated for order editor 4.0 real-time quotes on the administration side.
This is a general update version. This is the best version of the 4.0 contribution.
insaini
My mistake. Forgot to remove some shipping module specific code.
Download this version and disregard 4.0A and 4.0.1A
Sorry about that.
Done
insaini
This is a minor update from the previous version.
-Added a check to display saved shipping method from database if it exists.
-Added an error message to be displayed if shipping quote requested when no products added.
Upgrade.txt now included to upgrade from Order Editor v3.0.2.1
insaini
Here it is,
Order Editor 4.0 Alpha
Contains what I would consider coding enhancements.. basically changed semantics. Added feature includes Real-Time shipping quotes from your installed shipping modules.
Manual Order Maker (1.4.2) has been combined into one contribution.
Shipping Tax field has been removed. Shipping Taxes will automatically be added according to your Tax Class setup. If your shipping taxes arent being added then your Tax Classes arent setup correctly and you should read the Tax Setup documents that come with OSCommerce.
Handling Charge Fee added as well as checks for Real-Time quotes.
Upgrade.txt has not been included. There is no documentation to upgrade from OE 3.0.2.1 to OE 4.0.
This Contribution assumes a fresh install of OSCommerce 2.2 RC1
insaini
Ein kleiner Fehler bei der Berechnung war noch drin ...
Problem: Die MwSt. wird aus der Zwischensumme (oder gar nicht), anstatt aus der Endsumme berechnet.
Lösung: Beim UPDATE der Änderung wird die MwSt. richtig berechnet und gespeichert.
Achtung: Die Änderungen wurden in der Version 2.7.3 vorgenommen. Desweiteren wurde der MwSt.-Satz von 19 % direkt in der Datei angegeben (Zeile: 439, 440)!
This is a slight refinement of the bug fix posted in v3.0.2
5/11/2007
v3.0.2
-Fixed bug in code for new order confirmation emails that caused all Invoice URL links to be non-SSL even on sites with SSL and would also cause the link to be incorrect if the catalog was stored in a folder other than the root
5/1/2007
v3.0.1
-Fixed bug in code for new order confirmation emails that would result in default currency always being used to display products prices
05/01/2007
v3.0 - Danish
-Changed line 2450 in file admin/edit_orders.php
Order Editor - Now in English and Spanish
All translate except the image.
Order editor - Ahora en inglés y español
Todo traducido excepto la imagen.
As always, Order Editor allows you to quickly and easily change almost any part of an order.
Edit customer details including customer, billing, and shipping addresses, as well as email address and telephone number!
Add or delete products!
Edit product names, tax rates, products attributes, products attributes prices, download info, and more!
Reliably calculate new subtotals, tax totals, and grand totals!
Add new comments and/or change the status of the order!
NEW- edit or delete existing comments!
Send out new order confirmation emails complete with the updated order information!
Plus, Order Editor also has these usefule features:
-dropdown menus to allow for easy changing of country and/or state
-a dropdown menu for payment method that can be turned off via the admin control panel
-a dropdown menu to allow for easily changing the currency type associated with an order
-Up to date stock values for each item in an order, as well as the total weight of each line item and the total weight of the order
-On the fly JavaScript calculator that will show you an estimate of the value of each line item and all order totals as you type changes!
-NEW: a simple shipping method dropdown to allow for easily changing the shipping method of an order, also configurable in admin
-Handy tooltips to help explain various portions of the page
-register_globals ready!
-short_open_tag ready!
Changed files: admin/edit_orders.php, admin/includes/functions/general.php, admin/includes/classes/oe_order.php, admin/includes/languages/english/edit_orders.php
After seeing the patch posted by eholme I did some research into MySQL queries, specifically the use of LEFT JOIN vs. INNER JOIN, and found that the use of LEFT JOIN within Order Editor was totally unnecessary.
The following changes were made for this version:
-the query eholme optimized was deleted
-all remaining instances of LEFT JOIN were replaced with INNER JOIN
-cleaned up the code for a number of queries to make them easier to read
Changed files: admin/edit_orders.php, admin/search_suggest.php, admin/includes/classes/oe_order.php
I had a problem with this contribution with sites where there was hundreds of thousands of products. The mysql server was eating up all of the processor time for at least 10 minutes. It turned out the fix was simple
Replace the section beginning at line 2333 in edit_orders.php with the following:
<?php
// ############################################################################
// Get List of All Products
// ############################################################################
$result = mysql_query("
SELECT pd.products_name, p.products_id, cd.categories_name, ptc.categories_id
FROM " . TABLE_PRODUCTS . " p
INNER JOIN " . TABLE_PRODUCTS_DESCRIPTION . " pd
ON pd.products_id=p.products_id
INNER JOIN " . TABLE_PRODUCTS_TO_CATEGORIES . " ptc
ON ptc.products_id=p.products_id
INNER JOIN " . TABLE_CATEGORIES_DESCRIPTION . " cd
ON cd.categories_id=ptc.categories_id
WHERE pd.language_id = '" . (int)$languages_id . "'
ORDER BY categories_name");
while($row = mysql_fetch_array($result))
{
extract($row,EXTR_PREFIX_ALL,"db");
$ProductList[$db_categories_id][$db_products_id] = $db_products_name;
$CategoryList[$db_categories_id] = $db_categories_name;
$LastCategory = $db_categories_name;
}
or just repace the file
4/28/2007
v2.9.3
-Fixed bug where tax rate was not being assessed properly for products added to the order using the "Add a Product" feature.
-Updated code to change use of $countryid and $zoneid to $order->delivery['country_id'] and $order->delivery['zone_id'], respectively.
For bug reports, questions, comments, concerns, recommendations, weather reports, etc, please post in the Order Editor thread of the osCommerce forums: http://forums.oscommerce.com/index.php?showtopic=54032
Wrong VAT with the Edit Order with version 2,6 - 2.9
Chance this code, dowload the file with the infomation
This is a minor update. There is no reason to update unless you are running Separate Pricing Per Customer (SPPC) and would like Order Editor to pull customer specific pricing from the database when adding a product.
Non-SPPC users, have no fear. The code for SPPC is disabled by default so you can use this contribution without any problems related to the SPPC-specific code.
If you are using SPPC, you will probably want to activate the patch. Instructions for doing this are found at line 597 of admin/includes/edit_orders.php.
There were also some minor cosmetic changes and a revision of the text for the payment method tooltip.
Changed files: admin/edit_orders.php, admin/includes/languages/english/edit_orders.php
fixed small bug which was deleting orders with ROUNDING
I have tried to use ORDER_EDIT 2.9.1, but i found following major bugs in VAT calculation:
1. VAT calculations (specially in Javascript) are usual done in un-correct way, specially when you have
DISPLAY_PRICE_WITH_TAX set to TRUE
2. tax rounding is default set to 4 decimal places, which is for me (SLOVAKIA) bad, because we have 1 decimal place rounding rule
I have rewritten order_edit to make things OK with steps above, but I want to point to contrib creator, that this thing should be fixed!
typical mistake is f.e.tax calculation without rounding set properly
//removed by MGX $RunningSubTotal += (($products_details['tax']/100 + 1) * ($products_details['qty'] * $products_details['final_price']));
$RunningSubTotal += Round($products_details['final_price'] * ($products_details['tax']/100 + 1),1) * $products_details['qty'];
My contrib needs following to be setup OK:
1. decimal tax place set 1 -> should take variable from admin (do you know how?)
2. installed ot_round contrib (I round according SK law final price at 0.5 down or up)
Mgx
This is the German language file 2.9.1 and a button image for Order Editor. Just add the files to the right folders under admin/includes/languages/german and admin/includes/languages/german/images/buttons
This is the dutch language file 2.9.1 and a button image for Order Editor. Just add the files to the right folders under admin/includes/languages/dutch and admin/includes/languages/dutch/images/buttons
3/10/2007
v2.9.1
-Changed the way data is handled before being sent to the database by utilizing both tep_db_input and tep_db_prepare_input due to problems associated with using just one or the other
-Added a whole new case to handle the new order emails to allow for updating the order and sending a new email in one step
-Rolled the necessary code from admin/edit_orders_email.php into admin/edit_orders.php
-Added JavaScript code to change displayed stock levels "on the fly" as product quantities are changed
-Added additional checkboxes for sending a new order email, one checkbox next to each update button
-Added JavaScript code so that all three email checkboxes will check and uncheck together
-Fixed the HTML for the Payment Method box to correct bug where Payment Method table would resize depending on which payment method was chosen
-Incorporated the use of tep_html_oe_no_quote in the tooltips to avoid problems caused by special characters such as ' in the tips (my apologies to the French, but apostrophes break the tooltips)
-Corrected a number of small items in the HTML which were not valid HTML 4.01 Transitional
-Added three new functions to admin/includes/functions/oe_functions to allow for passing parameters when drawing checkboxes and radiobuttons
-Changed files: admin/edit_orders.php, admin/includes/languages/english/edit_orders.php, admin/includes/functions/oe_functions.php
-Deleted files: admin/edit_orders_email.php
- Incorporated: some additional help information regarding the "New order confirmation" checkbox.
- Incorporated: a feature which allows an admin to email an updated order confirmation email after an order has been edited.
- Modified: changed one and only <? tag to <?php tag in edit_orders.php, since some servers are set (in php.ini) to "short_open_tag = Off". On this servers the <? tag causes a parse error.
2/05/2007
v2.8.5
-Fixed bug where "add a product" step(s) would be displayed at the bottom of edit_orders.php during the "edit" process if the "back" button near the top of the page was pressed during the "add a product" phase
This is v2.8.4 with the correct file for admin/includes/functions/oe_functions.php (also changed for this version)
2/01/2007
v2.8.4
-Adjusted the numbers in the code for add a product to reflect that there are now only four total steps
-Removed obsolete javascript code for function related to old version of add a product
-Fixed bug where oID was not being displayed properly during add a product on sites with register_globals off, also tweaked code and language file for better language independency
-Cleaned up code for add a product, doing away with a few small bugs (including the one where step 2 would disappear after selecting a products options) and removing some unnecessary code
-Incorporated features as posted by wHiTeHaT on the support thread for searching by model during the add a product steps
-Renamed SearchSuggest.php to search_suggest.php to keep filenames inline with osCommerce standards
-Tweaked search_suggest.php for neater display of products information while searching (still doesn't look quite right in Firefox)
-Changed files: admin/edit_orders.php, admin/search_suggest.php, and includes/languages/english/edit_orders.php
1/8/2007
2.8.3
-Fixed bugs in customer data fields that would result in lost data on sites with register_globals set to OFF
-Re-fixed javascript bug that somehow slipped back in since v2.7.3
-Maybe something else, but if so it's slipped my mind
This is the dutch language file and a button image for Order Editor. Just add the files to the right folders under admin/includes/languages/dutch and admin/includes/languages/dutch/images/buttons
Updated file "edit_orders" in spanish language.
Traducción completa y completada del archivo "edit_orders" al idioma español. Corregidas algunas lineas de codigo perdidas.
By ramusgue
11/28/2006
v2.8.2
-Fixed some little bugs and a Tax issue
-Fixed a problem that prevent you form using ' in the customer data field
-Added to the AJAX Add Products the possibilities to see quantities on the fly
P.s. In the last packege i forgot to erase two line used for italian PIVA and CF.
11/28/2006
v2.8.2
-Fixed some little bugs and a Tax issue
-Fixed a problem that prevent you form using ' in the customer data field
-Added to the AJAX Add Products the possibilities to see quantities on the fly
Just added some of the basic features from the original Ajax contributions.
- search by model
- show price / special price
This is only SearchSuggest.php. Just replace the one file if you need to search by model.
11/13/2006
v2.8.1
-Added the missing file serachsuggest.php to the package
-Added the instruction for the missing function tep_get_products_inventory_qty() used to get the stock quantities
11/13/2006
v2.8
-Completely change the way products are added, using new AJAX routine. Now Products are addede in less the 5 sec ;) . Minor graphical issues when products as OPTIONS, will be fixed in a next release
-Added a little column that let u see how many pieces of that product u have on stock, very usefoul for who do a lot of modification and phone order and need to have a clear situation of his/her stock
P.S. This release have an updated install.txt and the missing searchsuggest.php
11/13/2006
v2.8
-Completely change the way products are added, using new AJAX routine. Now Products are addede in less the 5 sec ;) . Minor graphical issues when products as OPTIONS, will be fixed in a next release
-Added a little column that let u see how many pieces of that product u have on stock, very usefoul for who do a lot of modification and phone order and need to have a clear situation of his/her stock
11/1/2006
v2.7.4
-Repaired problem with IE and the shipping and billing address blocks related to IE's inability to recognize the display property "table-row"
10/31/2006
v2.7.3
-Modified code so that javascript functions for edit and add a product cases would only display when necessary thereby avoiding javascript errors
-There were two sections where code assumed certain data to be an array; added check to verify whether the array exists to avoid errors
10/24/2006
v2.7.2
-Deleted unnecessary function tep_html_noquote from admin/includs/functions/oe_functions.php
10/24/2006
v2.7.1
-Fixed bug where no error would be displayed when attempting to access an order that didn't exist, just a blank screen
Full Install To 2.7, And The admin/danish/edit_orders.php Is Full Update Now
10/16/2006
v2.7
-Overhauled the customer info and payment sections based on code released as part of Josh Dechant's MOECTOE suite.
Integrated a number of new features including dynamic drop-down menus for state and country and the ability to set the billing address same as the customer address and the shipping address same as the billing address.
-Introduced two new files:
admin/includes/classes/oe_order.php
admin/includes/functions/oe_functions.php
These files take the place of changes to the order class and general functions file seen in previous versions.
-Trimmed down what has become a monstrous JavaScript section of the admin/edit_orders.php file- it's not compatible with dinosaur browsers, but it's also noticeably shorter.
-Added a screenshot to the contribution package
This is actually another correction for v2.6.4 but I didn't want to start getting weird with the version numbers.
This package includes what I hope are accurate installation instructions as well as up to date Russian and German language files (so much for the language pack). Thanks goes to Irin and Onkel Flo, respectively, for those translations.
There is no missing JavaScript file.
If you have any questions, concerns, comments, etc, please post in the support thread:
http://forums.oscommerce.com/index.php?showtopic=54032
Added the missing javascript file
Added full german language pack
This is a complete package!
This is a corrected package for v2.6.4 to fix small error in admin/edit_orders.php.
This is only admin/includes/languages/russian/edit_orders.php with Russian translation of v2.6.4.
This is a package of various language definition includes for Order Editor. They are all at various stages of compatibility; some are very recent while others are much older. Each one is in need of being updated.
If you are familiar with any of the languages included here, please(!) update the appropriate file(s) and upload the new updated package for others to use.
Even better: if you are familiar with a language not included here, create the appropriate file and add it in!
Languages included: Danish, Dutch, French, German, Hungarian, Italian, Norwegian, Polish, Portugese, Slovak, Spanish, and Swedish.
9/22/06
v2.6.4
-Changed overlib function to a DHTML tooltip, thus doing away with the file admin/includes/javascript/overlib_mini.js
-Integrated currencies editing ability based on a contribution by eww
-Included optional code at about lines 2051 and 2065 for searching the dropdown menus when adding a product
-Forked the various language definition includes into a separate package
***IGNORE Previous CURRENCIES Package, as it contained incomplete manual instructions***
What this is:
If you DO NOT make use of multiple currencies, you don't need this add-on. Instead, install the most recent FULL PACKAGE version.
This simple addon will give you the ability to manually edit a user's currency or currency value on their purchase.
Screenshot:
http://img171.imageshack.us/img171/483/currencyprevbo4.gif
If you DO NOT make use of multiple currencies, you don't need this add-on. Instead, install the most recent FULL PACKAGE version.
This simple addon will give you the ability to manually edit a user's currency or currency value on their purchase.
Screenshot:
http://img171.imageshack.us/img171/483/currencyprevbo4.gif
This is ONLY the Dutch Translation for the 2.6.3 release.
Please download the 9 August 2006 Full Package by djmonkey1
Please ignore the file below!
This is ONLY the Dutch Translation for the 2.6.3 release.
Please download the 9 August 2006 Full Package by djmonkey1
The Hole file is on danish Now
Full Pack
PLEASE NOTE! For users whose primary language is other than English, make sure you add this to your language definition file for edit_orders.php, translated as necessary:
//add-on for downloads
define('ENTRY_DOWNLOAD_COUNT', 'Download #');
define('ENTRY_DOWNLOAD_FILENAME', 'Filename');
define('ENTRY_DOWNLOAD_MAXDAYS', 'Expiry days');
define('ENTRY_DOWNLOAD_MAXCOUNT', 'Downloads remaining');
ALSO: many of the included language files are out of date. If you could please update the language(s) you are familiar with and post those files here many others will certainly appreciate it.
FULL PACKAGE
8/9/2006
v2.6.3
-Added ability to display and edit download information per product as well as including download information when adding a downloadable product to an order
-IMPORTANT: Changed the way the stock check works. Order Editor had been checking the setting of "Check stock level" in Administration->Configuration->Stock; however after a post by Scotty1 in the support thread it was brought to my attention that it is more logical to go by the setting of "Subtract stock". That shift has been made for this version.
This is a subtle but important change as it could affect the way Order Editor handles stock levels depending on the settings of your site(s).
FULL PACKAGE
PLEASE NOTE: for those whose primary language is other than English: make sure you add this to your language definition file, translated as necessary:
//add-on for downloads
define('ENTRY_DOWNLOAD_COUNT', 'Download #');
define('ENTRY_DOWNLOAD_FILENAME', 'Filename');
define('ENTRY_DOWNLOAD_MAXDAYS', 'Expiry days');
define('ENTRY_DOWNLOAD_MAXCOUNT', 'Downloads remaining');
ALSO: many of the included language definition files are still out of date. If you could please update the language of your choice and post it here for others to use, it will be greatly appreciated.
8/9/2006
v2.6.3
-Added ability to display and edit download information per product as well as including download information when adding a downloadable product to an order
-IMPORTANT: Changed the way the stock check works. Order Editor had been checking the setting of "Check stock level" in Administration->Configuration->Stock; however after a post by Scotty1 in the support thread it was brought to my attention that it is more logical to go by the setting of "Subtract stock". That shift has been made for this version.
This is a subtle but important change as it could affect the way Order Editor handles stock levels depending on the settings of your site(s).
FULL PACKAGE
PLEASE NOTE: for those whose primary language is other than English: make sure you add this to your language definition file, translated as necessary:
//add-on for downloads
define('ENTRY_DOWNLOAD_COUNT', 'Download #');
define('ENTRY_DOWNLOAD_FILENAME', 'Filename');
define('ENTRY_DOWNLOAD_MAXDAYS', 'Expiry days');
define('ENTRY_DOWNLOAD_MAXCOUNT', 'Downloads remaining');
ALSO: many of the included language definition files are still out of date. If you could please update the language of your choice and post it here for others to use, it will be greatly appreciated.
8/9/2006
v2.6.3
-Added ability to display and edit download information per product as well as including download information when adding a downloadable product to an order
-IMPORTANT: Changed the way the stock check works. Order Editor had been checking the setting of "Check stock level" in Administration->Configuration->Stock; however after a post by Scotty1 in the support thread it was brought to my attention that it is more logical to go by the setting of "Subtract stock". That shift has been made for this version.
This is a subtle but important change as it could affect the way Order Editor handles stock levels depending on the settings of your site(s).
Only file with slovak language. v_2.6
FULL PACKAGE
8/1/2006
v2.6.2
-Fixed bug in JavaScript that would result in incorrect totals for some tax rates and the final total
FULL PACKAGE
-Fixed bug where taxes were not being calculated properly when adding a product
-Added Slovak translation by krtko
-Very minor changes to the README file
Includes instructions for upgrading from v2.6 to v2.6.1
Only file with slovak language
v2.6
FULL PACKAGE
This is actually just a roll-up that includes all the bug fixes since v2.5 and one new bug fix for sites that use apostrophes in product names. If you are using v2.5.4 this is a simple one step change, instructions for which are included in the upgrade text in the package.
-Fixed bug where product names with apostrophes were not being displayed properly
-Added new full French translation by lordbdp
-Added new full Danish translation by TheExterminator
-Updated the install instructions, the README, and included an upgrade text file
This is admin/edit_orders.php only. Please download v2.5 for the full package.
-Fixed bug where "add a product" function would fail on certain sites with shared SSL. Patch instructions can be found in the support thread: http://forums.oscommerce.com/index.php?s=&showtopic=54032&view=findpost&p=879478
This is only the admin/includes/languages/french/edit_orders.php with totaly French translation.
This is admin/edit_orders.php only. Please download v2.5 for the rest of the package.
-Fixed bug where the user would see an SQL error when deleting a product that had an empty field for quantity
-Fixed bug in JavaScript where code was looking for a field that would not necessarily exist and so would throw an error when it didn't
The File Is Translate To Full Danish Now, And Chance The Small Error
This is admin/edit_orders.php only, please download v2.5 for the rest of the package.
-Added display of products attributes prices, as applicable, when adding new products. This is not a bug fix and is the only thing different from v2.5.1 so unless you're heavily into products attributes prices there is no big reason to update.
This is admin/edit_orders.php only. Please download v2.5 for th