データ形式のさまざまな順列を使用して、Chartkick の複数の折れ線グラフをレンダリングしようとしました。私はどこにも行きません。ここでデータを返すために使用しているメソッドの現在の反復を貼り付けますが、午前中ずっとこのバリエーションを試したことを知っています。
def trailing_seven_day_profit(id)
user = User.find id
jobs = Job.select("id")
.where("billed != 0.0")
.where("start_date >= ?", Date.today - 1.week)
.where(user_id: id).to_a
mon_sell = tue_sell = wed_sell = thu_sell = fri_sell = sat_sell = sun_sell = 0
mon_cost = tue_cost = wed_cost = thu_cost = fri_cost = sat_cost = sun_cost = 0
products = Product.where("job_id IN (?)", jobs)
products.each do |p|
if p.created_at.strftime("%a") == 'Mon'
mon_sell += (p.price * p.quantity).to_f + (p.tax * (p.price * p.quantity)).to_f
mon_cost += (p.quantity * p.cost).to_f
elsif p.created_at.strftime("%a") == 'Tue'
tue_sell += (p.price * p.quantity).to_f + (p.tax * (p.price * p.quantity)).to_f
tue_cost += (p.quantity * p.cost).to_f
elsif p.created_at.strftime("%a") == 'Wed'
wed_sell += (p.price * p.quantity).to_f + (p.tax * (p.price * p.quantity)).to_f
wed_cost += (p.quantity * p.cost).to_f
elsif p.created_at.strftime("%a") == 'Thu'
thu_sell += (p.price * p.quantity).to_f + (p.tax * (p.price * p.quantity)).to_f
thu_cost += (p.quantity * p.cost).to_f
elsif p.created_at.strftime("%a") == 'Fri'
fri_sell += (p.price * p.quantity).to_f + (p.tax * (p.price * p.quantity)).to_f
fri_cost += (p.quantity * p.cost).to_f
elsif p.created_at.strftime("%a") == 'Sat'
sat_sell += (p.price * p.quantity).to_f + (p.tax * (p.price * p.quantity)).to_f
sat_cost += (p.quantity * p.cost).to_f
elsif p.created_at.strftime("%a") == 'Sun'
sun_sell += (p.price * p.quantity).to_f + (p.tax * (p.price * p.quantity)).to_f
sun_cost += (p.quantity * p.cost).to_f
end
end
@data = [
['Name', 'Day', 'Sell', 'Cost'],
[user.name, 'Mon', mon_sell.round(2), mon_cost.round(2)],
[user.name, 'Tue', tue_sell.round(2), tue_cost.round(2)],
[user.name, 'Wed', wed_sell.round(2), wed_cost.round(2)],
[user.name, 'Thu', thu_sell.round(2), thu_cost.round(2)],
[user.name, 'Fri', fri_sell.round(2), fri_cost.round(2)],
[user.name, 'Sat', sat_sell.round(2), sat_cost.round(2)],
[user.name, 'Sun', sun_sell.round(2), sun_cost.round(2)]
]
@data
end
私のデータベースに関するいくつかの説明 - 仕事には多くの製品があります。商品レコードは、ジョブに追加されたときのアイテムのコスト、販売価格 (さまざま)、税金、数量、ジョブとの関係、アイテムの説明などを取得する在庫、およびいくつかのタイムスタンプを保持します。
したがって、3 つの製品を持つ Job #1 の場合、情報を表示するには Job.find(1).products.each が必要になります。
または、ここで取っているアプローチである Product.find("job_id in (?)", [array_of_job_ids]) 。
過去のある時点でこのレポートが機能していましたが、Google チャートを使用したすべての手動であり、コードはひどいものでした。そこで私は Chartkick を見つけました。私が行っていたものと比較して、ビューがいかにシンプルであるかが気に入っています。
今、レンダリングするものが何もありません。
ビューは次のように単純にする必要があります。
<% @users.each do |u| %>
<div class="widget-content">
<%= line_chart name: u.name, data: ReportMaker.new.trailing_seven_day_profit(u.id) %>
</div>
<% end %>
しかし、それは何もレンダリングしません。
as_json として試してみましたが、ハッシュとして試してみました。現在は配列形式ですが、データは表示されず、凡例も表示されません。
したがって、明らかに、何かが間違っています。しかし、「chartkick multi series format」のようなものをグーグルで検索すると、本当に役に立たない結果がたくさん得られます.Chartkickページのドキュメント(申し訳ありません)は最悪です.
彼は言います:
<%= line_chart [
{name: "Series A", data: series_a},
{name: "Series B", data: series_b}
] %>
それで、wtf series_a は次のように見えるはずですか? ジェイソン?ハッシュ?ARオブジェクト? 配列?
すべての例が示すように、「ジョブ数」や「created_at による製品のグループ化」などの単純なことは行っていません。
コレクションを反復処理し、値を取り出して結合し、データ セットをレンダリングする必要があります。
また、製品の未乾燥性.以下の各ブロックは私の心を傷つけます. それを乾かす方法についての指針を喜んで受け入れます:)