Ruby on Rails - 根据下拉选择填充数据库记录

时间:2015-02-06 15:45:37

标签: ruby-on-rails ruby

我对Rails相对较新,并创建了我的第一个应用程序,它是一个引用工具。

我目前正在使用3个表 - 产品,订单和Order_lines。产品保持我们产品的当前价格 - 包括成本。订单持有订单的外壳,最终将其绑定到客户表。 Order_lines包含所有order_lines - 并且视图是根据Order_lines和Orders之间的关系和匹配索引填充的。

目前,该视图还使用Products和Order_Lines之间的连接填充价格。但是,这不允许我存储历史数据(如果我在产品表中更改价格,那么之前创建的所有order_lines都会以新价格更新) - 所以我想要一个人从中选择产品下拉菜单 - 系统可以提取该产品的当前价格/成本 - 并将其添加到订单行。

产品表包含4列labed:prod_nrc_cost,prod_nrc_price,prod_mrc_cost,prod_mrc_price

Order_lines表现在有nrc_cost_line,nrc_price_line,mrc_cost_line,mrc_price_line。

当他们选择产品555时 - 我希望它在产品表中查找产品555的价格 - 并在Order_lines表的相应列中填写这4个价格,并保存它。如果我能够在页面上填充它(让人们能够根据需要调整定价),然后将其发送到控制器以保存,那将是很好的。

这有意义吗?

如果我要留下任何东西,请告诉我。

/orders/show.html.erb文件

<%= form_for(@order_line) do |f| %>

    <% if false %>
        <% if @order_line.errors.any? %>
            <div id="error_explanation">
                <h2><%= pluralize(@order_line.errors.count, "error") %> prohibited this order_line from being saved:</h2>
            <ul>
                <% @order_line.errors.full_messages.each do |msg| %>
                <li><%= msg %></li>
                <% end %>
            </ul>
            </div>
        <% end %>
    <% end %>


      <%= f.hidden_field :order_id, class: 'form-control' %>
        <%= f.hidden_field :order_num, :value=>@order.order_num, class: 'form-control' %>
         <%= f.hidden_field :visible, class: 'form-control', :value=>true, :checked=>true %>

      <% if @order_lines.present? %>
      <%= f.hidden_field :line_num, :value=>@order_lines.maximum("line_num")+1, class: 'form-control' %>
        <% else %>
        <%= f.hidden_field :line_num, :value=>1, class: 'form-control' %>
        <% end %>



    <div class="row">

    <div class="field col-md-2 form-group">
        <%= f.label :Product %><br>
        <%= f.collection_select(:product_id, Product.all, :id, :prod_name, {:prompt => 'Select Product'},  {:id => 'product_id'}) %>
      </div>
       <div class="field col-md-2 form-group">
        <%= f.label :quantity %><br>
        <%= f.number_field :quantity, class: 'form-control' %>
      </div>
           <div class="field col-md-2 form-group">
        <%= f.label :NRC %><br>
        <%= f.number_field :nrc_price_line, class: 'form-control' %>
      </div>
     <div class="field col-md-2 form-group">
        <%= f.label :MRC %><br>
        <%= f.number_field :mrc_price_line, class: 'form-control' %>
      </div>



       <div class="field col-md-2 form-group">
        <%= f.label :discount %><br>
        <%= f.number_field :discount, class: 'form-control' %>
      </div>
         <div class="field col-md-2 form-group">
        <%= f.label :notes %><br>
        <%= f.text_field :notes, class: 'form-control' %>
      </div>


      <div class="actions col-md-2" style="padding-top:25px;">
        <%= f.submit "Add New Line", class: 'btn btn-primary' %>
      </div>
    </div>
  </div>
<% end %>

orders_controller.rb文件

    class OrdersController < ApplicationController
  before_action :set_order, only: [:show, :edit, :update, :destroy]

def orders
  @order = Order.find(params[:id])
  @order_lines = @orders.order_lines
end


  # GET /orders
  # GET /orders.json
  def index
    @orders = Order.all
  end

  # GET /orders/1
  # GET /orders/1.json
  def show
    @order = Order.find(params[:id])
    @order_lines = @order.order_lines
    @order_line = OrderLine.new(:order_id=>params[:id])
    @product_categories = @order_lines.product

  end

def update_price
  @product = Product.find(params[:product_id])
  respond_to do |format|
    format.js
  end
end


  # GET /orders/new
  def new
    @order = Order.new
  end

  # GET /orders/1/edit
  def edit
  end

  # POST /orders
  # POST /orders.json   
  def create
    @order = Order.new(order_params)

    respond_to do |format|
      if @order.save
        format.html { redirect_to @order, notice: 'Order was successfully created.' }
        format.json { render action: 'show', status: :created, location: @order }
      else
        format.html { render action: 'new' }
        format.json { render json: @order.errors, status: :unprocessable_entity }
      end
    end


  end

  # PATCH/PUT /orders/1
  # PATCH/PUT /orders/1.json
  def update
    respond_to do |format|
      if @order.update(order_params)
        format.html { redirect_to @order, notice: 'Order was successfully updated.' }
        format.json { head :no_content }
      else
        format.html { render action: 'edit' }
        format.json { render json: @order.errors, status: :unprocessable_entity }
      end
    end
  end

  # DELETE /orders/1
  # DELETE /orders/1.json
  def destroy
    @order.destroy
    respond_to do |format|
      format.html { redirect_to orders_url }
      format.json { head :no_content }
    end
  end

  private
    # Use callbacks to share common setup or constraints between actions.
    def set_order
      @order = Order.find(params[:id])
    end

    # Never trust parameters from the scary internet, only allow the white list through.
    def order_params
      params.require(:order).permit(:emp_id, :cust_id, :order_num)
    end
end

order.rb模型

class Order < ActiveRecord::Base
    has_many :order_lines
    has_many :product_categories, through: :order_lines
    has_many :products, through: :order_lines
end

1 个答案:

答案 0 :(得分:1)

首先,使用product_id

将数据属性添加到产品选择器

您可以获取下拉列表的更改事件的价格信息: 在一些Coffeescrript文件中:

$('.your_selector').change ->
  product_id = $(this).data('product_id')
  $.ajax(
  type: 'POST'
  url: "/product_price_finder"
  product_id: product_id
  success: ( data, status, xhr ) ->
  )

的routes.rb

post "/product_price_finder/:product_id" => "products#update_price"

products_controller.rb

def update_price
  @product = Product.find(params[product_id:])
  respond_to do |format|
    format.js
  end
end

在views / products / update_price.js

var product = $("#product_<%= @product.id %>")
// update the price with Javascript