Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.
Bloco de código
languagejs
titleexecution.service.js
linenumberstrue
    executionFactory.$inject = ['$totvsresource'];
    
    function executionFactory($totvsresource) {

		// definimos uma nova factory a partir do totvsresource, passando a URL do serviço
		var factory = $totvsresource.REST('/totvs-html-framework-sample/rest/execution', {}, {});
		
		factory.saveRecordsend = function (model, callback) {
			return this.TOTVSSave({}, model, callback);
		};
		
		return factory;
	}