vatModule.directive('vatPreviewTheBalanceSheet', ['$log', 'browserService', '$translate', 'region', '$timeout',
    function ($log, browserService, $translate, region, $timeout) {
        $log.debug('vatPreviewTheBalanceSheet.ctor()...');

        return {
            restrict: 'E',
            templateUrl: '/app/vat/preview/vat-preview-the-balance-sheet/vat-preview-the-balance-sheet.html' + '?_=' + Math.random(),
            scope: {},
            controller: 'VatPreviewTheBalanceSheetController',
            link: function ($scope, element) {

            }
        }
    }
]);