mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 08:54:23 -05:00
Update readme & comments
This commit is contained in:
@@ -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
|
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
|
#### Features
|
||||||
* Issues can be assigned to a Customer via drop down in the edit Issue form
|
* 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
|
## 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.
|
Note: After the inital synchronization, this plugin will recieve push notifications via Intuit's webhook service.
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
* Customer link option to allow for temporary sharing of an issue
|
* Customer link option to allow for temporary sharing of an issue
|
||||||
* Add Setting for Sandbox Mode
|
* Add Setting for Sandbox Mode
|
||||||
* Refactor Models prefixed with Qbo...
|
|
||||||
* Seperate Vehicles into a seperate plugin (I use redmine for my automotive shop management 😉)
|
* 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)
|
* Make HTML Pretty (It's ugly right now but it works)
|
||||||
* Intergrate Customer Search into Redmine Search
|
* Intergrate Customer Search into Redmine Search
|
||||||
|
|||||||
@@ -83,7 +83,6 @@ module IssuePatch
|
|||||||
|
|
||||||
# Create the new billable time entry and upload it
|
# Create the new billable time entry and upload it
|
||||||
time_entry.description = "#{tracker} ##{id}: #{subject} #{"(Partial @ #{done_ratio}%)" if not closed?}"
|
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.employee_id = assigned_to.employee_id
|
||||||
time_entry.customer_id = customer_id
|
time_entry.customer_id = customer_id
|
||||||
time_entry.billable_status = "Billable"
|
time_entry.billable_status = "Billable"
|
||||||
|
|||||||
Reference in New Issue
Block a user