Fix in complement pays

This commit is contained in:
Mauricio 2023-05-25 21:59:13 -06:00
parent 7caf6423e1
commit eeae157772
3 changed files with 5 additions and 5 deletions

View File

@ -1 +1 @@
2.0.4
2.0.5

View File

@ -7664,8 +7664,8 @@ class CfdiPagos(BaseModel):
"TasaOCuotaDR": str(tax.impuesto.tasa),
"ImporteDR": xml_importe,
}
tax_key = tax.impuesto.key
# ~ tax_key = tax.impuesto.key
tax_key = f"{values['ImpuestoDR']}|{values['TasaOCuotaDR']}"
if tax.impuesto.tipo == 'T':
traslados.append(values)
if tax_key in taxes_pay['traslados']:

View File

@ -28,7 +28,7 @@ from conf import DEBUG, MV, LOG_PATH
try:
from conf import DEFAULT_PASSWORD
except ImportError:
DEFAULT_PASSWORD = 'salgueiro3.3'
DEFAULT_PASSWORD = 'salgueiro4.0'
try:
from conf import TITLE_APP
@ -42,7 +42,7 @@ except ImportError:
DEBUG = DEBUG
VERSION = '2.0.4'
VERSION = '2.0.5'
EMAIL_SUPPORT = ('soporte@empresalibre.mx',)
TITLE_APP = '{} v{}'.format(TITLE_APP, VERSION)