mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
16 lines
633 B
Ruby
16 lines
633 B
Ruby
require 'active_support/concern'
|
|
|
|
# This concern is used to duplicate the associations distributors and distributor_ids
|
|
# across payment method and gateway
|
|
# this fixes the inheritance problem https://github.com/openfoodfoundation/openfoodnetwork/issues/2781
|
|
module Spree::PaymentMethodDistributors
|
|
extend ActiveSupport::Concern
|
|
|
|
def self.included(base)
|
|
base.class_eval do
|
|
attr_accessible :distributor_ids
|
|
has_and_belongs_to_many :distributors, join_table: 'distributors_payment_methods', class_name: 'Enterprise', foreign_key: 'payment_method_id', association_foreign_key: 'distributor_id'
|
|
end
|
|
end
|
|
end
|