In Croatia we need to show total VAT per VAT group on Invoice/qoute… Invoice is not valid unless tax is shown in that way … it mandatory by law
Is it posibble (i did not go customizing to check for strings yet) to have it show in total VAT per VAT Group
so lets say you have one item with 5% tax, one with 13% tax and one with 25% tax…
Sorry about my writing wrote with mouse
This is correct, example from Tax Agency site…
Before 1 is total amout without taxes
Is total of line items that are taxable with 10% tax
Is total of line items that are taxable with 25% tax
Total tax in 10% group
Total tax in 25% group
Total TAX
After this is total amount with taxes…
This is all minimum information that must be on invoice (discount does not, but this is correct way of displaying it)
I know more and more are geting fiscalisation so i think you need prepare for this especialy in v2…
v1 needs just update if its possible in qoute/invoice template i guess… cose there is information for items in wich tax group they belong… so it should be posible to get it this way…
if you saw… under total tax it should have total tax per tac group… like i wrote and gave example…
i see all data is there in db… maybe i can get it just out on invoice, but how can i get sum tax for items in tax group with 5% , sum of tax for items in tax group with 10% tax and etc … and display it on invoice…?
Also i did not get payment method on invoice, i get only ID of payment method…
i meant can i access thru invoice template that data to implement my self? or its needed to make chamges in system… i see all the data in db, just need a pointers how to access it …
is there a list of all things i can access this way?
i see i can access also
<?php print_r($item); ?>
Anything else?
Maybe it would be good (well i know you are overworked as it is) to have somwhere list of thing we can access… on wiki somewhere it would be easier to customize templates that way
i see i can make now some kind of loop
create (hard coded for now) string in php for each tax group and use if the to sum each tax group and print it on invoice
heh… well hope i’ll learn enough to help, not just ask and give you some work
I have the productname Description, Price, Total
But lets see
The product hosting Large
Amount is one, price is €3,72 then you see the tax, but that is the total price and afther that you see the 21% tax and the last one is the total product amount but that is twice €42,78?
Hire I have the script
I want to make it like this
'Product, Description, Amount, Price, Tax (like 21%), total exc tax …, total inc tax
Would be awsome rsl.php (13.2 KB)
It’s an old post but it seems that the problem still exist.
I fixed it by adding the selection of the item tax rate name in the file mdl_items.php at row 28.
Before was:
$this->db->select('ip_invoice_item_amounts.*, ip_invoice_items.*, item_tax_rates.tax_rate_percent AS item_tax_rate_percent);
Now is:
$this->db->select('ip_invoice_item_amounts.*, ip_invoice_items.*, item_tax_rates.tax_rate_percent AS item_tax_rate_percent, item_tax_rates.tax_rate_name AS item_tax_rate_name');
and then add this code to the invoice template (I’m using the InvoicePlane template), after the “Subtotal” row:
HI
Was this ever implemented (Tax per item column)
I have added tax rate per item column but client is wanting to display tax amount per item
If not imlemented can anyon eplease rived constant for disply
ie - to display tax rate I have added