Odoo18 print template, no header or footer when printing Check if wkhtmltopdf is installed successfully wkhtmltopdf -V Version 18 recommends the following version: wkhtmltopdf 0.12.6 (with patched qt) If not, uninstall and then re-download and install Remo... Odoo一体化
Odoo uploads a file and prompts "Attempting to reconnect", "You are back online" Due to nginx configuration, this may happen. Increase the size in nginx and set the client_max_body_size limit. Odoo's default limit is 25 MB , so it should allow uploading this file If you are using ... Odoo一体化 nginxodoo odoo上传图片 odoo附件上传
odoo 销售模块如何使用 Odoo销售模块是一个强大的工具,用于管理销售流程,包括报价、销售订单、发票和发货等。以下是使用Odoo销售模块的基本步骤,以列表形式呈现: 安装销售模块 : 登录Odoo后台,进入“应用”模块。 搜索“销售”模块并安装。 配置产品 : 在“销售”模块下,进入“产品”部分。 创建或导入产品目录,设置产品的价格、库存等信息。 设置价格列表 : 在“销售”模块下,进入“价格列表”部分。 创建不同的价格... Odoo一体化
How to generate a complete conf file configuration for the latest version of odoo When using Odoo (which may be a misspelling or an application in a specific context, usually referring to OdooERP or similar enterprise resource planning software), --save and --config are common comm... Odoo一体化 Odoo的配置
Complete analysis of try-except syntax for code exception handling, after reading this article, your code will be better maintained and more stable Whether you are developing Python, Java, JavaScript programs, or writing C++, PHP, GO, Ruby code, you cannot do without try … except exception handling. As for why, it's all for the stable operation o... Odoo一体化 try-except 代码异常处理 程序异常处理
How to set up inventory function routes (Route) in Odoo 17 Setting up a Route in Odoo 17 typically involves supply chain management, product configuration, and possibly sales and procurement processes. The following are some basic steps to set up a route: 1. ... Odoo一体化 odoo17 odoo实施
odoo implementation: How to understand odoo17 Make to Order (MTO) 在Odoo中,MTO(Make To Order)是一種生產策略,用於處理定製產品的訂單。這種策略特別適用於那些沒有預先製造標準產品的企業,而是根據客戶的具體需求來生產產品。在MTO模式下,生產過程只有在接到客戶訂單後才開始,這樣可以減少庫存積壓和生產成本,同時滿足客戶的個性化需求。 以下是MTO在Odoo中應用的關鍵步驟和考慮因素: 1. **客戶需求確認**:首先,需要與客戶溝通確認產品的具體... Odoomtsmto Odoo一体化 odoo实施
How to implement the pseudo-identifier object for creating new records with (NewId) in odoo17 class NewId(object): Pseudo-ids for new records, encapsulating an optional origin id (actual record id) and an optional reference (any value). TRANSLATED SEGMENT: __slots__ = ['origin', 'ref'] def __i... Odoo一体化 odoo开发
Five essential Odoo development methods you must know and master It mainly includes the following methods and their main uses: search(): Called in the search view search_count(): Called when counting records in a view name_search(): called when searching in many2on... Odoo一体化
odoo15 frontend registry registers client actions and widgets Description In simple terms, client actions bind specific actions by registering a set of widgets. From the server's perspective, a client action is merely a record saved in the ir_action model; from ... ODOO二次开发建议 Odoo一体化
Analysis of Odoo Permission Groups (groups_id) and Detailed Explanation of Master-Slave Link Relationships Involved in eval The content of this cell is too long for an XLSX file (more than 32767 characters). Please use the CSV format for this export.... Odoo 权限组 Odoo一体化
odoo development: difference between search() and search_read() Summary of Common Odoo Functions and Attributes I. Odoo Functions 1 Query Method search(): Called in the search view search_count(): Called when counting records in the view name_search(): called when... Odoo一体化