vat-preview-output-invoice.js 497 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
vatModule.directive('vatPreviewOutputInvoice', ['$log',
    function ($log) {
        'use strict';
        $log.debug('vatImportOutputInvoice.ctor()...');

        return {
            restrict: 'E',
            templateUrl: '/app/vat/preview/vat-preview-output-invoice/vat-preview-output-invoice.html' + '?_=' + Math.random(),
            scope: {},
            controller: 'vatPreviewOutputInvoiceController',
            link: function (scope, element) {

            }
        };
    }
]);