This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<audora:sequenceFlow> <audora:condition> <audora:acts> <audora:act instance="arquivamento" optional="false" position="dsdfsd" signed="false"> <audora:form instance="processo_definir_area_atribuicao" /> </audora:act> </audora:acts> </audora:condition> </audora:sequenceFlow> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<bpmn:startEvent id="StartEvent_1"> | |
<bpmn:extensionElements> | |
<audora:startEvent> | |
<audora:param name="status" type="INT" value="1" /> | |
<audora:param name="oculto" type="BOOLEAN" value="true" /> | |
<audora:param name="id" type="INT" value="4800" /> | |
<audora:param name="novoStatus" type="INT" value="2"/> | |
</audora:startEvent> | |
</bpmn:extensionElements> | |
<bpmn:outgoing>SequenceFlow_1hrj4kb</bpmn:outgoing> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<audora:userTask> | |
.... | |
<audora:question question="bla bla bla" type="select"> | |
<audora:answer value="a" score="1" /> | |
<audora:answer value="b" score="2" /> | |
</audora:question> | |
</audora:userTask> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
insert into pendencia_tipo (active, data_cadastro, descricao, id_agente_autor, status, version, instancia) values (1, NOW(), 'Assessoria', 4, 1, 0, 'assessoria'); | |
insert into pendencia_tipo (active, data_cadastro, descricao, id_agente_autor, status, version, instancia) values (1, NOW(), 'Diligência', 4, 1, 0, 'diligencia'); | |
insert into pendencia_tipo (active, data_cadastro, descricao, id_agente_autor, status, version, instancia) values (1, NOW(), 'Assinatura', 4, 1, 0, 'assinatura'); | |
insert into pendencia_tipo (active, data_cadastro, descricao, id_agente_autor, status, version, instancia) values (1, NOW(), 'Atos a Praticar', 4, 1, 0, 'workflow'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<audora:task situation="está no passo 2" status="2"> <!-- 'situation' e 'status' são obrigatórios --> | |
<audora:script attribute="valorCobrado" value="1000"/> | |
<audora:script attribute="idDepartamento" value="10"/> | |
<audora:restrict attribute="idCargo" value="2"/> | |
<audora:restrict attribute="idDepartamento" value="10"/> | |
</audora:task> | |
<bpmn2:process id="Process_1" isExecutable="false"> | |
.... | |
<audora:process instance="fluxo_teste_workflow_1"/> <!-- Faz referência ao campo 'instancia' do módulo 'Fluxo' --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- saved from url=(0062)http://server.wwsys.com.br:8080/wwsys/download?d=1410810684157 --> | |
<html> | |
<head> | |
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8'> | |
<meta charset='utf-8'> | |
<title>Audora Gerencial</title> | |
</head> | |
<body cz-shortcut-listen='true'> | |
<table style='background-color: #ececec; width: 600px; padding: 50px;'> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class TestPost { | |
final static String URL = "http://45.55.92.161:8080/medcloud-api/image/new"; | |
final static String URL_DEV = "http://localhost:8080/api/image/new"; | |
final static String fileName = "C:\\Users\\Adolfo\\Downloads\\teste.jpg"; | |
final static String USER_TOKEN = "f4660e71-e5a6-46a0-9189-ea849cdd7755"; | |
public static void main(String[] args) throws IllegalStateException, IOException { |