博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
odoo自动更新表中数据
阅读量:6847 次
发布时间:2019-06-26

本文共 1758 字,大约阅读时间需要 5 分钟。

这是追踪信息用的查询语句,__init__方法初始化作用 _order ="hpartner_id desc" def init(self,cr):     tools.sql.drop_view_if_exists(cr, 'cust_product_info_report')     cr.execute(""" create or replace view cust_product_info_report as ( select t0.id,t0.hpartner_id as hpartner_id, t0.khwl_code as khwl_code,t1.product_tmpl_id as productn, t3.cust_spec as cust_spec,t3.material as material , t4.id as name_uom, t0.custo_price as custo_price,t0.product_meno as product_meno ,t0.meno as meno from product_custo_info t0 LEFT JOIN product_product t1 on t0.product_tmpl_id=t1.product_tmpl_id LEFT JOIN product_template t3 on t3.id=t1.product_tmpl_id LEFT JOIN res_partner t2 on t2.id=t0.hpartner_id LEFT JOIN product_uom t4 on t3.uom_id=t4.id ) """) 判断是否有重复数据复 def create(self, cr, uid, vals, context=None): if context is None: context = {} code= vals.get('code','') cr.execute("select id from res_partner where code='%s'" %(code)) if cr.rowcount>0: raise osv.except_osv(u'提示',u"[客户/供应商]此简称已经存在!") xh=1 requirement_ids=vals.get('requirement_ids') if requirement_ids: for rline in requirement_ids: rline[2]['sequence']=xh xh=xh+1 ctx = dict(context or {}, mail_create_nolog=True) new_id = super(product_template, self).create(cr, uid, vals, context=ctx) return new_id
 
 
# 新加地方,执行动作找到对应页面 def action_custorm_state(self, cr, uid, ids, context=None): name=self.browse(cr,uid,ids[0],context=context).name act_obj = self.pool.get('ir.actions.act_window') mod_obj = self.pool.get('ir.model.data') result = mod_obj.xmlid_to_res_id(cr, uid, 'ks_sale.action_view_cust_product_info_tree',raise_if_not_found=True) result = act_obj.read(cr, uid, [result], context=context)[0] result['domain'] = "[('hpartner_id','=',"+ str(ids[0]) +")]" return result
 

转载于:https://www.cnblogs.com/1314520xh/p/7056755.html

你可能感兴趣的文章
centos7下如何安装mysql 亲测
查看>>
SSH防止暴力破解 shell script
查看>>
真是讨人厌
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
如何编辑UG中打开文件的历史记录信息(history.pax)?
查看>>
LeetCode 5回文数
查看>>
mysql的安装与配置
查看>>
Linux运维系统工程师系列---23
查看>>
源码安装http的-2.4.4
查看>>
One_install postifx is shell
查看>>
Java await wait sleep yield
查看>>
航空制造业信息化顶层架构部分成果展示
查看>>
httpServletRequest中的流只能读取一次的原因
查看>>
iOS10以后相机、相册等授权问题
查看>>
转:iptables防火墙原理详解
查看>>
MySLQ排序后标记排行
查看>>
RAID
查看>>
【高德地图API】从零开始学高德JS API(六)——坐标转换
查看>>