index.js 676 Bytes
module.exports = function(comprobante) {

  return {
    identificaxComprobante: require('./identificaxComprobante')(comprobante),// 010
    identificaxMensaje: require('./identificaxMensaje')(comprobante),// 012
    comprobantesReferencia: require('./comprobantesReferencia')(comprobante), // 020
    identificaxEmisor: require('./identificaxEmisor')(comprobante), // 030
    informaxRepresentanteEmisor: require('./informaxRepresentanteEmisor')(comprobante), // 035
    identificaxReceptorFactura: require('./identificaxReceptorFactura')(comprobante), // 040
    identificaxSucursalReceptorFactura: require('./identificaxSucursalReceptorFactura')(comprobante), // 045
  }
}