vat-preview-customInvoice-sheet.js 619 Bytes
Newer Older
Ken you's avatar
Ken you committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
citModule.directive('citPreviewCustomInvoiceSheet', ['$log', 'browserService', '$translate',
    function ($log, browserService, $translate) {
        $log.debug('citPreviewCustomInvoiceSheet.ctor()...');

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