jorgjanke / SampleApp-TimeTracking_Invoicing-Java

Time Tracking & Invoicing Sample App

Home Page:http://developer.intuit.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Time Tracking and Invoicing Java Sample App

Welcome to the Intuit Developer's Time Tracking and Invoicing Java Sample App.

This sample app is meant to provide working examples of how to integrate your app with the Intuit Small Business ecosystem. Specifically, this sample application demonstrates the following:

  • Implementing OAuth to connect an application to a customer's QuickBooks Online company.
  • Syncing employee, customer, and service item data from the app's local database to the QuickBooks Online company.
  • Using the QuickBooks Online SDK to create TimeActivity and Invoice objects in the QuickBooks Online company.

Please note that while these examples work, features not called out above are not intended to be taken and used in production business applications. In other words, this is not a seed project to be taken cart blanche and deployed to your production environment.

For example, certain concerns are not addressed at all in our samples (e.g. security, privacy, scalability). In our sample apps, we strive to strike a balance between clarity, maintainability, and performance where we can. However, clarity is ultimately the most important quality in a sample app.

Therefore there are certain instances where we might forgo a more complicated implementation (e.g. caching a frequently used value, robust error handling, more generic domain model structure) in favor of code that is easier to read. In that light, we welcome any feedback that makes our samples apps easier to learn from.

Table of Contents

Requirements

In order to successfully run this sample app you need a few things:

  1. Java 1.7
  2. A developer.intuit.com account
  3. An app on developer.intuit.com and the associated app token, consumer key, and consumer secret.
  4. QuickBooks Java SDK (already included in the libs folder)

First Use Instructions

  1. Clone the GitHub repo to your computer
  2. Fill in your oauth.json file values (app token, consumer key, consumer secret) by copying over from the keys section for your app.

Running the code

Once the sample app code is on your computer, you can do the following steps to run the app:

  1. cd to the project directory
  2. Run the command:./gradlew bootRun (Mac OS) or gradlew.bat bootRun (Windows)
  3. Wait until the terminal output displays the READY message.

App Ready 4. Open your browser and go to `http://localhost:9001/app/index.html`

If you happen to be behind an http proxy you will need to create a file called gradle.properties in the root of the project and follow instructions on this page for configuring gradle to use a proxy.

High Level Workflow

  1. Connect to a QuickBooks Online company.

    Connect to Quickbooks

  2. Setup—sync the following from the local database to the QuickBooks Online company.
    • employees—so time can be recorded against a specific service,
    • customers—so time can be recorded as billable to a specific customer,
    • items—the list of billable services.

    Sync Entities

  3. Create and push approved time activity objects to QuickBooks Online company for payroll and billing purposes.

    Sync Entities

  4. Create and push invoice objects to QuickBooks Online company for billing purposes.

    Sync Entities

Importing into IntelliJ IDEA & Eclipse

To edit the code you will need to open it in an IDE. Currently we support both IntelliJ IDEA and Eclipse.

IntelliJ IDEA

  • The project is maintained with IntelliJ IDEA and as such an .ipr file is checked into the GitHub repo.

Eclipse

Project Structure

How To Guides

The following How-To guides related to implementation tasks necessary to produce a production-ready Intuit Partner Platform app (e.g. OAuth, OpenId, etc) are available:

Testing the code

The two types of tests in the project (and how to run them) are listed below.

Java JUnit tests

  1. ./gradlew test

Javascript Karma tests

To run the Javascript Karma tests you must have NodeJs v0.10.28 or later (http://nodejs.org/) installed and have npm on the path.

  1. cd public
  2. npm test

Reset the App

This app uses a file-based HSQL database that is stored in the database folder in the root of the project. Deleting this folder will delete all data persisted in the database. The next time you start your app a clean database will be created with no data.

Watch & Learn

IMAGE ALT TEXT HERE

More Information

More detailed information for this sample app can be found here http://developer.intuit.com/v2/sampleapps/details/timetracking_details.

About

Time Tracking & Invoicing Sample App

http://developer.intuit.com


Languages

Language:Java 46.6%Language:JavaScript 46.6%Language:HTML 6.6%Language:CSS 0.2%