Skip to content

Commit

Permalink
Close #1037 Add Quantity to Customer and Add Query or Create Variant …
Browse files Browse the repository at this point in the history
…in Subscription
  • Loading branch information
Regene27 committed Feb 22, 2024
1 parent 1c85479 commit 4017c3f
Show file tree
Hide file tree
Showing 16 changed files with 372 additions and 18 deletions.
38 changes: 38 additions & 0 deletions app/controllers/spree/billing/subscriptions_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@ module Billing
class SubscriptionsController < Spree::Billing::BaseController
before_action :load_customer
before_action :load_subscription, if: -> { member_action? }
before_action :load_product, only: %i[create]

def variant_form
load_product
@variant = @product.variants.build

render partial: 'variant_form'
end

def create
find_or_create_variant

@subscription = @variant.subscriptions.new(subscription_params.merge(variant_id: @variant.id))

if @subscription.save
flash[:success] = flash_message_for(@subscription, :successfully_created)
else
flash[:error] = flash_message_for(@subscription, :not_created)
end
redirect_to billing_customer_subscriptions_url(@customer)
end

protected

Expand All @@ -13,6 +34,11 @@ def collection
@collection = @search.result.page(page).per(per_page)
end

def load_product
product_id = params[:product_id] || params.dig(:variant, :product_id)
@product = Spree::Product.find(product_id)
end

def load_customer
customer
end
Expand All @@ -21,6 +47,10 @@ def load_subscription
@subscription = @object
end

def find_or_create_variant
@variant = SpreeCmCommissioner::VariantChecker.new(@product, variant_params, current_vendor).find_or_create_variant
end

def customer
@customer ||= SpreeCmCommissioner::Customer.find(params[:customer_id])
end
Expand All @@ -39,6 +69,14 @@ def object_name
def collection_url(options = {})
billing_customer_subscriptions_url(options)
end

def variant_params
params.require(:variant).permit(:product_id, :sku, :price, option_value_ids: [])
end

def subscription_params
params.require(:spree_cm_commissioner_subscription).permit(:start_date, :customer_id, :status)
end
end
end
end
3 changes: 3 additions & 0 deletions app/models/spree_cm_commissioner/subscription.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ class Subscription < SpreeCmCommissioner::Base

belongs_to :variant, class_name: 'Spree::Variant'
belongs_to :customer, class_name: 'SpreeCmCommissioner::Customer'
belongs_to :product, class_name: 'Spree::Product'

has_many :orders, -> { order(:created_at) }, class_name: 'Spree::Order', dependent: :nullify
has_many :line_items, through: :orders, class_name: 'Spree::LineItem'
Expand All @@ -23,6 +24,8 @@ class Subscription < SpreeCmCommissioner::Base
after_create :create_order
after_commit :update_customer_active_subscriptions_count

accepts_nested_attributes_for :variant

def create_order
SpreeCmCommissioner::SubscribedOrderCreator.call(subscription: self)
end
Expand Down
2 changes: 2 additions & 0 deletions app/models/spree_cm_commissioner/variant_decorator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ def self.prepended(base)
base.validate :validate_option_types

base.scope :subscribable, -> { active.joins(:product).where(product: { subscribable: true, status: :active }) }

base.has_many :subscriptions, class_name: 'SpreeCmCommissioner::Subscription', dependent: :destroy
end

def selected_option_value_ids
Expand Down
31 changes: 31 additions & 0 deletions app/services/spree_cm_commissioner/sku_generator.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
module SpreeCmCommissioner
class SkuGenerator
def initialize(product, variant_params)
@product = product
@variant_params = variant_params
end

def generate_sku
load_product

return if @variant_params.nil? || @variant_params.blank?

option_values = @variant_params[:option_value_ids].map { |id| Spree::OptionValue.find(id) }
sku_parts = [@product.name]

option_values.each do |option_value|
sku_parts << "#{option_value.option_type.name}-#{option_value.name}"
end

sku_parts << "price-#{@variant_params[:price]}"

sku_parts.join('-').gsub(' ', '-').downcase
end

private

