首页 > TAG信息列表 > openerp-8

多次调用计算方法?

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中执行以下代码有什么问题?

我试图对字段实施约束 但它不会引起约束验证,而是允许保存记录而不显示任何约束消息 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值

目前,我正在使用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中的唯一电子邮件字段

我想设置来自潜在客户和联系人的电子邮件是唯一的. 我试图改变/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集成

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

python – 用于验证日期范围的openERP函数

我的模块中有两个字段,(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 = {