Odoo web controller 安全机制 单位 jeffery 2024年4月23日 0 672 CSRF CORS Authentication CSRF 跨站请求伪造 是指 攻击者通过伪造的网页, 让被攻击者访问, 然后用伪造的网页向 正常网页提交恶意数据 Odoo route 可以设置 csrf = true 来开启 Odoo 客户端已经实现了 csrf 验证, 一般在 表单上, 隐藏了一个 input <input type="hidden" name="csrf_token" t-a... Odoo tech 阅读更多
Odoo 17 AI 助手 单位 jeffery 2024年4月23日 0 716 在 编辑器里面, AI 助手提供 2 个功能 Copywriter 改写 Generate Text 生成文本 顾名思义 , copywriter 就是 基于复制的一段文件, 进行改写 例如 , 选择原文 , 然后 在 浮动工具条 点击 AI 按钮 会弹出copywriter界面 点击顶部的 优化指令, 将会调用 AI 进行相关的改写. Shorten 简短 Lengthen 加长 Friendl... 17.0 阅读更多
Odoo API 单位 jeffery 2024年4月23日 0 517 Table of Contents 概述 XML RPC XML RPC 2 Json RPC Jsonrpc 2 Http request 分发请求 Jsonrpc2 概述 For odoo 15 and previours version Odoo API 是基于 http的, 一共支持 以下 5 种规格 XML RPC //废弃 route.url = '/xmlrpc/*' route.a... 阅读更多
Odoo Web Service API 单位 jeffery 2024年4月23日 0 507 odoo 使用 wsgi 提供 了 XML_RPC 接口, 同时也为 web client 提供了 JSON-RPC Odoo Web 服务 暴露出 相关的服务, 路由分别是 /xmlrpc/ /xmlrpc/2/ /jsonrpc 根据 services 调用 后端对应服务的 方法 method 【定义 openerp\http.py 之 dispatch_rpc()】,然后再将结果从 pyth... Odoo tech 阅读更多
仓库打包作业超出分拣单数量时,发警报邮件 单位 jeffery 2024年4月23日 0 474 Odoo 仓库打包作业 是允许可以 超出分拣单预计的数量。 在 odoo 库存模块的代码里,修改 _create_extra_moves () 方法 def _create_extra_moves(self, cr, uid, picking, context=None): '''This function creates move lines on a picking, at the time ... Odoo app 阅读更多
Odoo电子数据交换(EDI) 单位 jeffery 2024年4月23日 0 420 Odoo EDI 功能能在 odoo 实例之间交换数据,可以交换哪些数据呢? 默认支持: account.invoice 发票,含发票行 res.currency res.partner purchase.order 采购订单,含订单行 sale.order 订单,含订单行 如需要,可以扩展自己的 EDI 接口,但所有的 partner 都必须部署扩展过的 EDI 接口。 如何使用? Share ... Odoo app 阅读更多
WMS8_条码界面操作简要说明(包装作业) 单位 jeffery 2024年4月23日 0 520 说明;条码界面的主要用途是包装作业 这个客户端,完全是 JS 实现的 可以从 All operation 看板视图 P i cking 的表单视图 All operation 看板视图 Picking 表单视图 注意; 仅有状态是 r eversed的分拣才有这个 barcode interface按钮 Barcode interface 说明 点击 menu 进入所有分拣作业( All oper... Odoo app 阅读更多
Odoo HR Payslip 单位 jeffery 2024年4月23日 0 433 pay slip 可以录入多条 worked_days_line 和 input_line ,用来人工调整薪资变动部分,比如销售提成,扣款等。 pay slip 可以包含多个 pay slip line 用来存储 Hr.salary.rule 计算出的结果。 Hr.salary.rule 定义了薪资规则 计算工资规则的时候,会使用 localdict 字典里存放的上下文参数 {'categorie... Odoo app 阅读更多
openERP server action,最强大的功能,没有之一 单位 jeffery 2024年4月23日 0 507 Jeffery9@gmail.com 出品 @jeffery-陈帆 原理 ations OE定义了ir.actions.actions,并从中派生了众多的子类 ir.actions.client ir.actions.act_url ir.actions.act_window ir.actions.act_window_close ir.actions.wizard ir.actions.serv... Odoo app 阅读更多
openERP邮件(发信、收信) 单位 jeffery 2024年4月23日 0 438 openERP里的邮件处理主要有个2个模块处理 mail -核心 fetchmail -接收邮件 Alias domain 和 alias name 配置 domain alias. Settings/ configuration / general settings / email/ alias 注意,alias domain 最好和邮件的domain相同,这样免得需要另外配置DNS系统 配置 ... Odoo app 阅读更多
Server Email action 单位 jeffery 2024年4月23日 0 382 What magic did you enter to get this far? I'm running OpenERP 6.1-1, and would love to get any emails, let alone duplicates... I created a server action with the following conditions set: i.e. none sp... 阅读更多