Lithuania
Article 40, paragraph 2 of the Corporate Income Tax Law, adopted in December 2001, constitutes the legal basis for the Arm’s Length Principle application.
Decree 1K-123 of April 9, 2004, provided comprehensive documentation requirements applicable to accounting periods commencing from 2004.
Transfer Pricing Documentation
The documentation must be prepared before the 15th day of the sixth month following the end of the fiscal year.
Local Report
The Local Report must be prepared by Lithuanian residents and non-residents with a permanent establishment (PE) in Lithuania whose income in the previous tax period exceeds € 3 million and by regulated financial and credit institutions and insurance companies, regardless of income.
Master File
The Master File must be prepared by Lithuanian residents and non-residents whose income (attributed to a PE) in the previous tax period exceeds € 15 million and who have a permanent establishment (PE) in Lithuania belonging to a multinational group.
Penalties
Failure to comply with Transfer Pricing documentation requirements will result in a penalty ranging from € 1,820 to € 5,590, and the penalty for repeated violations will range from € 3,770 to € 6,000.
<script> /* Author: Wolfgang Hartl Author URI: https://my-webcraftdesign.at/ DOCS: https://my-webcraftdesign.at/tutorial/read-more-read-less-toggle-in-bricksbuilder/ */ function WCD_rmrl(options) { const readLessText = options.readLessText; const readMoreText = options.readMoreText; const rmrlContent = document.querySelectorAll("[wcd_rmrl_percentage]"); rmrlContent.forEach((element) => { // INITIAL SETUP (define height, overflow and attributes) element.style.overflow = "hidden"; element.setAttribute("wcd_rmrl_max", element.clientHeight + "px"); var percentage = element.getAttribute("wcd_rmrl_percentage"); var height = element.clientHeight; height = Math.round((height / 100) * percentage) + "px"; element.setAttribute("wcd_rmrl_min", height); element.style.height = height; //ASSIGN CLICK EVENT TO TRIGGER trigger = element.nextSibling; trigger.addEventListener("click", function () { if (element.style.height == element.getAttribute("wcd_rmrl_min")) { element.style.height = element.getAttribute("wcd_rmrl_max"); this.childNodes.forEach((node) => { if (node.nodeValue !== null) { node.nodeValue = readLessText; } }); } else { element.style.height = element.getAttribute("wcd_rmrl_min"); this.childNodes.forEach((node) => { if (node.nodeValue !== null) { node.nodeValue = readMoreText; } }); } }); }); } const rmrl = new WCD_rmrl({ readLessText : 'Read Less', readMoreText : 'Read More', }); </script>