当我在后端更改某些内容时,如何从我的模块调用函数?例如,我将一些客户属性从“否”更改为“是”,当我这样做时,我想调用来自app/code/local/mycompany/extends/controllers/AccountController.php
的函数,该函数会更改其他属性并向客户发送电子邮件。
这是BE中的字段:
$this->addColumn('b2b_client', array(
'header' => Mage::helper('customer')->__('B2B Client'),
'index' => 'b2b_client',
'type' => 'options',
'options' => array(
0 => 'No',
1 => 'Yes',
)
));
,我想要更新的字段是“关联到网站”。