如何定制 Magento Enterprise 客户群?

发布于 2024-10-21 17:35:40 字数 132 浏览 2 评论 0原文

我是否

1) 覆盖所有 Enterprise/CustomerSegment

然后插入我需要添加自己的条件和模型类以构建数据库查询的类

2) 1) 看起来很庞大,我如何将我的新条件类添加到本地文件夹中?

Do I

1) overide all Enterprise/CustomerSegment

then slot in the classes I need to add my own conditions and classes for models to build the DB queries

2) 1) seems bulky, how would I just add my new condition classes into a local folder?

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

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

发布评论

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

评论(1

旧竹 2024-10-28 17:35:40

解决方案是仅覆盖模型,并使用 Enterprise_CustomerSegment 模块保留块控制器。

更新 CustomerSegment 模块以添加常规订单报告需要这些文件:

CustomModule/CustomerSegment/etc/config.xml(包含所有模型)

CustomModule/CustomerSegment/Model/Condition/Combine/Abstract.php  

(可能不需要覆盖)

CustomModule/CustomerSegment/Model/Segment/Condition/Combine/Root.php

CustomModule/CustomerSegment/Model/Segment/Condition/Standingorder/Frequency.php

CustomModule/CustomerSegment/Model/Segment/Condition/Combine.php

CustomModule/CustomerSegment/Model/Segment/Condition/Standingorder.php

CustomModule/CustomerSegment/Model/Segment.php

(这可能不需要被覆盖)

The solution is to override only the models, and leave the block, controller using Enterprise_CustomerSegment module.

These files would be required to update the CustomerSegment module to add a standing order report:

CustomModule/CustomerSegment/etc/config.xml (with all the model 's)

CustomModule/CustomerSegment/Model/Condition/Combine/Abstract.php  

(this may not need to be overridden)

CustomModule/CustomerSegment/Model/Segment/Condition/Combine/Root.php

CustomModule/CustomerSegment/Model/Segment/Condition/Standingorder/Frequency.php

CustomModule/CustomerSegment/Model/Segment/Condition/Combine.php

CustomModule/CustomerSegment/Model/Segment/Condition/Standingorder.php

CustomModule/CustomerSegment/Model/Segment.php

(this may not need to be overridden)

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