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

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