Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用数据流配置文件导入客户,并希望在我的 csv 文件中设置客户的出生日期和税号找到正确的解决方案..
$customer = $this->getCustomerModel(); $customer->setData('dob',date('m-d-Y')); $customer->setData('taxvat','test');
任何人之前都这样做过,请帮助我...
这应该工作
但有一件事是通过“$this->getCustomerModel();”
你可以得到 oly 模型,也许你必须通过加载函数加载客户,然后试试这个。