如何在drupal视图中获取节点引用表cck字段
我有 2 个内容类型,
第一个内容类型名称为 content_type_sales
,第二个内容类型名称为 content_type_product
。
- 我的第一个内容类型(
销售
)存储客户的所有信息,例如(姓名
、地址
、购买日期
)和这些都是CCK
字段。 - 第二个内容类型(
产品
)包含与销售相关的产品信息,例如(型号
、品牌
、系列
)并且销售可能有多种产品。因此,我在产品内容类型中创建了一个节点引用,它引用content_type_sale
(nid
)。
在我看来,我已经应用了过滤器nodetype = Product
。
为了显示每个销售记录,我创建了一个视图,其中显示所有产品记录和节点引用字段。如果我能够获取产品中销售的节点引用,那么如何在视图字段以及公开的过滤器中获取 content_type_sales
的 cck
字段。
还提供了一张显示我想要的结果的图像。
任何帮助或建议将不胜感激。
I've 2 content type
First content type name is content_type_sales
and second content type name is content_type_product
.
- My first content type (
sales
) store all information of customer like (name
,address
,purchase date
) and these all areCCK
fields. - Second content type (
product
) contain information of product related to sales like (model no
,brand
,series
) and sale may have multiple product. So I created a node reference in product content type which refere thecontent_type_sale
(nid
).
In my view i've applied the filter nodetype = product
.
To display each sale record I've created a view which show all product record and node reference field. If i'm able to get the node reference of sale in product so how can I get cck
field of content_type_sales
in view field as well as in exposed filter.
Also providing a image that show the desired result that i want.
Any help or suggestion would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
回答自己的问题
幸运的是,我找到了这些链接
http://drupalmodules.com/ module/reverse-node-reference 模块通过节点引用字段的反向关系增强视图。
您可能还需要 http://drupal.org/project/noderelationships
Answering own question
fortunately i found these links
http://drupalmodules.com/module/reverse-node-reference module enhances views with reverse relationships for node reference fields.
you may also need http://drupal.org/project/noderelationships