In the Administrative Comments of the invoice the codigo_respuesta_pol doesnt match the number and the description;

Estado de la transacción (estado_pol): 15 Impreso
Códifo de respuesta (codigo_respuesta_pol): 26 Transacción en proceso de validación

must be; 26 Comprobante generado, esperando pago en banco.

(the system is taking the number for the description from estado_pol; codigo_respuesta_pol 15 Transacción en proceso de validación)

Comments

juankvillegas’s picture

Thank you, I'll check it.

javiereduardo’s picture

In uc_pagosonlnie.pages.inc

the line 205:
$output .= '<li>' . t('Response code (!key): !value !info' , array('!key' => 'codigo_respuesta_pol', '!value' => $pol['codigo_respuesta_pol'], '!info' => uc_pagosonline_get_codigo_respuesta_pol($pol['estado_pol']))) . '</li>';

should be:
$output .= '<li>' . t('Response code (!key): !value !info' , array('!key' => 'codigo_respuesta_pol', '!value' => $pol['codigo_respuesta_pol'], '!info' => uc_pagosonline_get_codigo_respuesta_pol($pol['codigo_respuesta_pol']))) . '</li>';

juankvillegas’s picture

Fixed in version 6.x-1.1

juankvillegas’s picture

Status: Needs review » Fixed
juankvillegas’s picture

Status: Fixed » Closed (fixed)