1.修改产品数量时,自动计算产品销售金额、销售成本和销售利润
<field name="num" on_change="on_change_product(product, num, price)"/>
2.选择历史工单时,按销售单中当前选择的客户自动过滤,打开选择历史工单窗口时,过滤条件默认为销售单中当前选择的客户
<field name="work_order" domain="[('customer','=',customer)]" context="{'search_default_customer':customer}"/>

代码示例:

<!-- views dispatch_sale_form -->
    <record model="ir.ui.view"
id="dispatch_sale_form">
      <field
name="name">dispatch.sale.form</field>
     
<field
name="model">dispatch.sale</field>
     
<field name="type">form</field>
     
<field name="priority">2</field>
     
<field name="arch" type="xml">
    <form
string="销售单明细"
version="7.0">
        
<header>
            
<button string="确认" name="set_to_confirmed" states="draft" type="object"
icon="gtk-yes"/>
            
<button string="还原为草稿" name="set_to_draft" states="confirmed" type="object"
icon="gtk-convert"
groups="kl_dispatch.group_dispatch_manager"/>
            
<field name="state" widget="statusbar" statusbar_visible="draft,confirmed"
statusbar_colors='{"draft":"blue"}'/>
        
</header>
       
<sheet>
          
<group>
          
<group>
             
<field
name="date"/>
             
<field
name="name"/>
             
<field
name="customer"/>
             
<field name="product" on_change="on_change_product(product, num,
price)"/>
             
<field name="num" on_change="on_change_product(product, num,
price)"/>
             
<field name="price" on_change="on_change_product(product, num,
price)"/>
             
<field name="cost" on_change="on_change_product(product, num, price)" 
invisible="1"/>
             
<field name="cost_view"
invisible="0"/>
          
</group>         

          
<group>
             
<field name="employee_id"
on_change="onchange_employee_id(employee_id)"/>
             
<field
name="department_id"/>
             
<field name="work_order" domain="[('customer','=',customer)]"
context="{'search_default_customer':customer}"/>
             
<field
name="klbh"/>
             
<field
name="sum_sale"/>
             
<field
name="sum_cost"/>
             
<field
name="sum_profit"/>
          
</group>
         
</group>
            
<group>
            
 <field name="note"
colspan="4"/>
            
</group>
         
</sheet>
       
</form>
     
</field>
    </record>

    #职员修改自动更改部门

    def onchange_employee_id(self, cr, uid, ids,
employee_id,
context=None):
       
department_id = False
        if
employee_id:
           
emp_obj =
self.pool.get('hr.employee')
           
employee = emp_obj.browse(cr, uid, employee_id,
context=context)
           
department_id =
employee.department_id.id
        return
{'value': {'department_id': department_id}}

   
#产品、数量、单价、成本更改,自动计算销售金额、成本金额、利润金额

    def
on_change_product(self,cr,uid,ids,product_id, num,
price):
       
v={}
        if
product_id:
           
product=self.pool.get("dispatch.product").browse(cr,uid,product_id)
           
v["cost"]=product.cost
           
v["cost_view"]=product.cost
       
else:
           
v["cost"]=0
           
v["cost_view"]=0
       
v['sum_sale']=num*price
       
v['sum_cost']=num*v["cost"]
       
v['sum_profit']=v['sum_sale']-v['sum_cost']
       
return {"value":v}

    #按销售单中对应的客户,自动过滤选择工单
domain="[('customer','=',customer)]" ,打开选择窗口时过滤条件默认客户
context="{'search_default_customer':customer}"

          
<group>
             
<field
name="date"/>
             
<field
name="name"/>
             
<field
name="customer"/>
             
<field name="product" on_change="on_change_product(product, num,
price)"/>
             
<field name="num" on_change="on_change_product(product, num,
price)"/>
             
<field name="price" on_change="on_change_product(product, num,
price)"/>
             
<field name="cost" on_change="on_change_product(product, num, price)" 
invisible="1"/>
             
<field name="cost_view"
invisible="0"/>
          
</group>
          
<group>
             
<field name="employee_id"
on_change="onchange_employee_id(employee_id)"/>
             
<field
name="department_id"/>
             
<field name="work_order" domain="[('customer','=',customer)]"
context="{'search_default_customer':customer}"/>
             
<field
name="klbh"/>
             
<field
name="sum_sale"/>
             
<field
name="sum_cost"/>
             
<field
name="sum_profit"/>
          
</group>

