output-reconciliation-keywords.js 563 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
invoiceModule.directive('outputReconciliationKeywords', ['$log',
    function ($log) {
        return {
            restrict: 'E',
            templateUrl: '/app/vat/output-invoice/outputReconciliationConfiguration/output-reconciliation-keywords.html' + '?_=' + Math.random(),
            replace: true,
            scope: {
                keywordsList: "=",
                isReadonly: '='
            },
            controller: 'outputReconciliationKeywordsController',
            link: function (scope, element, attr) {

            }
        }
    }
]);