1

我是新手,正在使用 Gallery3 中的一个模块,该模块已被废弃并希望添加一些功能。我已经搜索了所有内容,但无法找到解决方案。

我有以下表格。

Products {id, name, description, cost, discount_id, postage_id)
Discounts {id, name, threshold, amount, maxamount)
Postage_bands {id, name, flatrate, peritem)

我添加了折扣以根据消费金额为客户提供折扣。我基于现有的 Postage 表并复制了相关页面,以便它们使用新的 Discount 功能。我希望产品的管理页面列出与每个产品相关的折扣和邮资。

折扣的管理页面工作得很好。

我遇到的问题是产品与折扣和邮资之间的关系。我只能让其中一个工作。

有模型,每个模型都在自己的文件中。

class Product_Model extends ORM {
  var $rules = array(
    "name" => "length[1,32]",
    "description" => "length[0,255]");
    protected $belongs_to=array('discount');
    protected $belongs_to=array('postage_band');
}

class Postage_Band_Model extends ORM {
    var $rules = array(
    "name" => "length[1,32]");
    protected $has_many=array('products');
}

class Discount_Model extends ORM {
    var $rules = array(
    "name" => "length[1,32]");
    protected $has_many=array('products');
}

显示与折扣或邮资相关信息的视图页面中的代码是

<?= html::clean($product->discount->name) ?>
or
<?= html::clean($product->postage_band->name) ?>

我只能通过注释掉 Products_model 中的 Discount 或 Postage 行以及在视图页面中显示它的代码来使其中一个工作正常。

如何获得一个表中列的关系以处理两个单独表中的列。在这种情况下

  • Products.discount_id 到 Discounts.id,所以我可以指向 Discounts 表中的名称字段。
  • Products.postage_id 到 Postage_bands.id,所以我可以指向 Postage_bands 表中的名称字段。

或这些表中的任何其他字段,如果我需要的话。

提前致谢

保罗

4

1 回答 1

1

您要声明 $belongs_to 两次。尝试:

class Product_Model extends ORM {

    protected $belongs_to=array('discount', 'postage_band');
}

另外,我认为是 $_belongs_to

于 2012-10-29T00:30:27.893 回答