openerp学习笔记 视图中字段只变化(on_change)联动其他字段值、选择和过滤的更多相关文章

  1. openerp学习笔记 视图样式(表格行颜色、按钮,字段只读、隐藏,按钮状态、类型、图标、权限,group边距,聚合[合计、平均],样式)

    表格行颜色:             <tree string="请假单列表" colors="red:state == 'refuse';blue:state = ...

  2. openerp学习笔记 视图(tree\form)中隐藏按钮( 创建、编辑、删除 ),tree视图中启用编辑

    视图(tree\form)中隐藏按钮( 创建.编辑.删除 )create="false" edit="false" delete="false&quo ...

  3. openerp学习笔记 视图继承(tree、form、search)

    支持的视图类型:form.tree.search ... 支持的定位方法:                  <notebook position="inside"> ...

  4. openerp学习笔记 视图更新时删除已存在的菜单或其他对象

    删除菜单示例: <delete id="base.menu_module_updates" model="ir.ui.menu"/><dele ...

  5. ArcGIS案例学习笔记-点集中最近点对和最远点对

    ArcGIS案例学习笔记-点集中最近点对和最远点对 联系方式:谢老师,135-4855-4328,xiexiaokui@qq.com 目的:对于点图层,查找最近的点对和最远的点对 数据: 方法: 1. ...

  6. 《Cocos2d-x游戏开发实战精解》学习笔记3--在Cocos2d-x中播放声音

    <Cocos2d-x游戏开发实战精解>学习笔记1--在Cocos2d中显示图像 <Cocos2d-x游戏开发实战精解>学习笔记2--在Cocos2d-x中显示一行文字 之前的内 ...

  7. openerp学习笔记 计算字段、关联字段(7.0中非计算字段、关联字段只读时无法修改保存的问题暂未解决)

    计算字段.关联字段,对象修改时自动变更保存(当 store=True 时),当 store=False 时,默认不支持过滤和分组7.0中非计算字段.关联字段只读时无法修改保存的问题暂未解决 示例代码: ...

  8. openerp学习笔记 搜索视图(自己创建的、自己的、本部门的、本部门及下属部门的、今日的、日期从,日期至、多条件模糊搜索、or、and)

    自己创建的: domain="[('create_uid','=',uid)]" 自己的: domain="[('employee_id','=','#kl_user_e ...

  9. openerp学习笔记 统计、分析、报表(过滤条件向导、分组报表、图形分析、比率计算、追加视图排序)

    待解决:图形中当改变分组时,图例不正确            存储比率计算时,分组合计不正确 wizard:过滤条件向导,用于输入过滤条件 wizard/sale_chart.py # -*- cod ...

随机推荐

  1. 原创博客>>>解决粘包问题的方法

    目录 原创博客>>>解决粘包问题的方法 原创博客>>>解决粘包问题的方法 服务端: import socket import struct service=sock ...

  2. 第十一章、super()详解

    目录 第十一章.super()详解 一.引出super()来由 第十一章.super()详解 一.引出super()来由 原始用法: 在python类的方法中,要调用父类的某个方法,通常是类.方法() ...

  3. Creating a PXE Configuration File

      The PXE configuration file defines the menu displayed to the pxe client host as it boots up and co ...

  4. 《python解释器源码剖析》第8章--python的字节码与pyc文件

    8.0 序 我们日常会写各种各样的python脚本,在运行的时候只需要输入python xxx.py程序就执行了.那么问题就来了,一个py文件是如何被python变成一系列的机器指令并执行的呢? 8. ...

  5. Java SE 核心 II【Collection 集合框架】

    Collection集合框架 在实际开发中,需要将使用的对象存储于特定数据结构的容器中.而 JDK 提供了这样的容器——集合框架,集合框架中包含了一系列不同数据结构(线性表.查找表)的实现类.集合的引 ...

  6. Oracle【三表的联合查询】

    ,'北京','彰显大气'); ,'上海','繁华都市'); ,'广州','凸显舒适'); ,'深圳','年轻气氛'); ,'北上广深','不相信眼泪'); commit; ; ; ; ; ; 员工信息 ...

  7. NORDIC 修改MTU

    https://www.cnblogs.com/jiangjiu/p/10063556.html 注意要修改RAM起始地址,因为MTU增大了

  8. Elasticsearch中Mapping

    映射(Mapping) 概念:创建索引时,可以预先定义字段的类型以及相关属性.从而使得索引建立得更加细致和完善.如果不预先设置映射,会自动识别输入的字段类型. 官方文档(字段数据类型):https:/ ...

  9. hive三种调用方式

    一.hive -e ‘sql语句’ (shell命令) 适合比较短的sql语句调用,优点是可以直接在shell中调用静音模式 -S 在执行HiveQL过程中,不在显示器输出MR的执行过程hive -S ...

  10. @Value和@ConfigurationProperties

    1.@Value用法 https://blog.csdn.net/u010832551/article/details/73826914 2.@ConfigurationProperties用法 ht ...