We meant before, the next version will be 2.2, but we will keep that for some restructuring.
or all files at
http://dev.virtuemart.net/projects/virtuemart/filesThe new version is now correctly working for the administrated multivendor mode, that means all shipment and payment is done by one vendor. Even this is a 2.0.11 version, we estimate it as quite stable. Maybe the new features have hidden bugs, but the rest should at least work as before. Also the layout changes should be backward compatible, so as long everything works for you there is no urgent need to adjust the overrides.
- mass reference of products to categories or shoppergroups
- joomla plugins in category views
- some eye-candies
a) if ST same as BT is chosen, ST is hidden
b) if pricedisplay per shoppergroup is deactivated, the options for it disapear
- orders list:
a) link to user
b) email displayed
c) more fields are searchable (ordernumber, email, name, address_1, company, zip, ...)
- users list added new fields for the search (email, usertype, group,...)
- new trigger in maincontroller FE
- not logged in users can now have a shoppergroup (with trigger in maincontroller for 3rd party developers)
- better show prices in productdetails
- added Thai states
- added more toggles (shared)
- multivendor
a) Fixed calculation rules for multivendor
b) Fixed checkout for multivendor
c) Frontend editing
- better revenue report
a) shows netto
b) revenue of a vendor per product
c) removed reloading of page, choosing a search parameter
- ask for prices only if first image is not a downloadable file
- added vendor data to register mail
- calculation rules are stored now in the order
- for 3rd party developers, added quantity to product so that customfield plugins can use the quantity
- moved "all in once installer" to the general svn, phing script for creation of the installer is adjusted
Fixed
- displaying wrong tax in the line of a product (double taxed)
- fatal error when registering
- removed vmAdminInfo
- some more strict standards
- fix for unordered variants
- javascript replaced by jquery
- added opacity for userfield=corefields
- fix price_per_unit in category view
- fix URL in call for price
- added new params in klarna
- module product: fix when config param show_price=no
- custom_price is now in the table a decimal
- custom plugins: fixed display
- fixed js paths
- fixed in migrator setting of memory_limit
- fixed search in category view, using search is now searching also for all child categories, but not displaying the level of the category!
- standard payment, removed standard message "add a message to display with the order"
- customfield images styling less generic => better display
- related products and related categories
- some fixes for Klarna
New release E version:
Fixed rounding for quantity higher than 1
added rappen rounding for swizz
fixed revenue report for order_items with quantity > 1
setting of virtuemart permission group removed, result of the joomla group is now only just displayed.
Added shared for category view and small other multivendor enhancements
Templaters should know
"The renderVendorAddress was used one time in the view.html.php of the invoice view, it is still there, but we use now in the view.html.php always
$vendor->vendorFields = $vendorModel->getVendorAddressFields();
the result is buffered and used in renderVendorAddress. So it should use less resource, additionally templaters can use the $this-vendor->vendorFields as they are used to it with the userFields already"
It is still backward compatible, but we will remove the "this->vendorAddress" from the invoice view next time. So use directly shopfunctions::renderVendorAddress in the layout (be aware that the third parameter is for skipping fields)
Layout changes
FE/views/cart/tmpl/default.php
line 34 add
$document->addScriptDeclaration ("
jQuery(document).ready(function($) {
if ( $('#STsameAsBTjs').is(':checked') ) {
$('#output-shipto-display').hide();
} else {
$('#output-shipto-display').show();
}
$('#STsameAsBTjs').click(function(event) {
if($(this).is(':checked')){
$('#STsameAsBT').val('1') ;
$('#output-shipto-display').hide();
} else {
$('#STsameAsBT').val('0') ;
$('#output-shipto-display').show();
}
});
});
");
line 144 add
<input type='hidden' id='STsameAsBT' name='STsameAsBT' value='<?php echo $this->cart->STsameAsBT; ?>'/>
FE/views/cart/tmpl/default_pricelist.php
line 71 replace
echo VmHtml::checkbox('STsameAsBT',$this->cart->STsameAsBT).'<br />';
with
echo VmHtml::checkbox('STsameAsBTjs',$this->cart->STsameAsBT).'<br />';
Do not post your bugs with 2.0.11 here, make an own thread. Comments about the features, the release itself, and similar are welcome