Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fm_adapter

Package Overview
Dependencies
Maintainers
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fm_adapter

  • 0.0.4
  • Rubygems
  • Socket score

Version published
Maintainers
3
Created
Source

FmTimbradoCfdi

Build Status Code Climate Coverage Status

Implementa la conexión con el servicio de timbrado cfdi con el PAC Facturación Moderna Guía de Desarrollo de FM.

No incluye ninguna funcionalidad de sellado.

Installation

Agrega esto al Gemfile de tu aplicación:

gem 'fm_timbrado_cfdi'

Y ejecuta:

$ bundle

o instala de forma independiente:

$ gem install fm_timbrado_cfdi

Uso

Para usar la gema es necesario realizar la configuración con los valores de conexión:

FmTimbradoCfdi.configurar do |config|
  config.user_id = 'user_id'
  config.user_pass = 'password'
  config.namespace = 'http://serviciondetimrado...'
  config.endpoint = 'http://serviciondetimrado...'
  config.fm_wsdl = 'http://serviciondetimrado...'
  config.log = 'path_to_log'
  config.ssl_verify_mode = true
end # configurar

Y realizar la petición de timbrado:

respuesta = FmTimbradoCfdi.timbra_cfdi_layout rfc, 'layout_file', false
# => Petición sin generación del CBB
respuesta = FmTimbradoCfdi.timbra_cfdi_layout rfc, 'layout_file', true
# => Petición con generación del CBB

Si cuentas con el XML sellado puedes hacer lo siguiente:

respuesta = FmTimbradoCfdi.timbra_cfdi_xml 'archivo_xml', false
# => Petición sin generación del CBB
respuesta = FmTimbradoCfdi.timbra_cfdi_xml 'archivo_xml', true
# => Petición con generación del CBB

Para un método más general de timbrado que se encuentre más acorde a la documentación de Facturación Moderna:

respuesta = FmTimbradoCfdi.timbrar rfc_emisor, 'archivo_xml_o_layout', 'generarCBB' => false, 'generarPDF' => true, 'generarTXT' => false
# => Generar la respuesta con formato PDF, pero sin formato CBB ni TXT

El archivo de layout y el XML son string.

Contribuciones

  1. 'Forkea' el repositorio
  2. Crea una rama con tu funcionalidad (git checkout -b my-new-feature)
  3. Envía tus cambios (git commit -am 'Add some feature')
  4. 'Pushea' a la rama (git push origin my-new-feature)
  5. Crea un 'Pull request'

Esta gema fue creada por LogicalBricks Solutions.

FAQs

Package last updated on 22 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc