I am struggling to configure taxes on my Merchello 2.5 site.
I need the admin to enter prices tax included.
My shipping costs are taxable and entered tax included.
I am using fixed tax provider, how can i get this working? have changed ApplyTaxesToInvoice to false in merchello.config and set fixed tax provider to include tax in product price but no change :(
Rusty, once i read your were changing how taxes are generated for Merchello 2.6, any news?
I have updated to Merchello 2.6 and now i have set tax applyied to invoice. How can i tell Merchello that the price entered in the backoffice is the price tax included?
ie. Tax is 21%
Admin enter product price: 10€
Price in product page: 10€ OK
Checkout: taxes: 10x0.21=2.1€ -> wrong
it shoud be: Price vat ex: 10€/1.21=8.26€ and now x0.21 = 1.73€ -> OK
I have tried creating a new tax provider using and old from Merchello v1.x but:
Tax provider section inside Gateways providers is not showing in Merchello due to a bug that dont render the scroll bar (using Chrome), i have to zoom out enough to see it.
New tax provider is not showing in the backoffice neither in the gateways provider section nor in the taxes tab.
I cant find the new tax provider implementation in Merchello 2.6 source code.
I had this scrollbar issue as well, I've changed the template file:
\App_Plugins\Merchello\Backoffice\Merchello\directives\html\merchellopanel.tpl.html
MrFlo's suggestion break the Product's Extended Content UI. But you give me a good hints to trace on it! Actually the Product content UI is scrollable, so it must be a correct reference to compare with other non-scrollable pages...and the answer is "umb-editor-wrapper"!
My Solution: Under directory \App_Plugins\Merchello\Backoffice\Merchello,
global replace all <umb-panel> to <umb-panel class="umb-editor-wrapper">
Problem with tax included prices in Merchello 2.5
I am struggling to configure taxes on my Merchello 2.5 site. I need the admin to enter prices tax included. My shipping costs are taxable and entered tax included. I am using fixed tax provider, how can i get this working? have changed ApplyTaxesToInvoice to false in merchello.config and set fixed tax provider to include tax in product price but no change :(
Rusty, once i read your were changing how taxes are generated for Merchello 2.6, any news?
I have updated to Merchello 2.6 and now i have set tax applyied to invoice. How can i tell Merchello that the price entered in the backoffice is the price tax included?
ie. Tax is 21% Admin enter product price: 10€
Price in product page: 10€ OK Checkout: taxes: 10x0.21=2.1€ -> wrong it shoud be: Price vat ex: 10€/1.21=8.26€ and now x0.21 = 1.73€ -> OK
I have tried creating a new tax provider using and old from Merchello v1.x but:
I cant find the new tax provider implementation in Merchello 2.6 source code.
Hi,
I had this scrollbar issue as well, I've changed the template file: \App_Plugins\Merchello\Backoffice\Merchello\directives\html\merchellopanel.tpl.html
I've removed the "umb-editor-container" class
MrFlo's suggestion break the Product's Extended Content UI. But you give me a good hints to trace on it! Actually the Product content UI is scrollable, so it must be a correct reference to compare with other non-scrollable pages...and the answer is "umb-editor-wrapper"!
My Solution: Under directory \App_Plugins\Merchello\Backoffice\Merchello, global replace all
<umb-panel>
to<umb-panel class="umb-editor-wrapper">
e.g.
is working on a reply...