gpt4 book ai didi

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

转载 作者:数据小太阳 更新时间:2023-10-29 08:08:17 26 4
gpt4 key购买 nike

我是 Rails 的新手,正在创建我的第一个应用程序,它是一个报价工具。

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

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

产品表包含 4 列标记: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 的价格 - 并将这 4 个价格填充到 Order_lines 表的相应列中,然后保存。如果我能够直接在页面上填充它(让人们能够根据需要调整定价),然后将其发送到 Controller 以保存,那就太好了。

这有意义吗?

如果我遗漏了什么,请告诉我。

/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

最佳答案

首先,使用 product_id 向您的产品选择器添加一个数据属性

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

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

路线.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

关于ruby-on-rails - Ruby on Rails - 根据下拉选择填充数据库记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28369457/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com