需要帮助制作和查询成本矩阵表?

发布于 2024-09-12 02:28:18 字数 297 浏览 4 评论 0原文

我用 Drupal 6 为我的客户建立了一个网站。现在他想查询从一个城镇到另一个城镇的服务费用。我了解 CCK 和视图的基础知识。我需要两个城镇选择框,并显示两个城镇之间的成本以及让客户输入城镇之间成本的方法。在 Drupal 中最简单的方法是什么?我是一个java人,没有PHP经验。

编辑:tablefield 看起来很有希望。我需要一种方法来过滤它的视图模块。如果我成功了,我会在这里写下如何做到这一点。

I had built a website for my client with Drupal 6 . Now he wants to query cost of his service from one town to another town. I know basics of CCK and Views. I will need two select box for towns and show cost of between two towns and a way to let customer enter cost between towns. What is the easiest way of doing it in Drupal ? I am a java guy no PHP experience.

Edit:tablefield look promising. I need a way filter it view module. If I will succeed will write how to do it here.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

他是夢罘是命 2024-09-19 02:28:18

作为黑客型解决方案,您可以这样做:

  1. 创建一个新的内容(节点)类型,例如“运输路线”。
  2. 在其中定义 CCK 字段“从城镇”、“到城镇”、“成本”。
  3. 创建一个新视图,它将显示“成本”字段。
  4. 对于上面的视图,在“发件人”和“收件人”字段上启用两个过滤器,并使用户可以访问这些过滤器。

我知道,这听起来确实很尴尬,更好的解决方案可能是编写一个简单的自定义模块,但如果您更愿意远离 PHP - 这是一种方法。

As a hack-type solution, you could do this:

  1. Create a new content (node) type, say, "Transport Routes".
  2. In it, define CCK fields From town, To town, Cost.
  3. Create a new View, which would display the Cost field.
  4. For the above view, enable two filters on the From and To fields, and make these filters accessible to the user.

It does sound very awkward, I know, and a better solution is probably to write a simple custom module, yet if you prefer to stay away from PHP - this is one way to do it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文