Skip to content

Commit

Permalink
regex: AIE
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloCastellano committed Feb 6, 2016
1 parent 25bd94e commit 4bedade
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bormeparser/regex.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,8 @@ def regex_nombre_empresa(nombre):
nombre = nombre[:-44] + 'SRLL'
elif nombre.endswith(' SOCIEDAD DE RESPONSABILIDAD LIMITADA PROFESIONAL'):
nombre = nombre[:-48] + 'SRLP'
elif nombre.endswith(' A.I.E'):
nombre = nombre[:-5] + 'AIE'
elif nombre.endswith(' AGRUPACION DE INTERES ECONOMICO'):
nombre = nombre[:-31] + 'AIE'
elif nombre.endswith(' FONDO DE PENSIONES'):
Expand Down

0 comments on commit 4bedade

Please sign in to comment.