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.
在 Prestashop 中,有人知道是否可以在订单完成时触发自定义命令?
我需要调用的命令是同一服务器上的 python 脚本。
你必须了解prestashop 钩子。
您创建一个模块来注册并使用适当的钩子(与订单相关的东西)。
在您使用的钩子代码shell_exec('your_python_script.py')中。
shell_exec('your_python_script.py')