Coder Social home page Coder Social logo

Comments (1)

Seahawk240 avatar Seahawk240 commented on June 30, 2024

Yeah very nice addition! I just noticed though that when i use it and add a new sql custom_field to issues I get an error because the issue object does not have an issue_id => only an id. To fix this i did this:

if object.try(:issue_id).nil?
sql = sql.gsub('%issue_id%', 'null')
else
sql = sql.gsub('%issue_id%', object.issue_id.to_s)
end

Complete File:
module CustomFieldSql
module CustomFields
module Formats

  class SqlSearch < Redmine::FieldFormat::StringFormat
    add 'sql_search'
    field_attributes :sql, :form_params, :search_by_click, :db_config, :strict_selection, :strict_error_message
    self.form_partial = 'custom_fields/formats/sql'
  end

  class Sql < Redmine::FieldFormat::List
    add 'sql'
    field_attributes :sql
    self.form_partial = 'custom_fields/formats/sql'

    def possible_values_options(custom_field, object = nil)
      sql = custom_field.sql
      if sql
        if object
          return [] unless (object.class.to_s + 'CustomField')==custom_field.class.to_s
          if object.id.nil?
            sql = sql.gsub('%id%', 'null')
          else
            sql = sql.gsub('%id%', object.id.to_s)
          end
          if object.try(:issue_id).nil?
              sql = sql.gsub('%issue_id%', 'null')
          else
              sql = sql.gsub('%issue_id%', object.issue_id.to_s)
          end
        end
        result = ActiveRecord::Base.connection.select_all(sql)
        result.rows
      else
        []
      end
    end

    def group_statement(custom_field)
      order_statement(custom_field)
    end

    def validate_custom_field(custom_field)
      errors = []
      #errors << [:language, :blank] if custom_field.language.blank?
      errors
    end
  end

end

end
end

from custom_field_sql.

Related Issues (17)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.