Laravel以给定的货币获得最新价格

时间:2015-02-26 09:46:07

标签: php laravel laravel-5

我有三种模式:

  • 产品
  • 价格
  • 货币

一种产品可以有很多价格(价格根据日期而变化),价格可以是多种货币。

以下是示例模式:

产品

|-------------------------------|
| id   | name                   |
|-------------------------------|
| 1    | Hat                    |
| 2    | T-shirt                |
|-------------------------------|

价格

在这里,您可以看到单个产品(帽子)可以有多种价格,不同货币,每种价格在给定日期有效。

在撰写本文时(2015年2月26日),产品1(帽子)的当前价格应为12英镑或11美元。

|-------------------------------------------------------|
| id   | product_id | currency_id | price | valid_from  |
|-------------------------------------------------------|
| 1    |     1      |    1        | 10    | 2014-01-01  |
| 2    |     1      |    1        | 12    | 2015-01-01  |
| 3    |     1      |    1        | 14    | 2016-01-01  |
| 4    |     1      |    2        | 8     | 2014-01-01  |
| 5    |     1      |    2        | 10    | 2015-01-01  |
| 6    |     1      |    2        | 11    | 2015-02-01  |
|-------------------------------------------------------|

货币

|-------------------------------|
| id   | name                   |
|-------------------------------|
| 1    | GBP                    |
| 2    | USD                    |
|-------------------------------|

我正在尝试做什么

我希望能够以当前货币的当前价格获得所有产品。

我按如下方式设置了模型:

用户

public function prices()
{
    return $this->hasMany('App\Price', 'product_id', 'id');
}

价格

public function currency()
{
    return $this->belongsTo('App\Currency', 'currency_id', 'id');
}

public function product()
{
    return $this->belongsTo('App\Product', 'product_id', 'cat_id');
}

货币

没有定义关系。

我尝试过什么

$products = $this->product->with([
        'prices' => function($query) use ($currency) {

            $query->where('valid_from', '<=', date('Y-m-d'));
            $query->orderBy('valid_from', 'DESC');

                $currency = $this->currency->where('name', strtoupper($currency))->limit(1)->get();
                $query->where('currency_id', $currency[0]->id);


        },
        'prices.currency'
    ])->get();

这几乎可行,但是没有办法只返回一个价格(在$ query上添加限制不起作用)

1 个答案:

答案 0 :(得分:0)

您需要将关系更改为belongsToMany