{"id":2596,"date":"2022-03-14T14:50:25","date_gmt":"2022-03-14T13:50:25","guid":{"rendered":"https:\/\/atl.weboby.com\/die-atlatos-expense-engine\/"},"modified":"2022-12-07T21:15:29","modified_gmt":"2022-12-07T20:15:29","slug":"atlatos-expense-engine","status":"publish","type":"page","link":"https:\/\/atl.weboby.com\/en\/atlatos-expense-engine\/","title":{"rendered":"Atlatos Expense Engine"},"content":{"rendered":"<section\r\n        class=\"hero style1 \"\r\n        style='background-image: url(\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/solutions-expense-engine.png\");'>\r\n    <div class=\"container\">\r\n        <div class=\"row justify-content-center align-items-center text-center\">\r\n                            <div class=\"col-12 col-md-8 text-col\">\r\n                                            <h1 class=\"py-lg-3 py-1 \">Smart, efficient and digital with Atlatos Expense Engine<\/h1>\r\n                                                                                    <p>With our tool, expenses no longer have to be a headache.<\/p>\n                                    <\/div>\r\n                    <\/div>\r\n    <\/div>\r\n    <!--<div class=\"scroll-down\"><i class=\"fas fa-chevron-down\"><\/i><\/div>-->\r\n<\/section>\r\n\r\n\n\n\r\n\r\n<section class=\"atl-icons  bg-circle-popup\">\r\n    <div class=\"container py-5\">\r\n        \r\n            <div class=\"row\">\r\n                <div class=\"col-12 col-xl-2\">\r\n                <\/div>\r\n\r\n                <div class=\"col-12 col-xl-8 pt-3\">\r\n                                            <h2 class=\"has-text-align-center has-text-color\" style=\"color:#b3224c\">\r\n                            <strong>Business trip expenses? Sort them on the go via the app!<\/strong><\/h2>\r\n                    \r\n                    \r\n                    <div style=\"height:1px\" aria-hidden=\"true\" class=\"wp-block-spacer is-style-spacer-large\"><\/div>\r\n\r\n                <\/div>\r\n            <\/div>\r\n\r\n        \r\n\r\n        <div class=\"row icons-row\">\r\n                                                                <div class=\"atl-icon col-lg-4 col-6 larger-icon offset-lg-2 py-4\">\r\n                        <img loading=\"lazy\" decoding=\"async\" width=\"232\" height=\"150\" src=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/engine-reise-auswahlen.png\" class=\"attachment-medium size-medium\" alt=\"engine-reise-ausw\u00e4hlen\" \/>                                                    <p class=\"icon-name pt-3\"> Select trip <\/p>\r\n                                                                    <\/div>\r\n                                    <div class=\"atl-icon col-lg-4 col-6 larger-icon py-4\">\r\n                        <img loading=\"lazy\" decoding=\"async\" width=\"232\" height=\"150\" src=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/engine-belege-hochladen.png\" class=\"attachment-medium size-medium\" alt=\"engine-belege-hochladen\" \/>                                                    <p class=\"icon-name pt-3\"> Upload receipts <\/p>\r\n                                                                    <\/div>\r\n                                    <div class=\"atl-icon col-lg-4 col-6 larger-icon offset-lg-2 py-4\">\r\n                        <img loading=\"lazy\" decoding=\"async\" width=\"232\" height=\"150\" src=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/angaben-zur-reise-erganzen.png\" class=\"attachment-medium size-medium\" alt=\"angaben-zur-reise-erg\u00e4nzen\" \/>                                                    <p class=\"icon-name pt-3\"> Add details about your trip <\/p>\r\n                                                                    <\/div>\r\n                                    <div class=\"atl-icon col-lg-4 col-6 larger-icon py-4\">\r\n                        <img loading=\"lazy\" decoding=\"async\" width=\"232\" height=\"150\" src=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/engine-zur-freigabe-weiterleiten.png\" class=\"attachment-medium size-medium\" alt=\"engine-zur-freigabe-weiterleiten\" \/>                                                    <p class=\"icon-name pt-3\"> Submit for approval <\/p>\r\n                                                                    <\/div>\r\n                                    <\/div>\r\n    <\/div>\r\n<\/section>\r\n\r\n<script>\r\n    \/\/Initialisation\r\n    (function ($) {\r\n\r\n        \/*Scroll Colorize Icons*\/\r\n        if ($(\".atl-icons\").hasClass(\"scroll-colorize\")) {\r\n            let animation_start = false;\r\n            let animation_finish = false;\r\n            let coloring_sensitivity = 3;\r\n            let scroll_count = 0;\r\n            let all_filled = false;\r\n\r\n            $(window).bind('mousewheel touchmove MozMousePixelScroll', function (e) {\r\n                console.log('test');\r\n                if (animation_start && !animation_finish) {\r\n                    console.log(scroll_count)\r\n                    scroll_count++;\r\n                    if (scroll_count % coloring_sensitivity == 0) {\r\n                        $(\".scroll-colorize .atl-icon img\").each(function (index) {\r\n                            if (!$(this).hasClass('colorized')) {\r\n                                all_filled = false;\r\n                                $(this).addClass('colorized');\r\n                                return false;\r\n                            } else if ($(\".scroll-colorize .atl-icon img\").length - 1 === index) {\r\n                                all_filled = true;\r\n                            }\r\n                        });\r\n                    }\r\n                    if (all_filled) {\r\n                        animation_finish = true;\r\n                        $(\"body\").css(\"overflow-y\", \"auto\");\r\n                    }\r\n                }\r\n            });\r\n\r\n\r\n            $(window).scroll(function (e) {\r\n                let scroll = $(window).scrollTop();\r\n                let section_tup_offset = $(\".scroll-colorize\").offset().top;\r\n                let section_tup_height = $(\".scroll-colorize\").outerHeight();\r\n                let section_tup = section_tup_offset + section_tup_height;\r\n                let window_height = window.innerHeight;\r\n                if ((scroll + window_height) > (section_tup + 80) && !animation_finish) {\r\n                    $(\"body\").css(\"overflow-y\", \"hidden\");\r\n                    animation_start = true;\r\n                    console.log('start');\r\n                }\r\n            });\r\n        }\r\n\r\n        if ($(\".atl-icons\").hasClass(\"bg-circle-popup\")) {\r\n            $(window).scroll(function (e) {\r\n                let scroll = $(window).scrollTop();\r\n                let section_top_offset = $(\".bg-circle-popup\").offset().top;\r\n                let section_top_height = $(\".bg-circle-popup\").outerHeight();\r\n                let section_top = section_top_offset + section_top_height;\r\n                let window_height = window.innerHeight;\r\n                if ((scroll + window_height) > (section_top - 80) && !$('.atl-icons').hasClass('show-bg')) {\r\n                    $('.atl-icons').addClass('show-bg');\r\n                }\r\n            });\r\n        }\r\n\r\n        if ($(\".atl-icons\").hasClass(\"colorize-in-time\")) {\r\n            $(window).scroll(function (e) {\r\n                let scroll = $(window).scrollTop();\r\n                let section_top_offset = $(\".colorize-in-time\").offset().top;\r\n                let section_top_height = $(\".colorize-in-time\").outerHeight();\r\n                let section_top = section_top_offset + section_top_height;\r\n                let window_height = window.innerHeight;\r\n                if ((scroll + window_height) > (section_top - 80) && !$('.atl-icons').hasClass('displayed')) {\r\n                    $(\".colorize-in-time .atl-icon img\").each(function (index) {\r\n                        \/\/$(this).delay(1000 * index).addClass(\"colorized\");\r\n                        const $this = $(this);\r\n                        setTimeout(function () {\r\n                            $this.addClass(\"colorized\");\r\n                        }, 800 * index);\r\n                    })\r\n                }\r\n            });\r\n        }\r\n\r\n        if ($(\".atl-icons\").hasClass(\"pop-out\")) {\r\n            $(window).scroll(function (e) {\r\n                let scroll = $(window).scrollTop();\r\n                let section_top_offset = $(\".pop-out\").offset().top;\r\n                let section_top_height = $(\".pop-out\").outerHeight();\r\n                let section_top = section_top_offset + section_top_height;\r\n                let window_height = window.innerHeight;\r\n                if ((scroll + window_height) > (section_top - 80) && !$('.atl-icons').hasClass('displayed')) {\r\n                    $(\".pop-out img\").each(function (index) {\r\n                        $(this).delay(1000 * index).fadeIn(500);\r\n                    })\r\n                    $(\".pop-out .icon-name\").each(function (index) {\r\n                        $(this).delay(1000 * index + 300).fadeIn(500);\r\n                    })\r\n                    $(\".pop-out .icon-description\").each(function (index) {\r\n                        $(this).delay(1000 * index + 300).fadeIn(500);\r\n                    })\r\n                    \/*$(\".pop-out .atl-icon\").each(function (index) {\r\n                        $(this).delay(400 * index).fadeIn(\"fast\");\r\n                    })*\/\r\n                    $(\".pop-out\").addClass(\"displayed\");\r\n                }\r\n            });\r\n        }\r\n\r\n    })(jQuery);\r\n<\/script>\r\n\r\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer is-style-spacer-xlarge\"><\/div>\n\n\n<div class=\"wp-bootstrap-blocks-container container mb-2\">\n\t\n<div class=\"wp-bootstrap-blocks-row row align-items-center\">\n\t\n\n<div class=\"col-6 col-lg-5 py-5 py-lg-0 m-auto\">\n\t\t\t\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"377\" height=\"421\" src=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/expense-engine-icon.png\" alt=\"\" class=\"wp-image-701\" srcset=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/expense-engine-icon.png 377w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/expense-engine-icon-269x300.png 269w\" sizes=\"auto, (max-width: 377px) 100vw, 377px\" \/><\/figure>\n<\/div>\n\t<\/div>\n\n\n\n<div class=\"col-12 col-lg-6 offset-lg-1\">\n\t\t\t\n\n<h2 class=\"has-text-align-left has-text-color wp-block-heading\" style=\"color:#b3224c\"><strong><strong><strong>Making travelling, admin, approval and accounting easier<\/strong><\/strong><\/strong><\/h2>\n\n\n\n<div style=\"height:32px\" aria-hidden=\"true\" class=\"wp-block-spacer is-style-spacer-small\"><\/div>\n\n\n\n<p><strong><strong><strong><strong>Calculate travel allowances<\/strong><\/strong><\/strong><\/strong><br>Allowances for travel costs, subsistence and accommodation can be calculated automatically according to legislation and company rules.<\/p>\n\n\n\n<p><strong><strong><strong><strong>Upload receipts<\/strong><\/strong><\/strong><\/strong><br>Take photos of receipts using the app and the text recognition feature will take care of the rest.<\/p>\n\n\n\n<p><strong><strong><strong>Submit expenses for trip bookings<\/strong><\/strong><\/strong><br>Atlatos Expense Engine generates templates for expenses using booking and billing details. Just imagine how much time that will save for people setting off on business trips!<\/p>\n\n\n\n<p><strong><strong><strong>Approve expenses<\/strong><\/strong><\/strong><br>With the option to introduce multiple steps to the approval process or make it automated, the clear layout of the dashboard guarantees maximum efficiency \u2013 on a computer or the app.<\/p>\n\n\n\n<p><strong><strong><strong>Make payments to employees<\/strong><\/strong><\/strong><br>Expense details are shared with accounting\/payroll systems via a company-specific interface or our standard export options (e.g. Datev, SAP, Navision and Diamant), so expenses can be paid to your employees.<\/p>\n\n\t<\/div>\n\n<\/div>\n\n<\/div>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer is-style-spacer-xlarge\"><\/div>\n\n\n    <section class=\"app-screenshots gradient-bg-screenshots py-5\">\r\n        <div class=\"container\">\r\n                            <div class=\"row text-center\">\r\n                    <div class=\"col-12 col-lg-8 offset-lg-2\">\r\n                        <h2 class=\"pb-5\">Settle on a solution tailored to your business<\/h2>\r\n                    <\/div>\r\n                <\/div>\r\n            \r\n            <div class=\"row justify-content-center\">\r\n                                    <div class=\"p-4 text-center col-lg-3 col-12\">\r\n                        <img loading=\"lazy\" decoding=\"async\" width=\"462\" height=\"1000\" src=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot1_ENG-462x1000.png\" class=\"screenshot-style img-responsive\" alt=\"\" srcset=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot1_ENG-462x1000.png 462w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot1_ENG-138x300.png 138w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot1_ENG-473x1024.png 473w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot1_ENG-231x500.png 231w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot1_ENG.png 504w\" sizes=\"auto, (max-width: 462px) 100vw, 462px\" \/>                    <\/div>\r\n                                    <div class=\"p-4 text-center col-lg-3 col-12\">\r\n                        <img loading=\"lazy\" decoding=\"async\" width=\"462\" height=\"1000\" src=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot2_ENG-462x1000.png\" class=\"screenshot-style img-responsive\" alt=\"\" srcset=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot2_ENG-462x1000.png 462w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot2_ENG-138x300.png 138w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot2_ENG-473x1024.png 473w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot2_ENG-231x500.png 231w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot2_ENG.png 504w\" sizes=\"auto, (max-width: 462px) 100vw, 462px\" \/>                    <\/div>\r\n                                    <div class=\"p-4 text-center col-lg-3 col-12\">\r\n                        <img loading=\"lazy\" decoding=\"async\" width=\"462\" height=\"1000\" src=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot3_ENG-462x1000.png\" class=\"screenshot-style img-responsive\" alt=\"\" srcset=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot3_ENG-462x1000.png 462w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot3_ENG-138x300.png 138w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot3_ENG-473x1024.png 473w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot3_ENG-231x500.png 231w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/11\/Atlatos_ExpenseEngine_Screenshot3_ENG.png 504w\" sizes=\"auto, (max-width: 462px) 100vw, 462px\" \/>                    <\/div>\r\n                \r\n            <\/div>\r\n        <\/div>\r\n    <\/section>\r\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer is-style-spacer-xlarge\"><\/div>\n\n\n<div class=\"wp-bootstrap-blocks-container container mb-2\">\n\t\n<div class=\"wp-bootstrap-blocks-row row align-items-center\">\n\t\n\n<div class=\"col-12 col-lg-6 order-2 order-lg-1\">\n\t\t\t\n\n<h2 class=\"has-text-align-left has-text-color wp-block-heading\" style=\"color:#b3224c\"><strong><strong><strong>What are the benefits for your business?<\/strong><\/strong><\/strong><\/h2>\n\n\n\n<div style=\"height:32px\" aria-hidden=\"true\" class=\"wp-block-spacer is-style-spacer-small\"><\/div>\n\n\n\n<p><strong><strong><strong>End-to-end process without system interruptions<\/strong><\/strong><\/strong><br>The combination of an online booking engine and travel expense management gives you the benefits of an end-to-end process in a single system. Travel requests, bookings and expenses can all be dealt with in one system to suit your business requirements \u2013 and you can use the app or desktop version to do what you need to do.<\/p>\n\n\n\n<p><strong><strong><strong>Flexible configuration<\/strong><\/strong><\/strong><br>You\u2019re free to adjust all kinds of settings to create a configuration that works for you. With everything aligned with your business, the process will be a lot smoother for your employees making business trips. Missing a feature? We\u2019re always happy to work on tailored solutions just for you.<\/p>\n\n\t<\/div>\n\n\n\n<div class=\"col-7 col-lg-5 offset-lg-1 order-1 order-lg-2 py-5 py-lg-0 m-auto\">\n\t\t\t\n<div class=\"wp-block-image\">\n<figure class=\"alignleft size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"308\" height=\"235\" src=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/vorteile-unternehmen1.png\" alt=\"\" class=\"wp-image-695\" srcset=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/vorteile-unternehmen1.png 308w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/vorteile-unternehmen1-300x229.png 300w\" sizes=\"auto, (max-width: 308px) 100vw, 308px\" \/><\/figure>\n<\/div>\n\t<\/div>\n\n<\/div>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer is-style-spacer-large\"><\/div>\n\n<\/div>\n\n\n<div class=\"wp-bootstrap-blocks-container container mb-2\">\n\t\n<div class=\"wp-bootstrap-blocks-row row align-items-center\">\n\t\n\n<div class=\"col-7 col-lg-5 py-5 py-lg-0 m-auto\">\n\t\t\t\n<div class=\"wp-block-image\">\n<figure class=\"alignright size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"290\" height=\"239\" src=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/vorteile-unternehmen2.png\" alt=\"\" class=\"wp-image-697\"\/><\/figure>\n<\/div>\n\t<\/div>\n\n\n\n<div class=\"col-12 col-lg-6 offset-lg-1\">\n\t\t\t\n\n<p><strong><strong><strong>Advice and full system set-up<\/strong><\/strong><\/strong><br>We\u2019re by your side every step of the way when you\u2019re setting up the system. After our kick-off meeting, we help you create the system documentation and sort out the interfaces. Our job isn\u2019t done until you\u2019re happy.<\/p>\n\n\n\n<p><strong><strong><strong><strong>Data protection and security<\/strong><\/strong><\/strong><\/strong><br>Keeping customers\u2019 personal data secure is our top priority. Our data centre has ISO 27001 and PCI DSS certification, and we are subject to regular external data protection and security audits.<\/p>\n\n\t<\/div>\n\n<\/div>\n\n<\/div>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer is-style-spacer-xlarge\"><\/div>\n\n\n<div class=\"wp-bootstrap-blocks-row row\">\n\t\n\n<div class=\"col-12 col-md-3\">\n\t\t\t\t<\/div>\n\n\n\n<div class=\"col-12 col-md-6 px-4 px-lg-0 m-auto\">\n\t\t\t\n\n<figure class=\"wp-block-video\"><video height=\"582\" style=\"aspect-ratio: 776 \/ 582;\" width=\"776\" autoplay loop muted src=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/12\/Screenvideo_ExpenseEngine_ENG.mp4\"><\/video><\/figure>\n\n\t<\/div>\n\n\n\n<div class=\"col-12 col-md-3\">\n\t\t\t\t<\/div>\n\n<\/div>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer is-style-spacer-xlarge\"><\/div>\n\n\n    <section class=\"features-list-section\">\r\n        <div class=\"container\">\r\n                            <div class=\"row\">\r\n                    <div class=\"col-12 col-lg-8 offset-lg-2\">\r\n                        <h2 class=\"pb-5 ps-3\">Features of Atlatos Expense Engine<\/h2>\r\n                    <\/div>\r\n                <\/div>\r\n            \r\n            <div class=\"row\">\r\n                <div class=\"col-12 col-lg-8 offset-lg-2\">\r\n\r\n                    <table class=\"table\">\r\n                        <tbody>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Automatic processing of booking details from Atlatos Profi Traveller and other booking systems if required<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Straightforward process to add travel expenses incurred during a trip<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Receipt photo uploads and manual addition of further details<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Calculation of allowances for subsistence (including reductions) and accommodation (with the option to add company rules)<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Calculation of travel costs with route plans on Google Maps<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Option to combine multiple trips in one claim<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Settlement of all other receipts\/reimbursements<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Straightforward process for admin assistants to submit travel expense claims for employees travelling for business<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Online workflow to approve expenses in multiple steps<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Overview of past expenses and current status of expense claims<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Straightforward process for payment approval and updates by accounts teams<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Account assignment as required by the company<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Compliance with the current requirements of German tax law (EStG) and the public sector (e.g. BRKG, BayRKG and LRKG BW)<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Option of international travel expense claims: for foreign subsidiaries, it is possible to select national tax laws or basic receipt settlement in the relevant currency<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Optional three-monthly check and report <\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Standard interface for other systems in use like SAP, DATEV, Navision and ADP<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Option of customer-specific export interfaces<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Comparison of booking and expense details for AirPlus transactions<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Interface for validation of additional data<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Option of audit-ready archiving for ten years in line with GoBD principles<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Master data imports including approval structure<\/td>\r\n                            <\/tr>\r\n                                                    <tr>\r\n                                <th scope=\"row custom-tr-top\"><i class=\"fas fa-check fa-2x\"><\/i><\/th>\r\n                                <td>Second-level support for employees in accounts and option of semi self-service for employees travelling for business<\/td>\r\n                            <\/tr>\r\n                                                <\/tbody>\r\n                    <\/table>\r\n\r\n                <\/div\r\n            <\/div>\r\n        <\/div>\r\n    <\/section>\r\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer is-style-spacer-xlarge\"><\/div>\n\n\n    <section class=\"container testimonials mx-auto px-0\">\r\n        <div class=\"swiper-wrapper\">\r\n                            <div class=\"row justify-content-center align-items-center swiper-slide mx-0 px-0\">\r\n                    <div class=\"col-12 offset-lg-1 col-lg-3 px-5 pe-lg-5 ps-lg-2 text-center person-image\">\r\n                        <img loading=\"lazy\" decoding=\"async\" width=\"265\" height=\"260\" src=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/Atlatos_Referenz_Christina-Arbini.png\" class=\"attachment-medium size-medium\" alt=\"\" \/>                    <\/div>\r\n                    <div class=\"col-12 col-lg-7 pt-5 px-5 px-lg-2\">\r\n                                                    <h3>\u00bbEfficient, easy, individual\u00ab<\/h3>\r\n                                                                            <p>Atlatos Expense Engine provides a highly efficient expense process &#8211; easy to use for travelers and accounting staff. The Atlatos end-to-end solution (including OBE) means a significant gain in transparency, efficiency and cost reduction for many of our customers. The digitization of travel expense reports is quickly implemented and both our customers and our employees are very satisfied!<\/p>\r\n                        \r\n                        <p class=\"testimonial-name\">Christina Arbini,\r\n                            <strong> <br>Team leader at<br>senseXpense GmbH<\/strong><\/p>\r\n                    <\/div>\r\n                <\/div>\r\n                            <div class=\"row justify-content-center align-items-center swiper-slide mx-0 px-0\">\r\n                    <div class=\"col-12 offset-lg-1 col-lg-3 px-5 pe-lg-5 ps-lg-2 text-center person-image\">\r\n                        <img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"64\" src=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/KYOCERA_CMYK_Logo-positive-300x64.jpg\" class=\"attachment-medium size-medium\" alt=\"\" srcset=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/KYOCERA_CMYK_Logo-positive-300x64.jpg 300w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/KYOCERA_CMYK_Logo-positive-1024x219.jpg 1024w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/KYOCERA_CMYK_Logo-positive-768x164.jpg 768w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/KYOCERA_CMYK_Logo-positive-1536x329.jpg 1536w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/KYOCERA_CMYK_Logo-positive-500x107.jpg 500w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/KYOCERA_CMYK_Logo-positive-1000x214.jpg 1000w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/KYOCERA_CMYK_Logo-positive.jpg 1920w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/>                    <\/div>\r\n                    <div class=\"col-12 col-lg-7 pt-5 px-5 px-lg-2\">\r\n                                                    <h3>\u00bbOur employees love the app!\u00ab<\/h3>\r\n                                                                            <p>Today, flights, hotels, rental cars and even rail travel are booked online or via app. We are supported by an experienced business travel agency that is used as a fulfillment partner by Atlatos. What else we like: the meaningful reporting for negotiating corporate conditions and the mapping of our central payment processes with AirPlus.<\/p>\r\n                        \r\n                        <p class=\"testimonial-name\">Olga Hensing,\r\n                            <strong> <br>KYOCERA Document Solutions<\/strong><\/p>\r\n                    <\/div>\r\n                <\/div>\r\n                            <div class=\"row justify-content-center align-items-center swiper-slide mx-0 px-0\">\r\n                    <div class=\"col-12 offset-lg-1 col-lg-3 px-5 pe-lg-5 ps-lg-2 text-center person-image\">\r\n                        <img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"57\" src=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/1200px-Deutsche_Leasing_logo.svg_-300x57.png\" class=\"attachment-medium size-medium\" alt=\"\" srcset=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/1200px-Deutsche_Leasing_logo.svg_-300x57.png 300w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/1200px-Deutsche_Leasing_logo.svg_-1024x193.png 1024w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/1200px-Deutsche_Leasing_logo.svg_-768x145.png 768w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/1200px-Deutsche_Leasing_logo.svg_-500x94.png 500w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/1200px-Deutsche_Leasing_logo.svg_-1000x188.png 1000w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/1200px-Deutsche_Leasing_logo.svg_.png 1200w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/>                    <\/div>\r\n                    <div class=\"col-12 col-lg-7 pt-5 px-5 px-lg-2\">\r\n                                                    <h3>\u00bbOur result after 2,000 bookings: Excellent!\u00ab<\/h3>\r\n                                                                            <p>Our employees can easily and spontaneously book business trips and create the travel expense report in one system according to our specifications. Checking the expense report with the automatic export to SAP has become much easier. Individual programming is possible and we have a personal contact person for all concerns regarding the system.<\/p>\r\n                        \r\n                        <p class=\"testimonial-name\">Silvia Schottenheim,\r\n                            <strong> <br>Deutsche Leasing AG<\/strong><\/p>\r\n                    <\/div>\r\n                <\/div>\r\n                    <\/div>\r\n        <div class=\"swiper-button-next\"><\/div>\r\n        <div class=\"swiper-button-prev\"><\/div>\r\n    <\/section>\r\n\r\n\r\n<script>\r\n\r\n    jQuery(document).ready(function ($) {\r\n        var testimonialsSwiper = new Swiper(\".testimonials\", {\r\n            slidesPerView: 1,\r\n            loop:true,\r\n            navigation: {\r\n                nextEl: \".swiper-button-next\",\r\n                prevEl: \".swiper-button-prev\",\r\n            },\r\n        });\r\n\r\n    });\r\n<\/script>\r\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer is-style-spacer-xlarge\"><\/div>\n\n\n<section class=\"cta-form \">\r\n    <div class=\"container\">\r\n        <div class=\"row justify-content-center\">\r\n            <div class=\"col-lg-8 text-center pt-lg-4\">\r\n                <h2 class=\"py-lg-5 pt-5 pb-3\">Give Atlatos Expense Engine a go for free!<\/h2>\r\n            <\/div>\r\n        <\/div>\r\n\r\n        <div class=\"row justify-content-around align-items-center\">\r\n            <div class=\"offset-lg-1 col-xl-4 col-lg-5 col-sm-12\">\r\n                <p>Are you ready to revolutionize the way you book business trips? Sign up for an online webinar with test access to see how Atlatos can optimise and streamline travel management for you.<\/p>\n                                    <div class=\"pt-4 d-block text-center text-md-start\">\r\n                        <a class=\"btn-white\" href=\"https:\/\/atl.weboby.com\/en\/book-a-demo\/\"\r\n                           target=\"\">Book a demo<\/a>\r\n                    <\/div>\r\n                            <\/div>\r\n            <div class=\"col-xl-4 col-lg-5 col-sm-12 text-lg-end text-center pt-3 pt-lg-0\">\r\n                <div class=\"webinar-img-responsive\"><img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"400\" src=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/10\/ContactFooter_Laura-Zingel-Account-Managerin.png\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/10\/ContactFooter_Laura-Zingel-Account-Managerin.png 400w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/10\/ContactFooter_Laura-Zingel-Account-Managerin-300x300.png 300w, https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/10\/ContactFooter_Laura-Zingel-Account-Managerin-150x150.png 150w\" sizes=\"auto, (max-width: 400px) 100vw, 400px\" \/><\/div>\r\n                <p class=\"webinar-small-text\"><strong>Laura Zingel                        <\/strong><br>Account Manager                <\/p>\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n<\/section>\r\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-2596","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.13 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Atlatos Expense Engine - Atlatos<\/title>\n<meta name=\"description\" content=\"Dienstreisen und Reisekosten abrechnen ist einfach mit der Atlatos Expense Engine: Belege als Fotos hochladen, Fahrtkosten berechnen lassen und vieles mehr!\" \/>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Atlatos Expense Engine - Atlatos\" \/>\n<meta property=\"og:description\" content=\"Dienstreisen und Reisekosten abrechnen ist einfach mit der Atlatos Expense Engine: Belege als Fotos hochladen, Fahrtkosten berechnen lassen und vieles mehr!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atl.weboby.com\/en\/atlatos-expense-engine\/\" \/>\n<meta property=\"og:site_name\" content=\"Atlatos\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-07T20:15:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/expense-engine-icon.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atl.weboby.com\/en\/atlatos-expense-engine\/\",\"url\":\"https:\/\/atl.weboby.com\/en\/atlatos-expense-engine\/\",\"name\":\"Atlatos Expense Engine - Atlatos\",\"isPartOf\":{\"@id\":\"https:\/\/atl.weboby.com\/en\/#website\"},\"datePublished\":\"2022-03-14T13:50:25+00:00\",\"dateModified\":\"2022-12-07T20:15:29+00:00\",\"description\":\"Dienstreisen und Reisekosten abrechnen ist einfach mit der Atlatos Expense Engine: Belege als Fotos hochladen, Fahrtkosten berechnen lassen und vieles mehr!\",\"breadcrumb\":{\"@id\":\"https:\/\/atl.weboby.com\/en\/atlatos-expense-engine\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atl.weboby.com\/en\/atlatos-expense-engine\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atl.weboby.com\/en\/atlatos-expense-engine\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/atl.weboby.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Atlatos Expense Engine\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atl.weboby.com\/en\/#website\",\"url\":\"https:\/\/atl.weboby.com\/en\/\",\"name\":\"Atlatos\",\"description\":\"Business Travel L\u00f6sungen f\u00fcr Unternehmen\",\"publisher\":{\"@id\":\"https:\/\/atl.weboby.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atl.weboby.com\/en\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atl.weboby.com\/en\/#organization\",\"name\":\"Atlatos GmbH\",\"url\":\"https:\/\/atl.weboby.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/atl.weboby.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/logo.png\",\"contentUrl\":\"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/logo.png\",\"width\":1204,\"height\":654,\"caption\":\"Atlatos GmbH\"},\"image\":{\"@id\":\"https:\/\/atl.weboby.com\/en\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Atlatos Expense Engine - Atlatos","description":"Dienstreisen und Reisekosten abrechnen ist einfach mit der Atlatos Expense Engine: Belege als Fotos hochladen, Fahrtkosten berechnen lassen und vieles mehr!","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Atlatos Expense Engine - Atlatos","og_description":"Dienstreisen und Reisekosten abrechnen ist einfach mit der Atlatos Expense Engine: Belege als Fotos hochladen, Fahrtkosten berechnen lassen und vieles mehr!","og_url":"https:\/\/atl.weboby.com\/en\/atlatos-expense-engine\/","og_site_name":"Atlatos","article_modified_time":"2022-12-07T20:15:29+00:00","og_image":[{"url":"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/expense-engine-icon.png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/atl.weboby.com\/en\/atlatos-expense-engine\/","url":"https:\/\/atl.weboby.com\/en\/atlatos-expense-engine\/","name":"Atlatos Expense Engine - Atlatos","isPartOf":{"@id":"https:\/\/atl.weboby.com\/en\/#website"},"datePublished":"2022-03-14T13:50:25+00:00","dateModified":"2022-12-07T20:15:29+00:00","description":"Dienstreisen und Reisekosten abrechnen ist einfach mit der Atlatos Expense Engine: Belege als Fotos hochladen, Fahrtkosten berechnen lassen und vieles mehr!","breadcrumb":{"@id":"https:\/\/atl.weboby.com\/en\/atlatos-expense-engine\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atl.weboby.com\/en\/atlatos-expense-engine\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atl.weboby.com\/en\/atlatos-expense-engine\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/atl.weboby.com\/en\/"},{"@type":"ListItem","position":2,"name":"Atlatos Expense Engine"}]},{"@type":"WebSite","@id":"https:\/\/atl.weboby.com\/en\/#website","url":"https:\/\/atl.weboby.com\/en\/","name":"Atlatos","description":"Business Travel L\u00f6sungen f\u00fcr Unternehmen","publisher":{"@id":"https:\/\/atl.weboby.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atl.weboby.com\/en\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/atl.weboby.com\/en\/#organization","name":"Atlatos GmbH","url":"https:\/\/atl.weboby.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/atl.weboby.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/logo.png","contentUrl":"https:\/\/atl.weboby.com\/wp-content\/uploads\/2022\/03\/logo.png","width":1204,"height":654,"caption":"Atlatos GmbH"},"image":{"@id":"https:\/\/atl.weboby.com\/en\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/atl.weboby.com\/en\/wp-json\/wp\/v2\/pages\/2596","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atl.weboby.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/atl.weboby.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/atl.weboby.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atl.weboby.com\/en\/wp-json\/wp\/v2\/comments?post=2596"}],"version-history":[{"count":22,"href":"https:\/\/atl.weboby.com\/en\/wp-json\/wp\/v2\/pages\/2596\/revisions"}],"predecessor-version":[{"id":3538,"href":"https:\/\/atl.weboby.com\/en\/wp-json\/wp\/v2\/pages\/2596\/revisions\/3538"}],"wp:attachment":[{"href":"https:\/\/atl.weboby.com\/en\/wp-json\/wp\/v2\/media?parent=2596"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}