Merge branch 'develop'

Actualizar archivos de configuración
This commit is contained in:
Mauricio Baeza 2017-12-20 22:04:10 -06:00
commit eaa762a7ff
3 changed files with 8 additions and 5 deletions

View File

@ -10,7 +10,7 @@ DEFAULT_PASSWORD = 'blades3.3'
#~ Establece una ruta accesible para el servidor web
LOG_PATH = '/srv/empresa/logs/empresa-libre.log'
LOG_PATH = '/home/empresa/.opt/empresa-libre.log'
# ~ Establece los valores para sincronizar los backups de la base de datos
# ~ por ejemplo

View File

@ -397,7 +397,6 @@ class Certificado(object):
print ('\n', result)
return data
if not DEBUG:
if not rfc == session_rfc:
self.error = 'El RFC del certificado no corresponde.'
@ -1755,6 +1754,7 @@ class ImportFacturaLibre(object):
tasas = {
'16': 0.16,
'16.00': 0.16,
'11': 0.11,
'-10': 0.10,
'0': 0.0,
@ -1861,6 +1861,9 @@ class ImportFacturaLibre(object):
for row in rows:
new = {t: row[s] for s, t in fields}
new['slug'] = to_slug(new['nombre'])
new['fecha_alta'] = str(parser.parse(new['fecha_alta']))
for _, f in fields:
new[f] = new[f] or ''
if new['es_extranjero']:
new['tipo_persona'] = 4
elif new['rfc'] == 'XAXX010101000':

View File

@ -1,8 +1,8 @@
[uwsgi]
http = :8000
uid = user
gid = user
chdir = /home/USER/.opt/empresa-libre/source/app
uid = empresa
gid = empresa
chdir = /home/empresa/.opt/empresa-libre/source/app
wsgi-file = main.py
callable = app
master = true