vat-preview-outputoff-invoice.js 512 Bytes
Newer Older
neo's avatar
neo committed
1 2 3
vatModule.directive('vatPreviewOutputoffInvoice', ['$log',
    function ($log) {
        'use strict';
neo's avatar
neo committed
4
        $log.debug('vatImportOutputoffInvoice.ctor()...');
neo's avatar
neo committed
5 6 7 8 9

        return {
            restrict: 'E',
            templateUrl: '/app/vat/preview/vat-preview-outputoff-invoice/vat-preview-outputoff-invoice.html' + '?_=' + Math.random(),
            scope: {},
neo's avatar
neo committed
10
            controller: 'vatPreviewOutputoffInvoiceController',
neo's avatar
neo committed
11 12 13 14 15 16
            link: function (scope, element) {

            }
        };
    }
]);