foodsoft/app/models/shared_supplier.rb
Philipp Rothmann fb2b4d8a8a chore: rubocop
chore: fix api test conventions

chore: rubocop -A spec/

chore: more rubocop -A

fix failing test

rubocop fixes

removes helper methods that are in my opinion dead code

more rubocop fixes

rubocop -a --auto-gen-config
2023-06-09 17:35:05 +02:00

36 lines
1.2 KiB
Ruby

class SharedSupplier < ApplicationRecord
# connect to database from sharedLists-Application
SharedSupplier.establish_connection(FoodsoftConfig[:shared_lists])
# set correct table_name in external DB
self.table_name = 'suppliers'
has_many :suppliers, -> { undeleted }
has_many :shared_articles, foreign_key: :supplier_id
def find_article_by_number(order_number)
# NOTE: that `shared_articles` uses number instead order_number
cached_articles.detect { |a| a.number == order_number }
end
def cached_articles
@cached_articles ||= shared_articles.all
end
# These set of attributes are used to autofill attributes of new supplier,
# when created by import from shared supplier feature.
def autofill_attributes
whitelist = %w[name address phone fax email url delivery_days note]
attributes.select { |k, _v| whitelist.include?(k) }
end
# return list of synchronisation methods available for this supplier
def shared_sync_methods
methods = []
if shared_articles.count < FoodsoftConfig[:shared_supplier_article_sync_limit]
methods += %w[all_available
all_unavailable]
end
methods += %w[import]
methods
end
end