我想知道,因为我在class CustomInstallCommand(install):
def run(self):
arguments = [
'npm',
'install',
'--prefix',
'test/functional',
'promisify'
]
subprocess.call(arguments, shell=True)
install.run(self)
setup(
cmdclass={'install': CustomInstallCommand},
如何将其翻译成新的Odoo v10 API?
应该是models.Model_memory
吗?
修改
这是使用models.TransientModel
的方法:
models.Model_memory
答案 0 :(得分:1)