vat-preview-customInvoice-sheet.js 599 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
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) {
               
                
            }
        };
    }
]);