From 89e4132fc138ab8a0fd3ca4bf6d2dbebe81addc5 Mon Sep 17 00:00:00 2001 From: Ricky Barrette Date: Wed, 9 Mar 2022 21:51:06 -0500 Subject: [PATCH] Update readme & comments --- README.md | 5 ++--- lib/issue_patch.rb | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e5363a3..0e9898c 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The goal of this project is to allow Redmine to connect with Quickbooks Online t Note: Although the core functionality is complete, this project is still under development & the master branch may be unstable. Tags should be stable and are recommended -Use tags Version 1.0.0 & up for Redmine 4+ and Version 0.8.1 for Redine 3 & down +Use tags Version 1.0.0+ for Redmine 4+ and Version 0.8.1 for Redine 3 #### Features * Issues can be assigned to a Customer via drop down in the edit Issue form @@ -54,14 +54,13 @@ Use tags Version 1.0.0 & up for Redmine 4+ and Version 0.8.1 for Redine 3 & down ## Usage - To enable automatic `Time Activity` entries for an Issue , you need only to assign a `Customer` to an Issue via drop downs in the issue creation/update form. + To enable automatic Time Activity entries for an Issue , you need only to assign a Customer to an Issue via drop downs in the issue creation/update form. Note: After the inital synchronization, this plugin will recieve push notifications via Intuit's webhook service. ## TODO * Customer link option to allow for temporary sharing of an issue * Add Setting for Sandbox Mode - * Refactor Models prefixed with Qbo... * Seperate Vehicles into a seperate plugin (I use redmine for my automotive shop management 😉) * Make HTML Pretty (It's ugly right now but it works) * Intergrate Customer Search into Redmine Search diff --git a/lib/issue_patch.rb b/lib/issue_patch.rb index efa2ba4..8346b97 100644 --- a/lib/issue_patch.rb +++ b/lib/issue_patch.rb @@ -83,7 +83,6 @@ module IssuePatch # Create the new billable time entry and upload it time_entry.description = "#{tracker} ##{id}: #{subject} #{"(Partial @ #{done_ratio}%)" if not closed?}" - # TODO entry.user.employee.id time_entry.employee_id = assigned_to.employee_id time_entry.customer_id = customer_id time_entry.billable_status = "Billable"