Files
openfoodnetwork/app/mailers/producer_mailer.rb

103 lines
3.0 KiB
Ruby

# frozen_string_literal: true
class ProducerMailer < ApplicationMailer
include I18nHelper
def order_cycle_report(producer, order_cycle)
@producer = producer
@order_cycle = order_cycle
load_data
I18n.with_locale(owner_locale) do
return unless orders?(order_cycle, producer)
mail(
to: @producer.contact.email,
subject:,
reply_to: @coordinator.contact.email,
cc: @coordinator.contact.email
)
end
end
private
def owner_locale
valid_locale(@producer.owner)
end
def load_data
@coordinator = @order_cycle.coordinator
line_items = line_items_from(@order_cycle, @producer)
@grouped_line_items = line_items.group_by(&:product_and_full_name)
@distributors_pickup_times = distributors_pickup_times_for(line_items)
@receival_instructions = @order_cycle.receival_instructions_for(@producer)
@total = total_from_line_items(line_items)
@tax_total = tax_total_from_line_items(line_items)
@customer_line_items = customer_data(line_items)
end
def subject
order_cycle_subject = I18n.t('producer_mailer.order_cycle.subject', producer: @producer.name)
"[#{Spree::Config.site_name}] #{order_cycle_subject}"
end
def orders?(order_cycle, producer)
line_items_from(order_cycle, producer).any?
end
def distributors_pickup_times_for(line_items)
@order_cycle.distributors.
joins(:distributed_orders).
where(spree_orders: { id: line_items.map(&:order_id).uniq }).
map do |distributor|
[distributor.name, @order_cycle.pickup_time_for(distributor)]
end
end
def line_items_from(order_cycle, producer)
@line_items_from ||= Spree::LineItem.
includes(variant: :product).
joins(variant: :product).
from_order_cycle(order_cycle).
merge(Spree::Variant.with_deleted.where(supplier: producer)).
merge(Spree::Order.by_state(["complete", "resumed"])).
sorted_by_name_and_unit_value
end
def total_from_line_items(line_items)
Spree::Money.new line_items.to_a.sum(&:total)
end
def tax_total_from_line_items(line_items)
Spree::Money.new line_items.to_a.sum(&:included_tax)
end
def customer_data(line_items)
@display_customer_names = @coordinator.show_customer_names_to_suppliers?
@display_business_name = false
line_items.map do |line_item|
order = line_item.order
customer_code = order.customer&.code
@display_business_name = true if customer_code.present?
{
sku: line_item.variant.sku,
supplier_name: line_item.variant.supplier.name,
product_and_full_name: line_item.product_and_full_name,
quantity: line_item.quantity,
first_name: order.billing_address.first_name,
last_name: order.billing_address.last_name,
phone: order.billing_address.phone,
email: order.customer&.email,
business_name: customer_code,
order_number: order.number
}
end.sort_by { |line_item| [line_item[:last_name].downcase, line_item[:first_name].downcase] }
end
end