Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.41 KB

README.md

File metadata and controls

32 lines (22 loc) · 1.41 KB

Quickbooks Online Integration

Overview

Quickbooks is an accounting software package developed and marketed by Intuit. This implementation uses the Quickbooks v3 API through the quickbooks-ruby gem.

Please visit the wiki for further info on how to connect this integration.

This is a fully hosted and supported integration for use with the Wombat product. With this integration you can perform the following functions:

  • Send orders to Quickbooks as Sales Receipts
  • Send products to Quickbooks as Items
  • Send returns to Quickbooks as Credit Memo
  • Poll for inventory stock levels in Quickbooks

Wombat allows you to connect to your own custom integrations. Feel free to modify the source code and host your own version of the integration or better yet, help to make the official integration better by submitting a pull request!

Wombat Logo

This integration is 100% open source an licensed under the terms of the New BSD License.

21 Character limit on Order numbers.

If your having problems with it, this transform should help:

//nomustache
payload.order.number = payload.order.number.substring(0, 21);