摘要: odoo 官网提供了很多的第三方模块,这些是由odoo社区贡献,Odoo Community Association (OCA) Apps 模块的下载地址:https://www.odoo.com/apps/modules/browse?author=Odoo+Community+Associati 阅读全文
posted @ 2020-01-10 20:24 那时一个人 阅读(1587) 评论(0) 推荐(0)
摘要: 硬件通信, https://blog.csdn.net/log1100/article/details/54380325 阅读全文
posted @ 2020-01-10 15:17 那时一个人 阅读(492) 评论(0) 推荐(0)
摘要: ```python def func(self): ids = self._context.get('active_ids') ``` 阅读全文
posted @ 2020-01-10 14:26 那时一个人 阅读(712) 评论(0) 推荐(0)
摘要: ```bash git init # 先初始化 git remote add origin git@git.dev.tencent.com:xxx/xxx.git #添加远程仓库 git add * # 文件加入版本控制 git commit -m 'init' # 提交 git branch --set-upstream-to=origin/master #关键步骤,If you wish to 阅读全文
posted @ 2020-01-10 10:27 那时一个人 阅读(1923) 评论(0) 推荐(0)