Cola de impresion
This commit is contained in:
parent
bbc2302388
commit
06b1eeb1ee
|
|
@ -87,7 +87,7 @@ public class ColaImpresion extends QueryRule {
|
||||||
colaImpresionObj.setEstadoimpresion(tmp[1].toString());
|
colaImpresionObj.setEstadoimpresion(tmp[1].toString());
|
||||||
colaImpresionObj.setEstadoimpresioncode(tmp[2].toString());
|
colaImpresionObj.setEstadoimpresioncode(tmp[2].toString());
|
||||||
colaImpresionObj.setPk(tmp[3].toString());
|
colaImpresionObj.setPk(tmp[3].toString());
|
||||||
colaImpresionObj.setFechaimpresion(tmp[4] == null ? null : new Timestamp(((Date) tmp[4]).getTime()));
|
colaImpresionObj.setFechaimpresion(tmp[4] == null ? null : (Timestamp) tmp[4]);
|
||||||
colaImpresionObj.setFecharegistro(tmp[5] == null ? null : (Date) tmp[5]);
|
colaImpresionObj.setFecharegistro(tmp[5] == null ? null : (Date) tmp[5]);
|
||||||
if (tmp[6] != null) {
|
if (tmp[6] != null) {
|
||||||
colaImpresionObj.setCodigotarjeta(tmp[6].toString());
|
colaImpresionObj.setCodigotarjeta(tmp[6].toString());
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ public class ConsultaImpresionProceso extends QueryRule {
|
||||||
colaImpresionObj.setEstadoimpresion(tmp[1].toString());
|
colaImpresionObj.setEstadoimpresion(tmp[1].toString());
|
||||||
colaImpresionObj.setEstadoimpresioncode(tmp[2].toString());
|
colaImpresionObj.setEstadoimpresioncode(tmp[2].toString());
|
||||||
colaImpresionObj.setPk(tmp[3].toString());
|
colaImpresionObj.setPk(tmp[3].toString());
|
||||||
colaImpresionObj.setFechaimpresion(tmp[4] == null ? null : new Timestamp(((Date) tmp[4]).getTime()));
|
colaImpresionObj.setFechaimpresion(tmp[4] == null ? null : (Timestamp) tmp[4]);
|
||||||
colaImpresionObj.setFecharegistro(tmp[5] == null ? null : (Date) tmp[5]);
|
colaImpresionObj.setFecharegistro(tmp[5] == null ? null : (Date) tmp[5]);
|
||||||
if (tmp[6] != null) {
|
if (tmp[6] != null) {
|
||||||
colaImpresionObj.setCodigotarjeta(tmp[6].toString());
|
colaImpresionObj.setCodigotarjeta(tmp[6].toString());
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue