Compare commits

..

2 Commits

Author SHA1 Message Date
f73973a4e1 2026.3.14 2026-03-21 10:27:33 -04:00
7cd388dbd4 Fixed webhook 2026-03-21 10:26:57 -04:00
10 changed files with 393 additions and 382 deletions

View File

@@ -48,7 +48,7 @@ class WebhookProcessJob < ActiveJob::Base
Redmine::Hook.call_hook( :qbo_additional_entities ).each do |context| Redmine::Hook.call_hook( :qbo_additional_entities ).each do |context|
next unless context next unless context
Array(context).each do |entity| Array(context).each do |entity|
jobs.push(entity) entities.push(entity)
log "Added additional QBO entity #{entity}" log "Added additional QBO entity #{entity}"
end end
end end

10
init.rb
View File

@@ -14,7 +14,7 @@ Redmine::Plugin.register :redmine_qbo do
name 'Redmine QBO plugin' name 'Redmine QBO plugin'
author 'Rick Barrette' author 'Rick Barrette'
description 'A pluging for Redmine to connect with QuickBooks Online to create Time Activity Entries for billable hours logged when an Issue is closed' description 'A pluging for Redmine to connect with QuickBooks Online to create Time Activity Entries for billable hours logged when an Issue is closed'
version '2026.3.13' version '2026.3.14'
url 'https://github.com/rickbarrette/redmine_qbo' url 'https://github.com/rickbarrette/redmine_qbo'
author_url 'https://barrettefabrication.com' author_url 'https://barrettefabrication.com'
settings default: {empty: true}, partial: 'qbo/settings' settings default: {empty: true}, partial: 'qbo/settings'
@@ -43,4 +43,10 @@ Redmine::Plugin.register :redmine_qbo do
end end
RedmineQbo.setup # Dynamically load all Hooks & Patches recursively
base_dir = File.join(File.dirname(__FILE__), 'lib')
# '**' looks inside subdirectories, '*.rb' matches Ruby files
Dir.glob(File.join(base_dir, '**', '*.rb')).sort.each do |file|
require file
end

View File

@@ -1,33 +0,0 @@
#The MIT License (MIT)
#
#Copyright (c) 2026 rick barrette
#
#Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
#
#The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
#
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
module RedmineQbo
def self.setup
# === Models ===
Issue.prepend RedmineQbo::Patches::IssuePatch
User.prepend RedmineQbo::Patches::UserPatch
# === Queries ===
IssueQuery.prepend RedmineQbo::Patches::QueryPatch
TimeEntryQuery.prepend RedmineQbo::Patches::TimeEntryQueryPatch
# === Controllers ===
RedmineQbo::Patches::IssuesControllerPatch.apply
RedmineQbo::Patches::AttachmentsControllerPatch.apply
# === Helpers / Exports ===
Redmine::Export::PDF::IssuesPdfHelper.prepend RedmineQbo::Patches::PdfPatch
# === Hooks ===
RedmineQbo::Hooks::IssuesHookListener
RedmineQbo::Hooks::UsersShowHookListener
RedmineQbo::Hooks::ViewHookListener
end
end

View File

@@ -8,32 +8,41 @@
# #
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
require_dependency 'attachments_controller'
module RedmineQbo module RedmineQbo
module Patches module Patches
module AttachmentsControllerPatch module AttachmentsControllerPatch
module Helper
# Check if login is globally required to access the application def self.included(base)
base.class_eval do
# check if login is globally required to access the application
def check_if_login_required def check_if_login_required
# Return true if the user is already logged in # no check needed if user is already logged in
return true if User.current.logged? return true if User.current.logged?
# Pull up the attachment and verify if we have a valid token for the issue # Pull up the attachmet, & verify if we have a valid token for the Issue
attachment = Attachment.find_by(id: params[:id]) attachment = Attachment.find(params[:id])
return require_login if attachment.nil? token = CustomerToken.where("token = ? and expires_at > ?", session[:token], Time.now)
token = token.first
unless token.nil?
return true if token.issue_id == attachment.container_id
end
token = CustomerToken.where("token = ? AND expires_at > ?", session[:token], Time.current).first
return true if token&.issue_id == attachment.container_id
# Default to requiring login if all else fails
require_login if Setting.login_required? require_login if Setting.login_required?
end end
end end
def self.apply
AttachmentsController.class_eval do
helper Helper
end
end end
end end
# Add module to AttachmentsController
AttachmentsController.send(:include, AttachmentsControllerPatch)
end end
end end

View File

@@ -8,39 +8,60 @@
# #
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
require_dependency 'issue'
module RedmineQbo module RedmineQbo
module Patches module Patches
module IssuePatch module IssuePatch
extend ActiveSupport::Concern
prepended do def self.included(base)
base.extend(ClassMethods)
base.send(:include, InstanceMethods)
base.class_eval do
belongs_to :customer, class_name: 'Customer', foreign_key: :customer_id, optional: true belongs_to :customer, class_name: 'Customer', foreign_key: :customer_id, optional: true
belongs_to :customer_token, primary_key: :id, optional: true belongs_to :customer_token, primary_key: :id
belongs_to :estimate, primary_key: :id, optional: true belongs_to :estimate, primary_key: :id
has_and_belongs_to_many :invoices has_and_belongs_to_many :invoices
before_save :titlize_subject before_save :titlize_subject
after_commit :enqueue_billing, on: :update after_commit :enqueue_billing, on: :update
end end
# Enqueue a background job to bill the time spent on this issue to QuickBooks if the issue is closed and assigned to an employee end
module ClassMethods
end
module InstanceMethods
# Enqueue a background job to bill the time spent on this issue to the associated customer in Quickbooks, if the issue is closed and has a customer assigned.
def enqueue_billing def enqueue_billing
log "Checking if issue needs billing for ##{id}" log "Checking if issue needs to be billed for issue ##{id}"
return unless closed? && customer.present? && assigned_to&.employee_id.present? return unless closed?
return unless customer.present?
return unless assigned_to&.employee_id.present?
log "Enqueuing billing for issue ##{id}" log "Enqueuing billing for issue ##{id}"
BillIssueTimeJob.perform_later(id) BillIssueTimeJob.perform_later(id)
end end
# Titlize the subject for consistent formatting in billing descriptions # Titlize the subject of the issue before saving to ensure consistent formatting for billing descriptions in Quickbooks
def titlize_subject def titlize_subject
log "Titlizing subject for issue ##{id}" log "Titlizing subject for issue ##{id}"
self.subject = subject.split(/\s+/).map do |word| self.subject = subject.split(/\s+/).map do |word|
(word =~ /[A-Z]/ && word =~ /[0-9]/) ? word : word.capitalize if word =~ /[A-Z]/ && word =~ /[0-9]/
word
else
word.capitalize
end
end.join(' ') end.join(' ')
end end
end
# Generate a shareable token linking this issue to the customer for QuickBooks # This method is used to generate a shareable token for the customer associated with this issue, which can be used to link the issue to the corresponding customer in Quickbooks for billing and tracking purposes.
def share_token def share_token
CustomerToken.get_token(self) CustomerToken.get_token(self)
end end
@@ -51,5 +72,7 @@ module RedmineQbo
Rails.logger.info "[IssuePatch] #{msg}" Rails.logger.info "[IssuePatch] #{msg}"
end end
end end
Issue.send(:include, IssuePatch)
end end
end end

View File

@@ -7,31 +7,30 @@
#The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. #The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
# #
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
require_dependency 'issues_controller'
module RedmineQbo module RedmineQbo
module Patches module Patches
module IssuesControllerPatch module IssuesControllerPatch
module Helper module Helper
# Extend the watcher links to include billing and share options
def watcher_link(issue, user) def watcher_link(issue, user)
links = '' link = ''
link = link_to(I18n.t(:label_bill_time), bill_path( issue.id ), method: :get, class: 'icon icon-email-add') if user.admin?
# Admin users can bill time link << link_to(I18n.t(:label_share), share_path( issue.id ), method: :get, target: :_blank, class: 'icon icon-shared') if user.logged?
links << link_to(I18n.t(:label_bill_time), bill_path(issue.id), method: :get, class: 'icon icon-email-add') if user.admin? link.html_safe + super
# Logged-in users can share the issue
links << link_to(I18n.t(:label_share), share_path(issue.id), method: :get, target: :_blank, class: 'icon icon-shared') if user.logged?
# Append to the original watcher links
(links.html_safe + super).html_safe
end end
end end
def self.apply def self.included(base)
IssuesController.class_eval do base.class_eval do
helper Helper helper Helper
end end
end end
end end
# Add module to IssuessController
IssuesController.send(:include, IssuesControllerPatch)
end end
end end

View File

@@ -8,105 +8,64 @@
# #
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
require_dependency 'redmine/export/pdf'
require_dependency 'redmine/export/pdf/issues_pdf_helper'
module RedmineQbo module RedmineQbo
module Patches module Patches
module PdfPatch module PdfPatch
extend ActiveSupport::Concern
def issue_to_pdf(issue, assoc={}) def self.included(base)
pdf = setup_pdf(issue) base.send(:include, InstanceMethods)
base.class_eval do
render_header(pdf, issue) alias_method :issue_to_pdf, :issue_to_pdf_with_patch
render_ancestors_and_subject(pdf, issue) alias_method :issue_to_pdf_with_patch, :issue_to_pdf
end
left, right = build_issue_attributes(issue)
render_attributes_grid(pdf, left, right)
render_description(pdf, issue)
render_subtasks(pdf, issue)
render_relations(pdf, issue)
render_changesets(pdf, issue)
render_journals(pdf, issue, assoc)
render_attachments(pdf, issue)
merge_estimate_if_present(pdf, issue)
end end
private module InstanceMethods
def log(msg) def issue_to_pdf_with_patch(issue, assoc={})
Rails.logger.info "[PdfPatch] #{msg}"
end
def setup_pdf(issue)
pdf = ::Redmine::Export::PDF::ITCPDF.new(current_language) pdf = ::Redmine::Export::PDF::ITCPDF.new(current_language)
pdf.set_title("#{issue.project} - #{issue.tracker} ##{issue.id}") pdf.set_title("#{issue.project} - #{issue.tracker} ##{issue.id}")
pdf.alias_nb_pages pdf.alias_nb_pages
pdf.footer_date = format_date(Date.today) pdf.footer_date = format_date(Date.today)
pdf.add_page pdf.add_page
pdf pdf.SetFontStyle('B',11)
end buf = "#{issue.project} - #{issue.tracker} ##{issue.id}"
pdf.RDMMultiCell(190, 5, buf)
def render_header(pdf, issue) pdf.SetFontStyle('',8)
pdf.SetFontStyle('B', 11)
pdf.RDMMultiCell(190, 5, "#{issue.project} - #{issue.tracker} ##{issue.id}")
pdf.SetFontStyle('', 8)
end
def render_ancestors_and_subject(pdf, issue)
base_x = pdf.get_x base_x = pdf.get_x
i = 1 i = 1
# Render ancestors
issue.ancestors.visible.each do |ancestor| issue.ancestors.visible.each do |ancestor|
pdf.set_x(base_x + i) pdf.set_x(base_x + i)
buf = "#{ancestor.tracker} # #{ancestor.id} (#{ancestor.status}): #{ancestor.subject}" buf = "#{ancestor.tracker} # #{ancestor.id} (#{ancestor.status.to_s}): #{ancestor.subject}"
pdf.RDMMultiCell(190 - i, 5, buf) pdf.RDMMultiCell(190 - i, 5, buf)
i += 1 if i < 35 i += 1 if i < 35
end end
pdf.SetFontStyle('B',11)
# Render current issue subject and meta
pdf.SetFontStyle('B', 11)
pdf.RDMMultiCell(190 - i, 5, issue.subject.to_s) pdf.RDMMultiCell(190 - i, 5, issue.subject.to_s)
pdf.SetFontStyle('', 8) pdf.SetFontStyle('',8)
pdf.RDMMultiCell(190, 5, "#{format_time(issue.created_on)} - #{issue.author}") pdf.RDMMultiCell(190, 5, "#{format_time(issue.created_on)} - #{issue.author}")
pdf.ln pdf.ln
end
def build_issue_attributes(issue) customer = issue.customer.name if issue.customer
left = build_left_attributes(issue)
right = build_right_attributes(issue)
# Pad arrays to equal length
rows = [left.size, right.size].max
left.fill(nil, left.size...rows)
right.fill(nil, right.size...rows)
# Distribute custom fields evenly
half = (issue.visible_custom_field_values.size / 2.0).ceil
issue.visible_custom_field_values.each_with_index do |custom_value, i|
target_column = i < half ? left : right
target_column << [custom_value.custom_field.name, show_value(custom_value, false)]
end
[left, right]
end
def build_left_attributes(issue)
left = [] left = []
left << [l(:field_status), issue.status] left << [l(:field_status), issue.status]
left << [l(:field_priority), issue.priority] left << [l(:field_priority), issue.priority]
left << [l(:field_customer), issue.customer&.name] left << [l(:field_customer), customer]
left << [l(:field_assigned_to), issue.assigned_to] unless issue.disabled_core_fields.include?(:assigned_to_id) left << [l(:field_assigned_to), issue.assigned_to] unless issue.disabled_core_fields.include?(:assigned_to_id)
#left << [l(:field_category), issue.category] unless issue.disabled_core_fields.include?(:category_id)
#left << [l(:field_fixed_version), issue.fixed_version] unless issue.disabled_core_fields.include?(:fixed_version_id)
log "Calling :pdf_left hook" log "Calling :pdf_left hook"
left_hook_output = Redmine::Hook.call_hook(:pdf_left, { issue: issue }) left_hook_output = Redmine::Hook.call_hook :pdf_left, { issue: issue }
Array(left_hook_output).compact.each { |l| left.concat(l) } unless left_hook_output.nil?
left_hook_output.each do |l|
left left.concat l unless l.nil?
end
end end
def build_right_attributes(issue)
right = [] right = []
right << [l(:field_start_date), format_date(issue.start_date)] unless issue.disabled_core_fields.include?(:start_date) right << [l(:field_start_date), format_date(issue.start_date)] unless issue.disabled_core_fields.include?(:start_date)
right << [l(:field_due_date), format_date(issue.due_date)] unless issue.disabled_core_fields.include?(:due_date) right << [l(:field_due_date), format_date(issue.due_date)] unless issue.disabled_core_fields.include?(:due_date)
@@ -115,200 +74,212 @@ module RedmineQbo
right << [l(:label_spent_time), l_hours(issue.total_spent_hours)] if User.current.allowed_to?(:view_time_entries, issue.project) right << [l(:label_spent_time), l_hours(issue.total_spent_hours)] if User.current.allowed_to?(:view_time_entries, issue.project)
log "Calling :pdf_right hook" log "Calling :pdf_right hook"
right_hook_output = Redmine::Hook.call_hook(:pdf_right, { issue: issue }) right_hook_output = Redmine::Hook.call_hook :pdf_right, { issue: issue }
Array(right_hook_output).compact.each { |r| right.concat(r) } unless right_hook_output.nil?
right_hook_output.each do |r|
right right.concat r unless r.nil?
end
end end
def render_attributes_grid(pdf, left, right) rows = left.size > right.size ? left.size : right.size
base_x = pdf.get_x while left.size < rows
borders = determine_borders(pdf.get_rtl) left << nil
rows = [left.size, right.size].max end
while right.size < rows
right << nil
end
half = (issue.visible_custom_field_values.size / 2.0).ceil
issue.visible_custom_field_values.each_with_index do |custom_value, i|
(i < half ? left : right) << [custom_value.custom_field.name, show_value(custom_value, false)]
end
if pdf.get_rtl
border_first_top = 'RT'
border_last_top = 'LT'
border_first = 'R'
border_last = 'L'
else
border_first_top = 'LT'
border_last_top = 'RT'
border_first = 'L'
border_last = 'R'
end
rows = left.size > right.size ? left.size : right.size
rows.times do |i| rows.times do |i|
item_left = left[i] heights = []
item_right = right[i] pdf.SetFontStyle('B',9)
item = left[i]
heights << pdf.get_string_height(35, item ? "#{item.first}:" : "")
item = right[i]
heights << pdf.get_string_height(35, item ? "#{item.first}:" : "")
pdf.SetFontStyle('',9)
item = left[i]
heights << pdf.get_string_height(60, item ? item.last.to_s : "")
item = right[i]
heights << pdf.get_string_height(60, item ? item.last.to_s : "")
height = heights.max
# Calculate dynamic row height item = left[i]
pdf.SetFontStyle('B', 9) pdf.SetFontStyle('B',9)
hl1 = pdf.get_string_height(35, item_left ? "#{item_left.first}:" : "") pdf.RDMMultiCell(35, height, item ? "#{item.first}:" : "", (i == 0 ? border_first_top : border_first), '', 0, 0)
hr1 = pdf.get_string_height(35, item_right ? "#{item_right.first}:" : "") pdf.SetFontStyle('',9)
pdf.RDMMultiCell(60, height, item ? item.last.to_s : "", (i == 0 ? border_last_top : border_last), '', 0, 0)
pdf.SetFontStyle('', 9) item = right[i]
hl2 = pdf.get_string_height(60, item_left ? item_left.last.to_s : "") pdf.SetFontStyle('B',9)
hr2 = pdf.get_string_height(60, item_right ? item_right.last.to_s : "") pdf.RDMMultiCell(35, height, item ? "#{item.first}:" : "", (i == 0 ? border_first_top : border_first), '', 0, 0)
pdf.SetFontStyle('',9)
height = [hl1, hr1, hl2, hr2].max pdf.RDMMultiCell(60, height, item ? item.last.to_s : "", (i == 0 ? border_last_top : border_last), '', 0, 2)
# Render cells
render_grid_cell(pdf, item_left, height, i == 0 ? borders[:first_top] : borders[:first], i == 0 ? borders[:last_top] : borders[:last], 0)
render_grid_cell(pdf, item_right, height, i == 0 ? borders[:first_top] : borders[:first], i == 0 ? borders[:last_top] : borders[:last], 2)
pdf.set_x(base_x) pdf.set_x(base_x)
end end
end
def determine_borders(is_rtl) pdf.SetFontStyle('B',9)
if is_rtl pdf.RDMCell(35+155, 5, l(:field_description), "LRT", 1)
{ first_top: 'RT', last_top: 'LT', first: 'R', last: 'L' } pdf.SetFontStyle('',9)
else
{ first_top: 'LT', last_top: 'RT', first: 'L', last: 'R' }
end
end
def render_grid_cell(pdf, item, height, border_label, border_val, ln_type)
pdf.SetFontStyle('B', 9)
pdf.RDMMultiCell(35, height, item ? "#{item.first}:" : "", border_label, '', 0, 0)
pdf.SetFontStyle('', 9)
pdf.RDMMultiCell(60, height, item ? item.last.to_s : "", border_val, '', 0, ln_type)
end
def render_description(pdf, issue)
pdf.SetFontStyle('B', 9)
pdf.RDMCell(190, 5, l(:field_description), "LRT", 1)
pdf.SetFontStyle('', 9)
# Set resize image scale
pdf.set_image_scale(1.6) pdf.set_image_scale(1.6)
text = textilizable(issue, :description, text = textilizable(issue, :description,
only_path: false, only_path: false,
edit_section_links: false, edit_section_links: false,
headings: false, headings: false,
inline_attachments: false) inline_attachments: false
pdf.RDMwriteFormattedCell(190, 5, '', '', text, issue.attachments, "LRB") )
end pdf.RDMwriteFormattedCell(35+155, 5, '', '', text, issue.attachments, "LRB")
def render_subtasks(pdf, issue) unless issue.leaf?
return if issue.leaf? truncate_length = (!is_cjk? ? 90 : 65)
pdf.SetFontStyle('B',9)
truncate_length = !is_cjk? ? 90 : 65 pdf.RDMCell(35+155,5, l(:label_subtask_plural) + ":", "LTR")
pdf.SetFontStyle('B', 9)
pdf.RDMCell(190, 5, "#{l(:label_subtask_plural)}:", "LTR")
pdf.ln pdf.ln
border_first = pdf.get_rtl ? 'R' : 'L'
border_last = pdf.get_rtl ? 'L' : 'R'
issue_list(issue.descendants.visible.sort_by(&:lft)) do |child, level| issue_list(issue.descendants.visible.sort_by(&:lft)) do |child, level|
buf = "#{child.tracker} # #{child.id}: #{child.subject}".truncate(truncate_length) buf = "#{child.tracker} # #{child.id}: #{child.subject}".
truncate(truncate_length)
level = 10 if level >= 10 level = 10 if level >= 10
pdf.SetFontStyle('',8)
pdf.SetFontStyle('', 8) pdf.RDMCell(35+135,5, (level >=1 ? " " * level : "") + buf, border_first)
pdf.RDMCell(170, 5, (level >= 1 ? " " * level : "") + buf, border_first) pdf.SetFontStyle('B',8)
pdf.SetFontStyle('B', 8) pdf.RDMCell(20,5, child.status.to_s, border_last)
pdf.RDMCell(20, 5, child.status.to_s, border_last)
pdf.ln pdf.ln
end end
end end
def render_relations(pdf, issue)
relations = issue.relations.select { |r| r.other_issue(issue).visible? } relations = issue.relations.select { |r| r.other_issue(issue).visible? }
return if relations.empty? unless relations.empty?
truncate_length = (!is_cjk? ? 80 : 60)
truncate_length = !is_cjk? ? 80 : 60 pdf.SetFontStyle('B',9)
pdf.SetFontStyle('B', 9) pdf.RDMCell(35+155,5, l(:label_related_issues) + ":", "LTR")
pdf.RDMCell(190, 5, "#{l(:label_related_issues)}:", "LTR")
pdf.ln pdf.ln
border_first = pdf.get_rtl ? 'R' : 'L'
border_last = pdf.get_rtl ? 'L' : 'R'
relations.each do |relation| relations.each do |relation|
other = relation.other_issue(issue) buf = relation.to_s(issue) {|other|
text = Setting.cross_project_issue_relations? ? "#{other.project} - " : "" text = ""
if Setting.cross_project_issue_relations?
text += "#{relation.other_issue(issue).project} - "
end
text += "#{other.tracker} ##{other.id}: #{other.subject}" text += "#{other.tracker} ##{other.id}: #{other.subject}"
text
}
buf = buf.truncate(truncate_length)
pdf.SetFontStyle('', 8) pdf.SetFontStyle('', 8)
pdf.RDMCell(130, 5, text.truncate(truncate_length), border_first) pdf.RDMCell(35+155-60, 5, buf, border_first)
pdf.SetFontStyle('B', 8) pdf.SetFontStyle('B',8)
pdf.RDMCell(20, 5, other.status.to_s, "") pdf.RDMCell(20,5, relation.other_issue(issue).status.to_s, "")
pdf.RDMCell(20, 5, format_date(other.start_date), "") pdf.RDMCell(20,5, format_date(relation.other_issue(issue).start_date), "")
pdf.RDMCell(20, 5, format_date(other.due_date), border_last) pdf.RDMCell(20,5, format_date(relation.other_issue(issue).due_date), border_last)
pdf.ln pdf.ln
end end
pdf.RDMCell(190, 5, "", "T")
pdf.ln
end end
pdf.RDMCell(190,5, "", "T")
def render_changesets(pdf, issue)
return unless issue.changesets.any? && User.current.allowed_to?(:view_changesets, issue.project)
pdf.SetFontStyle('B', 9)
pdf.RDMCell(190, 5, l(:label_associated_revisions), "B")
pdf.ln pdf.ln
issue.changesets.each do |changeset| if issue.changesets.any? &&
pdf.SetFontStyle('B', 8) User.current.allowed_to?(:view_changesets, issue.project)
csstr = "#{l(:label_revision)} #{changeset.format_identifier} - #{format_time(changeset.committed_on)} - #{changeset.author}" pdf.SetFontStyle('B',9)
pdf.RDMCell(190,5, l(:label_associated_revisions), "B")
pdf.ln
for changeset in issue.changesets
pdf.SetFontStyle('B',8)
csstr = "#{l(:label_revision)} #{changeset.format_identifier} - "
csstr += format_time(changeset.committed_on) + " - " + changeset.author.to_s
pdf.RDMCell(190, 5, csstr) pdf.RDMCell(190, 5, csstr)
pdf.ln pdf.ln
unless changeset.comments.blank? unless changeset.comments.blank?
pdf.SetFontStyle('', 8) pdf.SetFontStyle('',8)
pdf.RDMwriteHTMLCell(190, 5, '', '', changeset.comments.to_s, issue.attachments, "") pdf.RDMwriteHTMLCell(190,5,'','',
changeset.comments.to_s, issue.attachments, "")
end end
pdf.ln pdf.ln
end end
end end
def render_journals(pdf, issue, assoc) if assoc[:journals].present?
return unless assoc[:journals].present? pdf.SetFontStyle('B',9)
pdf.RDMCell(190,5, l(:label_history), "B")
pdf.SetFontStyle('B', 9)
pdf.RDMCell(190, 5, l(:label_history), "B")
pdf.ln pdf.ln
assoc[:journals].each do |journal| assoc[:journals].each do |journal|
pdf.SetFontStyle('B', 8) pdf.SetFontStyle('B',8)
title = "##{journal.indice} - #{format_time(journal.created_on)} - #{journal.user}" title = "##{journal.indice} - #{format_time(journal.created_on)} - #{journal.user}"
title << " (#{l(:field_private_notes)})" if journal.private_notes? title << " (#{l(:field_private_notes)})" if journal.private_notes?
pdf.RDMCell(190, 5, title) pdf.RDMCell(190,5, title)
pdf.ln pdf.ln
pdf.SetFontStyle('I',8)
pdf.SetFontStyle('I', 8)
details_to_strings(journal.visible_details, true).each do |string| details_to_strings(journal.visible_details, true).each do |string|
pdf.RDMMultiCell(190, 5, "- " + string) pdf.RDMMultiCell(190,5, "- " + string)
end end
if journal.notes? if journal.notes?
pdf.ln unless journal.details.empty? pdf.ln unless journal.details.empty?
pdf.SetFontStyle('', 8) pdf.SetFontStyle('',8)
text = textilizable(journal, :notes, only_path: false, edit_section_links: false, headings: false, inline_attachments: false) text = textilizable(journal, :notes,
pdf.RDMwriteFormattedCell(190, 5, '', '', text, issue.attachments, "") only_path: false,
edit_section_links: false,
headings: false,
inline_attachments: false
)
pdf.RDMwriteFormattedCell(190,5,'','', text, issue.attachments, "")
end end
pdf.ln pdf.ln
end end
end end
def render_attachments(pdf, issue) if issue.attachments.any?
return unless issue.attachments.any? pdf.SetFontStyle('B',9)
pdf.RDMCell(190,5, l(:label_attachment_plural), "B")
pdf.SetFontStyle('B', 9)
pdf.RDMCell(190, 5, l(:label_attachment_plural), "B")
pdf.ln pdf.ln
for attachment in issue.attachments
issue.attachments.each do |attachment| pdf.SetFontStyle('',8)
pdf.SetFontStyle('', 8) pdf.RDMCell(80,5, attachment.filename)
pdf.RDMCell(80, 5, attachment.filename) pdf.RDMCell(20,5, number_to_human_size(attachment.filesize),0,0,"R")
pdf.RDMCell(20, 5, number_to_human_size(attachment.filesize), 0, 0, "R") pdf.RDMCell(25,5, format_date(attachment.created_on),0,0,"R")
pdf.RDMCell(25, 5, format_date(attachment.created_on), 0, 0, "R") pdf.RDMCell(65,5, attachment.author.name,0,0,"R")
pdf.RDMCell(65, 5, attachment.author.name, 0, 0, "R")
pdf.ln pdf.ln
end end
end end
def merge_estimate_if_present(pdf, issue) # Check to see if there is an estimate attached, then combine them
if issue.estimate if issue.estimate
e_pdf, _ref = PdfService.new(entity: Estimate).fetch_pdf(doc_ids: [issue.estimate.id]) e_pdf, ref = PdfService.new(entity: Estimate).fetch_pdf(doc_ids: [issue.estimate.id])
combined = CombinePDF.parse(pdf.output, allow_optional_content: true) pdf = CombinePDF.parse(pdf.output, allow_optional_content: true)
combined << CombinePDF.parse(e_pdf) pdf << CombinePDF.parse(e_pdf)
combined.to_pdf return pdf.to_pdf
else
pdf.output
end end
return pdf.output
end end
end end
private
def log(msg)
Rails.logger.info "[PdfPatch] #{msg}"
end
end
Redmine::Export::PDF::IssuesPdfHelper.send(:include, PdfPatch)
end end
end end

View File

@@ -8,10 +8,11 @@
# #
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
require_dependency 'issue_query'
module RedmineQbo module RedmineQbo
module Patches module Patches
module QueryPatch module QueryPatch
extend ActiveSupport::Concern
def base_scope def base_scope
scope = super scope = super
@@ -58,6 +59,12 @@ module RedmineQbo
Issue.joins(:customer).sanitize_sql_for_conditions([sql, pattern]) Issue.joins(:customer).sanitize_sql_for_conditions([sql, pattern])
end end
end end
# Add module to Issue
IssueQuery.send(:prepend, QueryPatch)
end end
end end

View File

@@ -8,10 +8,11 @@
# #
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
require_dependency 'time_entry_query'
module RedmineQbo module RedmineQbo
module Patches module Patches
module TimeEntryQueryPatch module TimeEntryQueryPatch
extend ActiveSupport::Concern
# Add QBO options to columns # Add QBO options to columns
def available_columns def available_columns
@@ -27,6 +28,11 @@ module RedmineQbo
add_available_filter "billed", type: :boolean add_available_filter "billed", type: :boolean
super super
end end
end end
# Add module to TimeEntryQuery
TimeEntryQuery.send(:prepend, QueryPatch)
end end
end end

View File

@@ -8,14 +8,37 @@
# #
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
require_dependency 'user'
module RedmineQbo module RedmineQbo
module Patches module Patches
module UserPatch
extend ActiveSupport::Concern
prepended do # Patches Redmine's User dynamically.
# Adds a relationships
module UserPatch
def self.included(base) # :nodoc:
base.extend(ClassMethods)
base.send(:include, InstanceMethods)
# Same as typing in the class
base.class_eval do
belongs_to :employee, primary_key: :id belongs_to :employee, primary_key: :id
end end
end end
module ClassMethods
end
module InstanceMethods
end
end
# Add module to Issue
User.send(:include, UserPatch)
end end
end end