摘要:
一、domain使用场景 1、关联字段 2、 3、权限过滤(xml文件中:model="ir.rule") 4、搜索过滤(xml文件中:model="ir.ui.view") 二、domain表达式规则 阅读全文
摘要:
Odoo中的三种模型类型 1、基本模型:models.Model 2、瞬态模型:models.TransientModel 3、抽象模型:models.AbstractModel 参考博客: https://www.bbsmax.com/A/MyJxN9DMdn/ https://www.cnblo 阅读全文
摘要:
https://blog.csdn.net/jehuyang/article/details/93507243 阅读全文
摘要:
https://www.shuzhiduo.com/A/MyJxNarpdn/ https://www.cnblogs.com/zjyss/p/13703859.html https://www.cnblogs.com/kfx2007/p/14927361.html https://www.liuy 阅读全文
摘要:
常用的高阶函数: 一、sorted():记录对象.sorted() 二、mapped():记录对象.mapped() 三、filtered():记录对象.filtered() 阅读全文
摘要:
哈哈哈 阅读全文
摘要:
数据库管理 1、创建数据库 postgres=# create database timeseries; 2、查看数据库 postgres=# \l # 查看已经存在的数据库。注释:当前数据库为postgres。 postgres=# \c runoobdb # 切换进入到 runoobdb 数据库 阅读全文
摘要:
安装 TimescaleDB 1、制作 timescaledb.repo 文件 [root@localhost ~]# vim /etc/yum.repos.d/timescaledb.repo # 方式一 [root@localhost ~]# tee /etc/yum.repos.d/times 阅读全文
摘要:
一、PostgreSQL 下载安装 1、安装PostgreSQL仓库(添加yum源) [root@localhost ~]# yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg- 阅读全文
摘要:
前置知识点 目前生产部署 Kubernetes 集群主要有两种方式:kubeadm 与 二进制包 一、kubeadm 概念:Kubeadm 是一个 K8s 部署工具,提供 kubeadm init 和 kubeadm join,用于快速部署 Kubernetes 集群。 官网:https://kub 阅读全文