Mejoras Liquidacion
This commit is contained in:
parent
cba4454dae
commit
5b16970477
|
|
@ -4,41 +4,59 @@
|
||||||
"canal": null,
|
"canal": null,
|
||||||
"medio": null,
|
"medio": null,
|
||||||
"aplicacion": "WeMedicalProV1.0",
|
"aplicacion": "WeMedicalProV1.0",
|
||||||
"tipoTransaccion": "0101114",
|
"tipoTransaccion": "0101113",
|
||||||
"usuario": "1715060073",
|
"usuario": "1715060073",
|
||||||
"uuid": "d869bdf8953abf817dc01f6ee97cdbde669dda38aa92f7cc9d9ed424836d4bae",
|
"uuid": "9a70b93247b8ce133e48e1be7506dda9",
|
||||||
"fechaHora": null,
|
"fechaHora": null,
|
||||||
"idioma": null,
|
"idioma": null,
|
||||||
"empresa": null,
|
"empresa": null,
|
||||||
"geolocalizacion": null
|
"geolocalizacion": null
|
||||||
},
|
},
|
||||||
"bodyIn": {
|
"bodyIn": {
|
||||||
"tipoAccion": 1,
|
"tipoAccion": 2,
|
||||||
"entidad": "Agendamiento",
|
"entidad": "Persona",
|
||||||
"entidades": [
|
"entidades": [
|
||||||
{
|
{
|
||||||
"polCodigo": 2077,
|
"perCodigo": 421,
|
||||||
"perBeneficiario": 3124,
|
"detTipoIdentificacion": 3,
|
||||||
"locCodigo": "0701",
|
"perIdentificacion": "1102021886",
|
||||||
"preCodigo": 2,
|
"perApellidos": "VELASQUEZ CASTILLO",
|
||||||
"usuCodigo": 1,
|
"perNombres": "PEDRO SALOMON",
|
||||||
"detTipo": "23953",
|
"perFechaNacimiento": "27/09/1961",
|
||||||
"ageFechaRegistro": "05/10/2020 00:32:28",
|
"perDireccion": "-Actualizar- actualizado666",
|
||||||
"ageFechaCita": "05/10/2020 12:15:08",
|
"perNacionalidad": "ECUATORIANO",
|
||||||
"ageSintomas": "prueba sintomas",
|
"perMail": "christianpaul588@gmail.com",
|
||||||
"ageTelefono": "9873453234",
|
"detGenero": 17203,
|
||||||
"ageObservaciones": "prueba observaciones",
|
"locCodigo": "010102",
|
||||||
"ageNotificado": 1,
|
"telefono": [
|
||||||
"ageEspecialidad": "",
|
|
||||||
"ageMedico": "Luis",
|
|
||||||
"agePreexistencia": "SI",
|
|
||||||
"ageCobertura": "3000",
|
|
||||||
"ageObservaMedico": "observacion prueba medico JAMES",
|
|
||||||
"estado": [
|
|
||||||
{
|
{
|
||||||
"usuCodigo": 1,
|
"detTipo": 17208,
|
||||||
"detEstado": "23909",
|
"telNumero": "0986993675",
|
||||||
"esaObservacion": "observaciones prueba cirugia JAMES"
|
"telObservacion": "DATO CARGADO DESDE EL SERVICIO",
|
||||||
|
"telEstado": 1,
|
||||||
|
"telCodigo": 832
|
||||||
|
}, {
|
||||||
|
"detTipo": 17208,
|
||||||
|
"telNumero": "072107182",
|
||||||
|
"telObservacion": "DATO CARGADO DESDE EL SERVICIO",
|
||||||
|
"telEstado": 1,
|
||||||
|
"telCodigo": 833
|
||||||
|
}, {
|
||||||
|
"detTipo": 23586,
|
||||||
|
"telNumero": "0994757867",
|
||||||
|
"telObservacion": "",
|
||||||
|
"telEstado": 0,
|
||||||
|
"telCodigo": 3607
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"cuentasBancarias": [
|
||||||
|
{
|
||||||
|
"cueCuenta": " ",
|
||||||
|
"detIfi": 23838,
|
||||||
|
"cueDebito": null,
|
||||||
|
"empCodigo": 2,
|
||||||
|
"cueEstado": 1,
|
||||||
|
"cueCodigo": 410
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,71 @@
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>TestNG: Command line test</title>
|
||||||
|
<link href="../testng.css" rel="stylesheet" type="text/css" />
|
||||||
|
<link href="../my-testng.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
.log { display: none;}
|
||||||
|
.stack-trace { display: none;}
|
||||||
|
</style>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
function flip(e) {
|
||||||
|
current = e.style.display;
|
||||||
|
if (current == 'block') {
|
||||||
|
e.style.display = 'none';
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
e.style.display = 'block';
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function toggleBox(szDivId, elem, msg1, msg2)
|
||||||
|
{
|
||||||
|
var res = -1; if (document.getElementById) {
|
||||||
|
res = flip(document.getElementById(szDivId));
|
||||||
|
}
|
||||||
|
else if (document.all) {
|
||||||
|
// this is the way old msie versions work
|
||||||
|
res = flip(document.all[szDivId]);
|
||||||
|
}
|
||||||
|
if(elem) {
|
||||||
|
if(res == 0) elem.innerHTML = msg1; else elem.innerHTML = msg2;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function toggleAllBoxes() {
|
||||||
|
if (document.getElementsByTagName) {
|
||||||
|
d = document.getElementsByTagName('div');
|
||||||
|
for (i = 0; i < d.length; i++) {
|
||||||
|
if (d[i].className == 'log') {
|
||||||
|
flip(d[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// -->
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h2 align='center'>Command line test</h2><table border='1' align="center">
|
||||||
|
<tr>
|
||||||
|
<td>Tests passed/Failed/Skipped:</td><td>0/0/0</td>
|
||||||
|
</tr><tr>
|
||||||
|
<td>Started on:</td><td>Wed Oct 28 14:11:21 ECT 2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr><td>Total time:</td><td>0 seconds (5 ms)</td>
|
||||||
|
</tr><tr>
|
||||||
|
<td>Included groups:</td><td></td>
|
||||||
|
</tr><tr>
|
||||||
|
<td>Excluded groups:</td><td></td>
|
||||||
|
</tr>
|
||||||
|
</table><p/>
|
||||||
|
<small><i>(Hover the method name to see the test class name)</i></small><p/>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Generated by org.testng.reporters.JUnitXMLReporter -->
|
||||||
|
<testsuite ignored="0" hostname="laptop001" failures="0" tests="0" time="0.005" errors="0" timestamp="28 oct. 2020 19:11:21 GMT">
|
||||||
|
</testsuite>
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<testng-results ignored="0" total="0" passed="0" failed="0" skipped="0">
|
||||||
|
<reporter-output>
|
||||||
|
</reporter-output>
|
||||||
|
<suite started-at="2020-10-28T19:11:21Z" name="com.qsoft.test.Tester" finished-at="2020-10-28T19:11:21Z" duration-ms="5">
|
||||||
|
<groups>
|
||||||
|
</groups>
|
||||||
|
<test started-at="2020-10-28T19:11:21Z" name="Command line test" finished-at="2020-10-28T19:11:21Z" duration-ms="5">
|
||||||
|
</test> <!-- Command line test -->
|
||||||
|
</suite> <!-- com.qsoft.test.Tester -->
|
||||||
|
</testng-results>
|
||||||
Loading…
Reference in New Issue