def load_product
@product ||= Spree::Product.find(@variant_params[:product_id])
end
end
end
32 changes: 32 additions & 0 deletions app/services/spree_cm_commissioner/variant_checker.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
module SpreeCmCommissioner
class VariantChecker
attr_reader :variant

def initialize(product, variant_params, current_vendor)
@product = product
@variant_params = variant_params
@current_vendor = current_vendor
end

def find_or_create_variant
find_variant_by_sku || create_variant
end

private

def find_variant_by_sku
@variant = @product.variants.find_by(sku: variant_sku)
end

def create_variant
variant_creator = SpreeCmCommissioner::VariantCreator.new(@product, @variant_params, @current_vendor)
variant_creator.create_variant
@variant = variant_creator.variant
end

def variant_sku
sku_generator = SpreeCmCommissioner::SkuGenerator.new(@product, @variant_params)
sku_generator.generate_sku
end
end
end
35 changes: 35 additions & 0 deletions app/services/spree_cm_commissioner/variant_creator.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
module SpreeCmCommissioner
class VariantCreator
attr_reader :variant

def initialize(product, variant_params, current_vendor)
@product = product
@variant_params = variant_params
@current_vendor = current_vendor
end

def create_variant
@variant = @product.variants.build
generate_sku
set_variant_attributes
save_variant
end

private

def generate_sku
sku_generator = SpreeCmCommissioner::SkuGenerator.new(@product, @variant_params)
@variant.sku = sku_generator.generate_sku
end

def set_variant_attributes
@variant.option_value_ids = @variant_params[:option_value_ids]
@variant.price = @variant_params[:price]
@variant.stock_items.new(stock_location_id: @current_vendor.id, count_on_hand: 1)
end

def save_variant
@variant.save
end
end
end
5 changes: 5 additions & 0 deletions app/views/spree/billing/customers/_form.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,10 @@
<%= f.collection_select(:taxon_id, Spree::Taxon.where(depth: 1), :id, :name, { include_blank: Spree.t('match_choices.none') }, { class: 'select2', required: true })%>
<%= f.error_message_on :taxon_id %>
<% end %>
<%= f.field_container :quantity do %>
<%= f.label :quantity, I18n.t('activerecord.attributes.spree/order.quantity') %>
<%= f.number_field :quantity, class: 'form-control', required: true %>
<%= f.error_message_on :quantity %>
<% end %>
</div>
</div>
16 changes: 15 additions & 1 deletion app/views/spree/billing/shared/_invoice.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@
@email = @vendor.notification_email
@note = @vendor.note

@quantity = @customer.quantity
@product = @invoice.order.line_items.first.variant.sku
@price = @invoice.order.line_items.first.display_price
@total_price = @price.to_s.gsub(/[^\d.]/, '').to_d * @quantity
@total = @invoice.order.display_total
@from_date = @invoice.order.line_items.first.to_date.strftime("%B %Y")
@date = @invoice.date.strftime('%Y-%m-%d')
Expand Down Expand Up @@ -92,8 +94,10 @@
<tr>
<th scope="col">ល.រ​​​ / N</th>
<th scope="col">បរិយាយ / Description</th>
<th scope="col">ចំនួន / Quantity</th>
<th scope="col">ប្រចាំខែ / Month</th>
<th scope="col">ទឹកប្រាក់​ / Amount</th>
<th scope="col">ទឹកប្រាក់​សរុប / Total Amount</th>
</tr>
</thead>
<tbody class="list-unstyled">
Expand All @@ -104,6 +108,11 @@
<li> <%= @product %></li>
</ul>
</td>
<td>
<ul class="list-unstyled">
<li> <%= @quantity %></li>
</ul>
</td>
<td>
<ul class="list-unstyled">
<li> <%= @from_date %></li>
Expand All @@ -116,6 +125,11 @@
</li>
</ul>
</td>
<td>
<ul class="list-unstyled">
<li> <%= @total_price %></li>
</ul>
</td>
</tr>
<% @order.adjustments.each do |adjustment| %>
<tr>
Expand All @@ -142,7 +156,7 @@
<div class="d-flex justify-content-between align-items-center bg-primary pt-3 px-2 font-weight-bold text-white">
<p>ទឹកប្រាក់​ត្រូវទូទាត់​​ / Total Amount due</p>
<p>
<%= @total %>
<%= @total_price %>
</p>
</div>

