Commit dc522315 by Tu Nombre

adaptado al codigo 13 digitos tipo europeo

1 parent 9927479f
...@@ -28,6 +28,9 @@ class ValidacionCorreo(): ...@@ -28,6 +28,9 @@ class ValidacionCorreo():
def ValidarCorreo(self, correo): def ValidarCorreo(self, correo):
"""si cumpre devuelve el mail, sino devuelve False""" """si cumpre devuelve el mail, sino devuelve False"""
Correo = str(correo).lower() Correo = str(correo).lower()
Correo = Correo.replace(" ","")
Correo = Correo.replace("\t","")
Correo = Correo.replace("\n","")
if self.validarcorreo(Correo) == False: if self.validarcorreo(Correo) == False:
Correo = False Correo = False
return(Correo) return(Correo)
...@@ -69,6 +72,7 @@ class ValidacionTelefonosArgentinos(): ...@@ -69,6 +72,7 @@ class ValidacionTelefonosArgentinos():
self.AreaDefault = "341" self.AreaDefault = "341"
self.Internacional = True self.Internacional = True
self.InternalCod = "54" self.InternalCod = "54"
self.InternalCodLargo = "549"
def ValidarTelefono(self, tel, area="", internacional="", CodigoInternacional=""): def ValidarTelefono(self, tel, area="", internacional="", CodigoInternacional=""):
if area == "": if area == "":
...@@ -86,8 +90,14 @@ class ValidacionTelefonosArgentinos(): ...@@ -86,8 +90,14 @@ class ValidacionTelefonosArgentinos():
return(n) return(n)
def internacionalNumero(self, tel): def internacionalNumero(self, tel):
if tel[0]+tel[1]+tel[2] == self.InternalCodLargo:
#print("borro codigo internacional largo")
tel = tel[1:]
tel = tel[1:]
tel = tel[1:]
return(tel)
if tel[0]+tel[1] == self.InternalCod: if tel[0]+tel[1] == self.InternalCod:
print("borro codigo internacional") #print("borro codigo internacional")
tel = tel[1:] tel = tel[1:]
tel = tel[1:] tel = tel[1:]
return(tel) return(tel)
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!