-
Notifications
You must be signed in to change notification settings - Fork 0
/
8. Tribunales (Final) (V. S. Milardovich).py
50 lines (40 loc) · 1.87 KB
/
8. Tribunales (Final) (V. S. Milardovich).py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#------------------- IMPORTAR LIBRERIAS ----------------------------------
import os
import pickle
from random import randint
#----------------------- DEFINICION DE CLASES/REGISTROS ----------------------------------
class Juicio:
def __init__(self):
self.nro_juicio = 0
self.id = 0
self.juzgado = 0
self.ano = 0
self.caratula = ""
self.nro_cliente = 0
self.cliente = ""
self.estado = True
class Actuacion:
def __init__(self):
self.id = 0
self.descripcion = ""
self.cant_hs = 0.0
self.gastos = 0.0
#----------------------------- VALIDACIONES DATOS DE ENTRADA + FORMATEO -----------------------------------------
def formatearJuicio(juicio):
juicio.nro_juicio = str(juicio.nro_juicio).ljust(7, ' ')
juicio.id = str(juicio.id).ljust(7, ' ')
juicio.juzgado = str(juicio.juzgado).ljust(7, ' ')
juicio.ano = str(juicio.ano).ljust(4, ' ')
juicio.caratula = juicio.caratula.ljust(64, ' ')
juicio.cliente = juicio.cliente.ljust(32, ' ')
def formatearActuacion(actuacion):
actuacion.id = str(actuacion.id).ljust(7, ' ')
actuacion.descripcion = str(actuacion.descripcion).ljust(64, ' ')
actuacion.cant_hs = str(actuacion.cant_hs).ljust(6, ' ')
actuacion.gastos = str(actuacion.gastos).ljust(6, ' ')
#----------------------------- CARGAS/ALTAS -----------------------------------------
#----------------------------- BAJA LOGICA -----------------------------------------
#----------------------------- MODIFICAR/ACTUALIZAR un campo -----------------------------------------
#----------------------------- CONSULTA DE UN REGISTRO / LISTAR / MOSTRAR -----------------------------------------
#----------------------------- PROGRAMA PRINCIPAL -----------------------------------------
#----------------------------- APERTURA DE ARCHIVOS -----------------------------------------