Expand Down
104 changes: 88 additions & 16 deletions app/views/spree/billing/subscriptions/_form.html.erb
Original file line number Diff line number Diff line change
@@ -1,22 +1,94 @@
<div data-hook="admin_user_form_fields" class="row">
<div class="col-12 col-md-6">
<div class="col-12">
<%= f.hidden_field :customer_id, value: @customer.id %>
<%= f.field_container :variant_id do %>
<%= f.label :variant, Spree.t(:variant) %>
<%= f.collection_select(:variant_id, @customer.subscribable_variants, :id, :display_variant, { include_blank: false }, { class: 'select2' ,disabled: @subscription.persisted?}) %>
<%= f.error_message_on :product_id %>
<% end %>
<%= f.field_container :start_date do %>
<%= f.label :start_date, Spree.t(:start_date) %>
<%= f.date_field :start_date, class: 'form-control', disabled: @subscription.persisted? %>
<%= f.error_message_on :start_date %>
<% end %>
<% if @subscription.id.present? %>
<%= f.field_container :status do %>
<%= f.label :status, Spree.t(:status) %>
<%= f.select :status, SpreeCmCommissioner::Subscription.statuses.keys, {}, class: 'select2' %>
<%= f.error_message_on :status %>

<div class="col-6">
<%= f.field_container :product do %>
<%= f.label :product, Spree:t(:product) %>
<%= f.select :product, options_for_select(Spree::Product.joins(:taxons)
.where(spree_taxons: { id: @customer.taxon_id })
.map{ |product| [product.name, product.id] }),
if @subscription.persisted?
{ placeholder: @subscription.variant.product.name }
else
{ include_blank: true }
end,
{ class: "select2-clear", disabled: @subscription.persisted? } %>
<%= f.error_message_on :product %>
<% end %>
</div>

<% if @subscription.id.present? %>
<div class="col-6">
<%= f.field_container :variant_id do %>
<%= f.label :variant_id, Spree:t(:variant) %>
<%= f.select :variant_id, options_for_select(Spree::Variant.joins(:subscriptions).where(cm_subscriptions: { customer_id: @customer.id })
.map{ |variant| [variant.sku, variant.id] }),
if @subscription.persisted?
{ placeholder: @subscription.variant.sku }
else
{ include_blank: true }
end,
{ class: "select2-clear", disabled: @subscription.persisted? } %>
<%= f.error_message_on :product %>
<% end %>
</div>
<% else %>
<div id="option-types-form-container" class="col-12">
</div>
<% end %>

<div class="col-6">
<%= f.field_container :start_date do %>
<%= f.label :start_date, Spree.t(:start_date) %>
<%= f.date_field :start_date, class: 'form-control', disabled: @subscription.persisted? %>
<%= f.error_message_on :start_date %>
<% end %>
</div>

<div class="col-6">
<% if @subscription.id.present? %>
<%= f.field_container :status do %>
<%= f.label :status, Spree.t(:status) %>
<%= f.select :status, SpreeCmCommissioner::Subscription.statuses.keys, {}, class: 'select2' %>
<%= f.error_message_on :status %>
<% end %>
<% end %>
</div>
</div>
</div>

<script>
$(document).ready(function () {
const productSelector = "#spree_cm_commissioner_subscription_product";
const variantIdSelector = "#spree_cm_commissioner_subscription_variant_id";
const optionTypesFormDiv = "#option-types-form-container";

$(productSelector).on("change", function () {
removeOptionTypesForm();
appendOptionTypesForm();
});

function appendOptionTypesForm() {
var productId = $(productSelector).val();

$.ajax({
url: '../subscriptions/variant_form',
type: 'GET',
data: { product_id: productId },
dataType: 'html',
success: function (response) {
console.log('Success fetching form:', response);
$(optionTypesFormDiv).append(response);
},
error: function (error) {
console.error('Error fetching form:', error);
}
});
}

function removeOptionTypesForm() {
$(optionTypesFormDiv).empty();
}
});
</script>
Loading

0 comments on commit 4017c3f

Please sign in to comment.