Magento 为每位客户提供独特的 TaxVat 属性
.嗨,
我正在努力使每个客户的税金属性都独一无二。 (特别是对于我从后端创建的用户)。即没有重复项。
就像电子邮件属性一样,如果该电子邮件已被使用,用户会收到使用其他电子邮件的通知。
我尝试从 eav_attribute 将“is_unique”更改为“1”,但什么也没发生..
你能帮我如何实现这个目标吗?
谢谢
.Hi,
I'm trying to make the attribute taxvat unique for every customer. (especially for users that i create from the backend). i.e no duplicates.
Just like the email attribute, if the email is already used, user gets notified to use another email.
I tried from the eav_attribute to change "is_unique" to "1" but nothing happened..
Can you please help me how to achieve this..?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
好的,我找到了解决方案..
查找文件 /app/code/core/Mage/Customer/Model/Form.php (不要忘记覆盖..)
在“public function validateData(array $data)”中
添加代码
foreach ($this->getAttributes() as $attribute)
ok, i found the solution..
Find file /app/code/core/Mage/Customer/Model/Form.php (Don't forget to override instead..)
in "public function validateData(array $data)"
add the code inside the
foreach ($this->getAttributes() as $attribute)
我修改了 Karpa 写的内容以使其更好
I've modified what Karpa wrote to make it better
我寻找这个解决方案有一段时间了。但我注意到您引用的 form.php 文件是 magento 的 1.5 版本。在 1.6 版本中,文件有所不同...在 1.6 版本中将该代码放在哪里?谢谢。
我找到了文件。它位于 /app/code/core/Mage/Eav/Model/form.php 中。
但我把代码放在这里并不起作用......我一直在尝试解决方案。
I was looking for this solution for some time. But I noticed that the form.php file that you reference is the 1.5 version of magento. In version 1.6 the file is different ... Where to put this code in version 1.6? Thank you.
I found the file. It is in /app/code/core/Mage/Eav/Model/form.php.
But I put the code and did not work here ... I keep trying a solution.
您可以创建一个事件:
并在您的观察者中:
You can create an event :
And in your observer :