我正在使用嵌套属性与错误作斗争并尝试同时修复警察错误。所以这是漫步。可以使用可能影响作业价格的嵌套属性与表单一起提交优惠券代码。仅在优惠券代码有效时才会出现这种情况。在这种情况下,优惠券代码已经分配,因此触发了第一个if coupon_code && coupon.nil?
。当表单返回时,flash消息正常工作,但简单的表单不显示值。我可以调整简单形式以获得带有实例变量的值,但我开始在我的逻辑中闻到一些东西。此外,Assignment Branch Condition
的气味开始让我担心。我可以继续前进,但用户希望看到代码。我也愿意。
警告错误:
app/controllers/payments_controller.rb:9:3: C: Assignment Branch Condition size for update is too high. [17.97/15]
控制器:
class PaymentsController < ApplicationController
rescue_from ActiveRecord::RecordNotFound, with: :route_not_found_error
Numeric.include CoreExtensions::Numeric::Percentage
def update
@job = Job.find(params[:job_id])
coupon_code = params[:job][:coupon_attributes][:code]
coupon = validate_coupon(coupon_code)
if coupon_code && coupon.nil?
@coupon_code = coupon_code
flash.now[:error] = t('flash_messages.coupons.id.not_found')
render 'payments/new', layout: 'nested/job/payment'
else
update_job(@job, coupon)
update_coupon(coupon, @job) if coupon
redirect_to @job.vanity_url
end
end
def new
@job = Job.find(params[:job_id])
return if reroute?(@job)
render 'payments/new', layout: 'nested/job/payment'
end
private
def update_job(job, coupon)
job.start_at = DateTime.now
job.end_at = AppConfig.product['settings']['job_active_for_day_num'].days.from_now
job.paid_at = DateTime.now
job.price = price_job(coupon)
# job.save
end
def validate_coupon(coupon_code)
return nil unless coupon_code.present?
coupon = Coupon.active.find_by_code(coupon_code)
return nil unless coupon.present?
coupon
end
def price_job(coupon)
price = AppConfig.product['settings']['job_base_price']
return price unless coupon
price = coupon.percent_discount.percent_of(price)
price
end
def update_coupon(coupon, job)
coupon.job_id = job.id
coupon.executed_at = DateTime.now
coupon.save
end
end
查看:
ruby:
content_for :body_id_class, 'PaymentNew'
content_for :js_instance, 'viewPaymentNew'
content_for :browser_title, 'Payment'
job_base_price = AppConfig.product['settings']['job_base_price']
coupon_code = @coupon_code ||= ''
= simple_form_for(@job, url: job_payment_path, html: { id: 'payment-processor-form' }) do |j|
div[class='row']
div[class='col-md-12']
div[class='panel panel-default']
div[class='panel-heading']
h3[class='panel-title']
|Total Cost
div[class='panel-body']
h2[class='job-cost' data-initial = "#{job_base_price}"]
= number_to_currency(job_base_price)
div[class='panel-heading']
h3[class='panel-title']
|Have a coupon?
div[class='panel-body']
div[class='row-inline']
div[class='row-block row-block-one']
= j.simple_fields_for :coupon_attributes, @job.coupon do |c|
= c.input_field :code, maxlength: 50, id: 'coupon-code', class: 'form-control', data: { 'initial' => 0 }, value: coupon_code
div[class='row-block']
button[type='button' class='btn btn-primary' id='coupon-verify' ]
|Verify
p[class='help-hint']
= t('simple_form.hints.coupon.code')
div[class='row']
div[class='col-md-12']
= j.button :button, type: 'button', class: 'btn-primary text-uppercase', id: 'purchase-job' do
= job_posting_button_step_label
更新
答案 0 :(得分:1)
在这个胖老的控制器中,你有很多代码气味。 它们中的大多数似乎是symtoms,在模型层上都不是很好,并且你没有很好地建模域。
你可能想要考虑这样的事情:
class Job < ActiveRecord::Base
has_many :payments
end
class Payment < ActiveRecord::Base
belongs_to :job
belongs_to :coupon
end
class Coupon < ActiveRecord::Base
validates_uniqueness_of :code
end
这将让我们的主席专注于CRUD的单一资源,而不是试图放牧一堆猫。
因此,让我们看一下强制优惠券的业务逻辑。
class Payment < ActiveRecord::Base
belongs_to :job
belongs_to :coupon
validate :coupon_must_be_active
attr_writer :coupon_code
def coupon_code=(code)
coupon = Coupon.find_by(code: code)
@coupon_code = code
end
private
def coupon_must_be_active
if coupon
errors[:coupon] << "must be active." unless coupon.active?
elsif @coupon_code.present?
errors[:coupon_code] << "is not valid."
end
end
end
自定义属性编写器从代码加载优惠券。验证设置了我们的业务逻辑规则。
在工作定价方面,我们确实应该这样做:
class Job < ActiveRecord::Base
after_initialize :set_price
def set_price
self.price ||= AppConfig.product['settings']['job_base_price']
end
end
class Payment < ActiveRecord::Base
after_initialize :set_price
validates_presence_of :job
def net_price
return job.price unless coupon
job.price * (coupon.percent_discount * 00.1)
end
# ...
end
然后我们可以这样写我们的控制器:
class PaymentsController
before_action :set_job
# GET /jobs/:job_id/payments/new
def new
@payment = @job.payments.new
end
# POST /jobs/:job_id/payments
def create
@payment = @job.payments.create(payment_params)
end
# PATCH /jobs/:job_id/payments/:id
def update
@payment = @job.payments.find(params[:id])
end
private
def set_job
@job = Job.find(params[:job_id])
end
def payment_params
params.require(:payment)
.permit(:coupon_code)
end
end
然后我们可以简单地设置表格:
= simple_form_for([@job, @payment]) do |f|
= f.input :coupon_code
= f.submit
请注意,除非您打算实施the honor system,否则您不想从用户那里获取价格 - 您应该通过设置关联回调来从模型中获取价格。