commonModule.directive('invoiceTableTemplate', ['$log', '$translate', function ($log, $translate) { 'use strict'; $log.debug('invoiceTableTemplate.ctor()...'); return { restrict: 'E', templateUrl: '/app/common/controls/invoice-table-template/invoice-table-template.html' + '?_=' + Math.random(), replace: true, controller: 'invoiceTableTemplateController', scope: { invoice: '=', //是否需要加载明细,如果Invoice中不包含,请值为true isLoadDetail:'=?' }, link: function (scope, element) { } }; } ]);