1

我是 OpenERP 新手,对一般编程缺乏经验。我正在尝试从文本字段上的 onchange 事件中获得任何响应。其他人报告说该代码有效,并指出该字段必须失去焦点,因此这可能是我这边与操作系统/浏览器/服务器相关的问题。

我尝试了许多变量组合,因为论坛、文档和帮助网站(如 stackoverflow)上的建议不同。

看法:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
  <data>
    <record model="ir.ui.view" id="view_product_form_custom">
      <field name="name">CRM - Leads Calendar.inherit</field> 
      <field name="model">crm.lead</field>
      <field name="inherit_id" ref="crm.crm_case_form_view_leads" /> 
      <field name="arch" type="xml">
        <field name="partner_name" on_change="testchange(contact_name)" /> <!-- Note: position="replace" works, have tried partner_name, context and combinations here. -->
        <!-- <field name="contact_name" /> -->
      </field>
    </record>
  </data>
</openerp>

控制器:

from openerp.osv import fields, osv # import crm/leads/view as well?

class modcontroller(osv.osv):
    """Attempting to change contact_name onchange partner_name (Company Name).
    """
    _inherit = "crm.lead"
    _columns = {
        'contact_name': fields.char('Contact Name', size=64, readonly=False),
        'partner_name': fields.char("Customer Name", size=64, help='Got your nose!', select=1, readonly=False),
                }
    _defaults = {
                 }

    def testchange(self, cr, uid, ids, contact_name): #partner_name, context=None
#         return {'warning': {'title': 'test', 'message': 'hello world'}}
#         raise Exception("Are you still there?")
        return {'value': {'contact_name': 'testing'}}


modcontroller()

如您所见,我尝试了引发异常并显示警告对话框,但均未成功。它确实检测到语法错误。

操作系统:Windows 7 64 位 OpenERP 7.0 最新稳定版本,包括 postgresql。尝试过的浏览器:Chrome 和 Firefox。没有 NoScript。

作为旁注:我首先在 Ubuntu 12.04 VM 上使用 OpenERP 尝试了 OpenERP,但我遇到了 100% CPU 负载问题,几乎冻结了操作系统(鼠标移动每秒 0.5 帧)。

相关页面摘录: Openerp 中的Onchange 函数 https://www.openerp.com/files/memento/OpenERP_Technical_Memento_latest.pdf(参见第 6 页,动态视图) http://forum.openerp.com/forum/topic34853.html

4

1 回答 1

1

由于您正在继承 view crm.crm_case_form_view_leads,因此您必须使用 attributeposition = replace/after/before属性指定您必须继承的视图中的哪个字段。查看您的代码,我认为您正在尝试将on_change事件添加到 CRM 中的字段partner_name。这可以通过以下方式实现:

<record model="ir.ui.view" id="view_product_form_custom">
  <field name="name">CRM - Leads Calendar.inherit</field> 
  <field name="model">crm.lead</field>
  <field name="inherit_id" ref="crm.crm_case_form_view_leads" /> 
  <field name="arch" type="xml">
    <xpath expr="//field[@name='partner_name']" position="attributes">
        <attribute name="on_change">testchange(partner_name)</attribute>
    </xpath>
  </field>
</record>

由于字段partner_namecontact_name已经存在于模型crm.lead中,您不必crm.lead再次继承模型并添加这些字段。所以你可以省略

_columns = {
    'contact_name': fields.char('Contact Name', size=64, readonly=False),
    'partner_name': fields.char("Customer Name", size=64, help='Got your nose!', select=1, readonly=False),
            }

你的python文件的一部分。

于 2013-11-01T05:46:18.503 回答