POST api/RisOrdenTotales/calcular
Request Information
URI Parameters
None.
Body Parameters
RisOrdenTotalesRequestDto| Name | Description | Type | Additional information |
|---|---|---|---|
| InstitucionID | string |
None. |
|
| TipoPaciente | string |
None. |
|
| Prestaciones | Collection of RisOrdenTotalesPrestacionItemDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"InstitucionID": "sample string 1",
"TipoPaciente": "sample string 2",
"Prestaciones": [
{
"TempID": 1,
"Clase": "sample string 2",
"Prestacion": "sample string 3",
"Cantidad": 4,
"ImporteAbonado": 5.0,
"Copago": 6.0
},
{
"TempID": 1,
"Clase": "sample string 2",
"Prestacion": "sample string 3",
"Cantidad": 4,
"ImporteAbonado": 5.0,
"Copago": 6.0
}
]
}
Response Information
Resource Description
RisOrdenTotalesResponseDto| Name | Description | Type | Additional information |
|---|---|---|---|
| SubTotal | decimal number |
None. |
|
| Copago | decimal number |
None. |
|
| Deposito | decimal number |
None. |
|
| Total | decimal number |
None. |
|
| PorcIVA1 | decimal number |
None. |
|
| IVA1 | decimal number |
None. |
|
| PorcIVA2 | decimal number |
None. |
|
| IVA2 | decimal number |
None. |
|
| TotalFinal | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"SubTotal": 1.0,
"Copago": 2.0,
"Deposito": 3.0,
"Total": 4.0,
"PorcIVA1": 5.0,
"IVA1": 6.0,
"PorcIVA2": 7.0,
"IVA2": 8.0,
"TotalFinal": 9.0
}