preview-trial-balance.js 598 Bytes
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
commonModule.directive('previewTrialBalance', ['$log', 'browserService', '$translate',
    function ($log, browserService, $translate) {
        $log.debug('previewTrialBalance.ctor()...');

        return {
            restrict: 'E',
            templateUrl: '/app/common/controls/preview-trial-balance/preview-trial-balance.html' + '?_=' + Math.random(),
            scope: {
                project: '=?',
                month:'=?',
            },
            controller: 'previewTrialBalanceController',
            link: function ($scope, element) { 
            }
        };
    }
]);