| Conditions | 1 |
| Total Lines | 9 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | """Prestamos module.""" |
||
| 8 | def __init__(self, capital, periodos, interes, tipo_periodo=ANUAL): |
||
| 9 | self.capital = capital |
||
| 10 | self.periodos = periodos |
||
| 11 | self.tipo_periodo = tipo_periodo |
||
| 12 | self._interes = interes |
||
| 13 | self.cuotas_interes = [] |
||
| 14 | self.cuotas_amortizacion = [] |
||
| 15 | self.capital_vivo = [] |
||
| 16 | self.total_amortizado = [] |
||
| 17 | |||
| 46 |