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
Comment #1
juankvillegas commentedThank you, I'll check it.
Comment #2
javiereduardo commentedIn 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>';Comment #3
juankvillegas commentedFixed in version 6.x-1.1
Comment #4
juankvillegas commentedComment #5
juankvillegas commented