摘要: # 全球网站部署大数据(实时性比其他网站高) https://www.netcraft.com/ # nginx下载源码 nginx.org # 更老的版本 nginx.org/download # 环境 # VMware workstation # Centos7 # Mobaxterm # xs 阅读全文
posted @ 2021-10-28 16:29 看一百次夜空里的深蓝 阅读(275) 评论(0) 推荐(0)
摘要: 1 # Docker-Compose分为两部分 2 # 一、Docker-Compose.yml 3 # 二、Docker-Compose 命令 4 5 # 桌面板的Docker(Win、Mac)会默认捆绑捆绑安装Docker-Compose 6 # 查看是否安装成功 7 Docker-Compos 阅读全文
posted @ 2021-10-26 10:20 看一百次夜空里的深蓝 阅读(843) 评论(0) 推荐(0)
摘要: 1 # 这是一个基础的Dockerfile,用该文件来构建镜像,具体每个命令的用法,下方都有说明 2 FROM ubuntu:latest 3 ENV VERSION=2.0.1 4 RUN tar zxf ipinfo_${VERSION}.tar.gz 5 6 FROM ubuntu:lates 阅读全文
posted @ 2021-10-25 14:51 看一百次夜空里的深蓝 阅读(203) 评论(0) 推荐(0)
摘要: 1 # 直接从官网下载docker的安装命令包(docker已经很贴心将安装shell脚本帮我们准备好了) 2 curl -fsSL get.docker.com -o get-docker.sh 3 4 # 然后以超级管理员去运行安装,这里安装需要花些时间,我是腾讯云CentOS 8.2 64bi 阅读全文
posted @ 2021-10-25 11:11 看一百次夜空里的深蓝 阅读(316) 评论(0) 推荐(0)
摘要: 1 Traceback: 2 Error: While parsing modifiers for page: for modifier "invisible": fieldValue.indexOf is not a function 3 at Class._registerModifiers ( 阅读全文
posted @ 2021-09-23 09:15 看一百次夜空里的深蓝 阅读(391) 评论(0) 推荐(0)
摘要: # 我们使用应用市场上的模块的时候,经常会碰到模块只兼容特定版本,要将模块兼容到自己版本来的时候,就需要下载它原兼容odoo的版本运行。 # 这里的-b后面加的11.0就是它的版本。在git中也就是分支 git clone -b 11.0 --single-branch --depth 1 http 阅读全文
posted @ 2021-09-18 09:56 看一百次夜空里的深蓝 阅读(593) 评论(0) 推荐(0)
摘要: Odoo中关联字段是用来绑定表与表之间主从关系的。 主从关系指: 首先必须要明白id的存在的意义,它具备“唯一”的属性,也就是表中所有记录中该字段的值不会重复。 假设表A存储是身份证信息,表B存储的是银行卡信息,表B中有一个字段是表A的id,那么我们是不是可以通过身份证id去查询这个人有多少张银行卡 阅读全文
posted @ 2021-09-09 10:11 看一百次夜空里的深蓝 阅读(1246) 评论(0) 推荐(0)
摘要: 1 Odoo14权限更新有两个地方: 2 一.你在编写xml权限记录的时候没有将noupdate设置为'1'这样导致你每次升级模块,你的权限都会重置一遍。 3 二.你在运行odoo-bin服务的时候,加了 -i选项,该选项会重置你的权限。 1 <?xml version="1.0" encoding 阅读全文
posted @ 2021-09-07 11:48 看一百次夜空里的深蓝 阅读(322) 评论(0) 推荐(0)
摘要: 1 <field name="user_ids" 2 mode="kanban" 3 nolabel="1" 4 options="{'no_create_edit': True}" 5 context="{ 6 'many2many_res_id':id,//这里设置上下文参数 7 'form_v 阅读全文
posted @ 2021-09-06 11:09 看一百次夜空里的深蓝 阅读(857) 评论(0) 推荐(0)
摘要: 1 <div class="oe_edit_only"> 2 <a name="remove_group_id" type="object" role="button"> 3 <i class="fa fa-times" role="img" aria-label="Delete" title="D 阅读全文
posted @ 2021-09-06 11:00 看一百次夜空里的深蓝 阅读(419) 评论(0) 推荐(0)