With great sadness we have to announce that we are ceasing development of all our VirtueMart, WooCommerce and Joomla plugins. Effective immediately, all our plugins -- even those that were paid downloads -- are made available for free from our homepage (GPL license still applies), but we cannot and will not provide any support anymore.
It has been a great pleasure to be part of the thriving development communities of VirtueMart as well as WooCommerce. However, during the last year it became painstakingly clear that in addition to a full-time job, a young family and several other time-consuming hobbies at professional level (like being a professional singer) the plugin development and the support that it requires is not sustainable and is taking its toll. It has been an honor, but it is now time to say good bye!
Welcome,
Guest
|
|
Hello,
Great plugin! I am running Joomla! 3.5.1, VirtueMart 3.0.14 and EU Sales Reports 0.5. The issue I found is that in an exported document there are java scripts? <script id="updateChosen_js" type="text/javascript">//<![CDATA[
if (typeof Virtuemart === "undefined")
var Virtuemart = {};
Virtuemart.updateChosenDropdownLayout = function() {
var vm2string = {editImage: 'edit image',select_all_text: 'Alles selecteren',select_some_options_text: 'Voor iedereen beschikbaar'};
jQuery("select").each( function () {
var swidth = jQuery(this).css("width")+10;
jQuery(this).chosen({enable_select_all: true,select_all_text : vm2string.select_all_text,select_some_options_text:vm2string.select_some_options_text,disable_search_threshold: 5, width: swidth});
});
}
Virtuemart.updateChosenDropdownLayout(); //]]>
</script>
<script id="vm.countryState_js" type="text/javascript">//<![CDATA[
vmSiteurl = "http://localhost/jolo/";
jQuery( function($) {
$("#virtuemart_country_id_field").vm2front("list",{dest : "#virtuemart_state_id_field",ids : "735",prefiks : ""});
}); //]]>
</script>
<script id="keepAliveTime_js" type="text/javascript">//<![CDATA[
var sessMin = 15;var vmAliveUrl = "index.php?option=com_virtuemart&view=virtuemart&task=keepalive";var maxlps = "5";var minlps = "2"; //]]>
</script> Any idea how to resolve this? Kind regards, Jack Houben |
|
Dear Jack,
Thank you for reminding us about this issue (we have encountered this ourselves with our own EU sales reports, but we just removed the JS manually before submitting the exported file to the tax authorities, rather than fixing the bug for sure - shame on us, I know...). We have now fixed this issue for good and released a new version 0.6 of the plugin. Best regards, Reinhold |
|
Thanks!
|
|
btw:
You could add onchange to the checkbox on line 50 in default.php (tmpl folder) Change:
<label><input type="checkbox" <?php if ($this->include_taxed_orders) { ?>checked <?php } ?> name="include_taxed_orders" value="true" style="vertical-align: top; position: relative; bottom: 1px;"> <?php echo vmText::_('VMEXT_EU_RECAP_INCLUDE_TAXED'); ?></label>
into
<label><input type="checkbox" <?php if ($this->include_taxed_orders) { ?>checked <?php } ?> name="include_taxed_orders" value="true" style="vertical-align: top; position: relative; bottom: 1px;" onchange="this.form.submit();"> <?php echo vmText::_('VMEXT_EU_RECAP_INCLUDE_TAXED'); ?></label>
Now the results always reflect the selected period and option. |
|
Dear DaSteelMan,
Thank you for noticing (I actually always ignored this little inconvenience and simply pressed the button to refresh). I have included the onchange attribute to the tag. So, the fix should be included in the next version. Best regards, Reinhold |
|
Thanks!
|