上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 25 下一页
摘要: from os import name import threading from socket import * import time lock = threading.Lock() # 确保 多个线程在共享资源的时候不会出现脏数据 openNum = 0 # 端口开放数量统计 threads 阅读全文
posted @ 2023-05-17 14:00 CrossPython 阅读(32) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/sum1201/article/details/128599006 阅读全文
posted @ 2023-05-16 21:57 CrossPython 阅读(66) 评论(0) 推荐(0)
摘要: 路线规则的优先级 我们知道,odoo中的路线可以在四个地方设置,分别是产品路线、产品分类路线、仓库路线和订单明细行中的路线。这四种路线的优先级为: 1 销售订单明细行 ——> 产品路线——> 产品分类路线——> 仓库路线 这个很好理解,当几个路线对某个库位设置的规则冲突时,依据本优先级进行应用。现在 阅读全文
posted @ 2023-05-16 21:56 CrossPython 阅读(649) 评论(0) 推荐(0)
摘要: postgresql 数据库创建触发器记录对A表增删改(之前之后或更新时)的详细数据1、创建functionCREATE OR REPLACE FUNCTION auditlogfunc() RETURNS TRIGGER AS $example_table$BEGININSERT INTO AUD 阅读全文
posted @ 2023-05-16 09:58 CrossPython 阅读(109) 评论(0) 推荐(0)
摘要: <button name="click_created" type="object" string="点变created" class="oe_highlight" confirm="确认吗?" /> 阅读全文
posted @ 2023-05-14 10:44 CrossPython 阅读(40) 评论(0) 推荐(0)
摘要: # def click_created(self): # sender = self.env['res.partner'].browse(2) # receiver = self.env['res.partner'].browse(6) # message = self.env['mail.mess 阅读全文
posted @ 2023-05-13 20:31 CrossPython 阅读(44) 评论(0) 推荐(0)
摘要: self.env['res.partner'].search([('id', '=', 2)]) 阅读全文
posted @ 2023-05-13 19:04 CrossPython 阅读(33) 评论(0) 推荐(0)
摘要: def click_created(self): return { 'type': 'ir.actions.client', 'tag': 'display_notification', 'params': { 'title': '提示点击', 'message': '游戏哦', 'sticky': 阅读全文
posted @ 2023-05-13 08:21 CrossPython 阅读(140) 评论(0) 推荐(0)
摘要: import win32com.client TASK_ENUM_HIDDEN = 1 TASK_STATE = {0: 'Unknown', 1: 'Disabled', 2: 'Queued', 3: 'Ready', 4: 'Running'} scheduler = win32com.cli 阅读全文
posted @ 2023-05-10 09:50 CrossPython 阅读(141) 评论(0) 推荐(0)
摘要: # 升级 pip 到最新的版本 (>=10.0.0) 后进行配置 pip install pip -U # 清华源 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple # 阿里云源 pip config s 阅读全文
posted @ 2023-05-07 13:33 CrossPython 阅读(82) 评论(0) 推荐(0)
摘要: 首先在security目录下新增security.xml文件,并添加__manifest__.py引用,xml内容如下 <?xml version="1.0" ?> <odoo> <data> <record id="module_xxx_title" model="ir.module.catego 阅读全文
posted @ 2023-05-07 10:58 CrossPython 阅读(64) 评论(0) 推荐(0)
摘要: <?xml version="1.0" encoding="utf-8"?> <odoo> <data noupdate="0"> <!-- 创建类别 --> <record model="ir.module.category" id="module_roke_stock_hidden"> <fie 阅读全文
posted @ 2023-05-07 10:35 CrossPython 阅读(24) 评论(0) 推荐(0)
摘要: import odoorpc # Prepare the connection to the server odoo = odoorpc.ODOO('127.0.0.1', port=8069) # Check available databases print(odoo.db.list()) # 阅读全文
posted @ 2023-05-01 21:44 CrossPython 阅读(73) 评论(0) 推荐(0)
摘要: import xmlrpc.client # info = xmlrpc.client.ServerProxy('http://127.0.0.1:8069/').start() # url, db, username, password = info['host'], info['database 阅读全文
posted @ 2023-05-01 21:27 CrossPython 阅读(58) 评论(0) 推荐(0)
摘要: <record id="mypartner_tree_view" model="ir.ui.view"> <field name="name">Mypartner清单</field> <field name="model">mypartner</field> <field name="arch" t 阅读全文
posted @ 2023-05-01 16:30 CrossPython 阅读(24) 评论(0) 推荐(0)
摘要: odoo标准视图国家省城市三级联动:代码如下 country_bank = fields.Many2one('res.country', '开户行国家', ondelete='restrict') province_bank = fields.Many2one('res.country.state' 阅读全文
posted @ 2023-05-01 15:31 CrossPython 阅读(180) 评论(0) 推荐(0)
摘要: Odoo10.0中可以通过两种方式来实现工作流(workflow) 一种的官网API中给出的方式,链接:https://www.odoo.com/documentation/10.0/reference/workflows.html 还有一种是通过查看Odoo10.0的源码,发现自带模块中使用的方式 阅读全文
posted @ 2023-04-26 21:15 CrossPython 阅读(143) 评论(0) 推荐(0)
摘要: Workflows Workflows 是通过model 来描述业务逻辑之间的变化过程,Workflows are also used to track processes that evolve over time. 练习 6-1 给session 添加一个 state field ,用来帮助弄 阅读全文
posted @ 2023-04-26 21:03 CrossPython 阅读(61) 评论(0) 推荐(0)
摘要: console.log(owl.Component.env);var itemType = owl.Component.env.form_view.model.data.itemtype; 阅读全文
posted @ 2023-04-22 22:27 CrossPython 阅读(30) 评论(0) 推荐(0)
摘要: setup(){ this.action = useService("action"); } openSettings(){ console.log("click action"); // this.action.doAction("base_setup.action_general_configu 阅读全文
posted @ 2023-04-22 14:50 CrossPython 阅读(117) 评论(0) 推荐(0)
摘要: import { registry } from "@web/core/registry"; const myService = { dependencies: ["notification"], start(env, { notification }) { let counter = 1; set 阅读全文
posted @ 2023-04-21 14:55 CrossPython 阅读(61) 评论(0) 推荐(0)
摘要: https://odoo.github.io/owl/playground/ /** @odoo-module **/ const { Component, useState, useRef, mount, onMounted, props, useEnv, reactive } = owl; fu 阅读全文
posted @ 2023-04-20 10:25 CrossPython 阅读(43) 评论(0) 推荐(0)
摘要: https://odoo.github.io/owl/playground/ /** @odoo-module **/ const { Component, useState, useRef, mount, props } = owl; class Task extends Component { 阅读全文
posted @ 2023-04-20 09:46 CrossPython 阅读(37) 评论(0) 推荐(0)
摘要: use std::fs::File; use std::io::{BufRead, BufReader}; fn main() { let file = File::open("f.txt").expect("File not found"); let reader = BufReader::new 阅读全文
posted @ 2023-04-19 13:07 CrossPython 阅读(53) 评论(0) 推荐(0)
摘要: import xmlrpc.client url = 'http://0.0.0.0:8015' db = 'dev_db' username = 'admin' password = 'admin' common = xmlrpc.client.ServerProxy('{}/xmlrpc/2/c 阅读全文
posted @ 2023-04-15 22:08 CrossPython 阅读(70) 评论(0) 推荐(0)
摘要: document.querySelector('.abcd'); 阅读全文
posted @ 2023-04-12 23:06 CrossPython 阅读(25) 评论(0) 推荐(0)
摘要: odoo中如果前端界面要调用后台model中写好的方法,很简单。使用 do_action 即可,比如要调用改res.users的默认语言后执行的方法 odoo.define('switch_language.SwitchLanguageMenu', function (require) { "use 阅读全文
posted @ 2023-04-11 14:01 CrossPython 阅读(86) 评论(0) 推荐(0)
摘要: 前面我们讲到了odoo的前端js加载以及怎么把自己写的js插入odoo的框架中。那在这里,有些人就会问了,odoo的模块安装是乱序的,我们怎么保证前端js在执行的时候,那些依赖的底层包已经加载了呢?如果两个模块之间有依赖关系,那在上一节讲的前端继承加载的位置是否有要注意的呢? 其实这些都不用担心,o 阅读全文
posted @ 2023-04-11 13:51 CrossPython 阅读(374) 评论(0) 推荐(1)
摘要: [target.'cfg(windows)'.dependencies] winapi = { version = "0.3", features = ["winuser"] } [dependencies] #[cfg(windows)] extern crate winapi; use std: 阅读全文
posted @ 2023-04-11 08:20 CrossPython 阅读(117) 评论(0) 推荐(0)
摘要: import cv2 from PIL import ImageGrab import numpy as np import pyautogui if __name__ == '__main__': im = ImageGrab.grab() im.save('./res/screen.png', 阅读全文
posted @ 2023-04-10 14:38 CrossPython 阅读(134) 评论(0) 推荐(0)
摘要: [dependencies] web-view = "0.7.3" use std::thread; use web_view::*; fn main() { let handle = thread::spawn(|| { let webview = web_view::builder() .tit 阅读全文
posted @ 2023-04-04 20:54 CrossPython 阅读(144) 评论(0) 推荐(0)
摘要: [dependencies] image = "0.24.6" use image::{GenericImageView, ImageBuffer, Rgb}; fn main() { let img_a = image::open("2.png").unwrap().to_rgb8(); let 阅读全文
posted @ 2023-03-28 21:06 CrossPython 阅读(195) 评论(0) 推荐(0)
摘要: 1. rsautogui 2. color_space 比较颜色 3. dssim 比较图像相似度 4. image 图像 5. image-compare Color-space是一个用于处理颜色空间转换和计算颜色相似度的Rust库。该库支持多种颜色空间,如RGB、HSL、HSV、Lab等,并提供 阅读全文
posted @ 2023-03-28 16:23 CrossPython 阅读(931) 评论(0) 推荐(0)
摘要: 操作界面 pyautogui , pywinauto https://www.cnblogs.com/qlqwjy/p/16526714.html https://www.cnblogs.com/yuruhao/p/14634401.html 阅读全文
posted @ 2023-03-27 20:30 CrossPython 阅读(42) 评论(0) 推荐(0)
摘要: [dependencies] pdf-extract = "0.6.4" use pdf_extract::extract_text; fn main(){ let text = extract_text("1.pdf").unwrap(); println!("{:?}", text); } 阅读全文
posted @ 2023-03-26 14:25 CrossPython 阅读(101) 评论(0) 推荐(0)
摘要: 要使用 datafusion crate 读取 SQL Server,您需要安装 SQL Server 驱动程序和 datafusion crate。 安装 SQL Server 驱动程序: 安装ODBC驱动程序 安装 SQLCMD 工具 安装 datafusion crate: 在 Cargo.t 阅读全文
posted @ 2023-03-25 21:45 CrossPython 阅读(62) 评论(0) 推荐(0)
摘要: JSON 作为使用最广泛的数据结构,学习了解如何在发展最快的 Rust 语言中使用很有必要。 本文中我们将学习到: 读取无类型的 JSON。 将 JSON 读取为强类型数据结构。 写 JSON 字符串。 使用 serde 和 serde-json Rust 依赖。 无类型 JSON Rust 是强类 阅读全文
posted @ 2023-03-19 14:46 CrossPython 阅读(626) 评论(0) 推荐(0)
摘要: # from PyInstaller.utils.hooks import exec_statement # # mpl_data_dir = exec_statement( # "import matplotlib; print(matplotlib.get_data_path())") # as 阅读全文
posted @ 2023-03-16 18:46 CrossPython 阅读(187) 评论(0) 推荐(0)
摘要: 1.发送私聊消息最佳写法 def _send_sys_message(self, user, message): """通过OdooBot给指定用户发送消息 :param user: 'res.users' 对象 :param message: str, 消息内容 """ # 获取OdooBot的p 阅读全文
posted @ 2023-03-13 10:53 CrossPython 阅读(132) 评论(0) 推荐(0)
摘要: 转两篇关于权限的2篇文章,加深这方面的认识 第一篇:http://www.cnblogs.com/dancesir/p/6994030.html Odoo的权限的核心是权限组(res_groups)。对每个权限组,可以设置权限组的菜单表示,对象表示,记录规则表示,字段表示。 1.菜单/对象级别 设置 阅读全文
posted @ 2023-03-13 09:12 CrossPython 阅读(284) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 25 下一页