1 2 3 4
1 2 3 4 5 ··· 14 下一页
摘要: 3、git安装与常用命令 3.1.2基本配置 1.右键打开Git Bash2.设置用户信息git config --global user.name "itcast" git config --global user.email "hellpoitcast.cn" 查看配查信息git config 阅读全文
posted @ 2023-04-12 13:16 I我的博客I 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 如下: 阅读全文
posted @ 2022-04-26 21:18 I我的博客I 阅读(239) 评论(0) 推荐(0) 编辑
摘要: odoo中默认的是在tree视图中显示80条,但是我们是可以修改的,自定义显示多少以下示例自定义为200条一页代码如下: 这是修改原生的条数展示 <xpath expr="//tree" position="attributes"> <attribute name="limit">200</attr 阅读全文
posted @ 2022-04-24 13:34 I我的博客I 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 一、下载postgres和odoo镜像 首先到docker-hub注册账号:https://hub.docker.com/ 然后用命令登陆:sudo docker login --username=shuhai198 sudo docker pull postgres:13.6 #下载最13.6版本 阅读全文
posted @ 2022-04-18 19:30 I我的博客I 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 一、使用官方安装脚本自动安装 安装命令如下: curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun 也可以使用国内 daocloud 一键安装命令: curl -sSL https://get.daocloud.io/d 阅读全文
posted @ 2022-04-17 21:59 I我的博客I 阅读(955) 评论(0) 推荐(0) 编辑
摘要: 一、Promise简单的封装使用 1、简单的封装函数 // promise发起网络请求 //发起网络请求 支持跨域 请求与处理在一起,通过回调方式来进行,避免回调地狱 //解决回调地狱 es6提供promise ==> es7 async await(目前微信小程序不支持) //使用promise 阅读全文
posted @ 2022-04-12 00:20 I我的博客I 阅读(506) 评论(0) 推荐(0) 编辑
摘要: 一、app.js里面定义全局变量 //app.js App({ //全局变量 globalData:{ userName:"小红", userPhone:"10086" }, }) 使用方法 使用方法 //xxx.js //获取app变量 var app = getApp() Page({ var 阅读全文
posted @ 2022-04-11 13:57 I我的博客I 阅读(1625) 评论(0) 推荐(0) 编辑
摘要: 截止到目前,我们Hospital模块的Patient数据显示在Form上有点奇怪,就是在标题栏位显示出来的是Odoo保存的这条记录的自动编号(hospital.patient,1),这个就不太友好和直观了。 我们通常的做法是显示病人的姓名,或者说显示名称,因为中国公司里面外国人越来越多,有的人证件上 阅读全文
posted @ 2022-04-09 09:39 I我的博客I 阅读(140) 评论(0) 推荐(0) 编辑
摘要: Environment 是 odoo 中操作db的总句柄,以下几种方式可以获得: 在 12,11,10,9,8版本中中,对于继承了Model的类来说可以直接通过self.env得到 Environment 在请求的 Controller 可以通过 request.env()得到 Environmen 阅读全文
posted @ 2022-04-08 23:46 I我的博客I 阅读(604) 评论(0) 推荐(0) 编辑
摘要: 什么是Domain [('create_uid','=',user.id)] Domain是个多条件的列表,每个条件是一个三元表达式:[(字段名,操作符,值), (字段名,操作符,值)] Domain使用场合 权限管理中的行级权限 tree视图的过滤器 其它学习到了再补充 字段名 当前模型的字段或者 阅读全文
posted @ 2022-04-08 23:40 I我的博客I 阅读(213) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 14 下一页