vat-preview-output-invoice.js 513 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
citModule.directive('citPreviewOutputInvoice', ['$log',
    function ($log) {
        'use strict';
        $log.debug('citPreviewOutputInvoice.ctor()...');

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

            }
        };
    }
]);