invoice-confirm.js 552 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
invoiceModule.directive('invoiceConfirm', ['$log', function ($log) {
    'use strict';

    console.log('gdInvoicePrint.ctor()...');
    $log.debug('gdInvoicePrint.ctor()...');
    return {
        restrict: 'E',
        templateUrl: '/app/vat/output-invoice/invoiceConfirm/invoice-confirm.html' + '?_=' + Math.random(),
        scope:
        {
            model:'=',
            operateType: '=',
            onConfirm:'&',
        },
        controller: 'invoiceConfirmController',
        link: function (scope, element) {

        }
    };
}]);