ICode9

精准搜索请尝试: 精确搜索
  • 多次调用计算方法?2019-11-19 19:57:32

    I found out that this probably isn’t concurrency problem as the method is recalled JUST WHEN I TRY TO UPDATE THE sync.test.subject.b‘s separated_chars FIELD (at the end of the method). So I can’t solve this with thread locking as the method actually

  • 在Python中执行以下代码有什么问题?2019-10-27 23:58:01

    我试图对字段实施约束 但它不会引起约束验证,而是允许保存记录而不显示任何约束消息 def _check_contact_number(self, cr, uid, ids, context=None): for rec in self.browse(cr, uid, ids, context=context): if rec.contact_number: s

  • php-如何使用xml-rpc在odoo中插入one2many值2019-10-27 06:30:55

    目前,我正在使用odoo 8.0.实际上,我正在使用XML-RPC API创建产品.这里是使用php从xml-rpc创建产品的代码. $url = "http://localhost:8069"; $db = "xmlcreate"; $username = "admin"; $password = "admin"; require_once('ripcord-master/ripcord.php');

  • python – Odoo v8中的唯一电子邮件字段2019-07-27 19:56:40

    我想设置来自潜在客户和联系人的电子邮件是唯一的. 我试图改变/usr/lib/python2.7/dist-packages/openerp/models.py文件,第342行: _sql_constraints = [] 在: _sql_constraints = [ ('user_email', 'unique(user_email)', 'Please enter Unique Email'), ] 但是没有用.

  • 如何将Odoo与MySQL集成2019-07-06 18:14:53

    我试图在ubuntu服务器上集成Odoo(openerp-8)和MySQL,以获得数据库访问而不是postgresql. 但我无法弄清楚这样做的正确方法. 我试过这个链接,但它没有帮助我 http://openerp-team.blogspot.de/2009/08/open-erp-server-with-mysql.html 有关使用MySQL配置odoo的更好的想法吗?解决方法

  • python – 用于验证日期范围的openERP函数2019-06-23 21:45:02

    我的模块中有两个字段,(start_date和end_date).我想验证日期范围,因为end_date必须大于start_date并显示错误消息,如“结束日期应该大于开始日期”这是mu cord. from openerp.osv import osv, fields class op_batch(osv.Model): _name = 'op.batch' _columns = {

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有