Skip to content

Commit

Permalink
feat: Se cambia el órden de las columnas código y número #122
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeisson005 committed Sep 10, 2021
1 parent 0d80e6d commit de3fe61
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,22 @@ export class ListComprobanteComponent implements OnInit {
this.updateEntityFunction = this.comprobanteHelper.comprobanteUpdate;
this.createEntityFunction = this.comprobanteHelper.comprobanteRegister;
this.listColumns = {
Codigo: {
title: this.translate.instant('GLOBAL.codigo'),
// type: 'string;',
valuePrepareFunction: value => {
return value;
}
},
TipoComprobante: {
title: this.translate.instant('GLOBAL.tipo_comprobante'),
// type: 'string;',
valuePrepareFunction: value => {
return value.TipoDocumento;
}
},
Codigo: {
title: this.translate.instant('GLOBAL.codigo'),
Numero: {
title: this.translate.instant('GLOBAL.numero'),
// type: 'string;',
valuePrepareFunction: value => {
return value;
Expand All @@ -88,13 +95,6 @@ export class ListComprobanteComponent implements OnInit {
return value;
}
},
Numero: {
title: this.translate.instant('GLOBAL.numero'),
// type: 'string;',
valuePrepareFunction: value => {
return value;
}
},
FechaModificacion: {
title: this.translate.instant('GLOBAL.fecha_modificacion'),
valuePrepareFunction: (value) => {
Expand Down

0 comments on commit de3fe61

Please sign in to comment.