odoo学习之弹框显示
按条件隐藏:
<xpath expr="//group[1]" position="attributes">
<attribute name="attrs">{'invisible':[('uid_qx','=',False),('customer','=',True),('id','!=',False)]}</attribute>
</xpath>
<xpath expr="//div[@name='buttons']" position="attributes">
<attribute name="attrs">{'invisible':[('uid_qx','=',False),('customer','=',True),('id','!=',False)]}</attribute>
</xpath>
<xpath expr="//notebook" position="attributes">
<attribute name="attrs">{'invisible':[('uid_qx','=',False),('customer','=',True),('id','!=',False)]}</attribute>
</xpath>
binary: 二进制型,可存图片,文档
class="oe_edit_only"
options
:
options='{"no_open": True}' 不会弹出窗口 就是 many2oneXM 界面不再显示超链
options="{'reload_on_button': true}"
one2many 首先加载记录 然后调用按钮动作重新加载
options="{' always_reload': true}" one2many 每次插入数据时重新载入记录 nolabel="1" options="{'reload_on_button': true}"
def do_enter_prod_line(self, cr, uid, ids, context=None):
if not context:
context = {}
id=ids[0]
ctx={'default_manufac_id':id}
mod_obj = self.pool.get('ir.model.data')
form_res = mod_obj.get_object_reference(cr, uid, 'demo_sale', 'view_prod_choice_origin_form')
form_id = form_res and form_res[1] or False[0] or False
return {
'name': u'创建织造单',
'type': 'ir.actions.act_window',
'view_type': 'form',
'view_mode': 'form',
'res_model': 'prod.choice.origin',
'views': [(form_id, 'form')],
'view_id': form_id,
'target': 'new',
'context':ctx,
}
def add_za_order_line(self, cr, uid,man_id, record, context=None):
man_obj=self.pool.get('manufacture.origin')
id=man_id
vals={}
vals={'line_id':record}
print vals
self.write(cr,uid,[id],vals,context=context)
return True

class prod_choice_origin(osv.osv):
_name='prod.choice.origin'
_description='prod choice origin'
def action_add_za_order(self,cr,uid,ids,context=None):
assert len(ids)==1
result={}
mo_obj=self.pool.get('manufacture.origin')
zz_origin_obj=self.browse(cr,uid,ids,context)
man_id=zz_origin_obj.manufac_id.id
record=[]
i=0
for line_ids in zz_origin_obj.line_id:
if line_ids.choice==True:
record.append((0,0,{
'sequence':i+1,
'product_id':line_ids.product_id.id,
'plan_qty':line_ids.realy_qty,
'partner_id':line_ids.partner_id.id,
'lot_id':line_ids.lot_id.id,
}))
i+=1 mo_obj.add_za_order_line(cr,uid,man_id,record,context=None)
return True
_columns={
'manufac_id':fields.many2one('manufacture.origin',string=u'单号'),
'product_id':fields.many2one('product.product',string=u'物料',domain=[('categ_id','not in',[6])]),
'line_id':fields.one2many('prod.choice.origin.line','order_id',string=u'物料明细', copy=True),
}
class prod_choice_origin_line(osv.osv):
_name='prod.choice.origin.line'
_description='prod choice origin'
_columns={
'sequence':fields.integer(u'序号'),
'order_id':fields.many2one('prod.choice.origin',u'上级 单号',required=True, ondelete='cascade', select=True,),
'choice':fields.boolean(u'请选择'),
'product_id':fields.many2one('product.product',string=u'物料',domain=[('sale_ok', '=', True)]),
'partner_id':fields.many2one('res.partner', u'供应商',domain=[('supplier', '=', True)],select=True),
'wl_qty':fields.float(u'库存',),
'realy_qty':fields.float(u'实用数量'),
'location_id':fields.many2one('stock.location',u'位置'),
'date_in':fields.date(u'入库日期'),
}
_defaults = {
'sequence':1,
}
<?xml version="1.0"?>
<openerp>
<data>
<!--form view-->
<record id="view_prod_choice_origin_form" model="ir.ui.view">
<field name="name">prod.choice.origin.form</field>
<field name="model">prod.choice.origin</field>
<field name="arch" type="xml">
<form >
<sheet>
<h2>
<label string="物料选择"/>
</h2>
<notebook>
<page >
<group col="4">
<group>
<field name="product_id" on_change="onchange_product_id(product_id)"/>
</group>
<group></group>
<group></group>
<group></group>
</group>
<field name="line_id">
<tree editable="bottom">
<field name="sequence" />
<field name="choice" />
<field name="partner_id" />
<field name="product_id"/>
<field name="lot_id"/>
<field name="wl_qty" />
<field name="realy_qty" />
<field name="location_id"/>
<field name="date_in"/>
</tree>
</field>
</page>
</notebook>
<button name="action_add_za_order" string="添加" type="object" />
</sheet>
</form>
</field>
</record>
</data>
</openerp>
security.xml <record id="group_purchase_reopen_pring" model="res.groups">
<field name="category_id" ref="base.module_category_purchase_management" />
<field name="name">显示打印订单</field>
<field name="implied_ids" eval="[(4, ref('base.group_user'))]"/>
<!--<field name="in_group_77" default="true"/>-->
<field name="comment">显示打印订单 </field>
</record>
<report
header="False"
attachment_use="False"
model="purchase.origin"
report_type="qweb-pdf"
id="print_purchase_add_menu_02"
string="订单打印"
name="demo_print_report.print_po_wx"
file="demo_print_report.print_po_wx"
groups="demo_purchase.group_purchase_reopen_print"
/>
produc_tobj_ids=productobj.search(cr,uid,[('pname','=',pna),('product_color_id','=',pcol_id),('categ_id','=',6)],limit =1, context=context)
odoo学习之弹框显示的更多相关文章
- 【jquery+easyUI】-- $.messager.show 弹框显示
三种基本弹框 1.提示框,一秒停留 $.messager.show({ title: '提示', msg: '修改成功!', showType: 'fade', //设置显示类型 style: { l ...
- 单击HighCharts柱形体弹框显示详细信息
上篇博客介绍了如何在HighCharts统计图表下生成表格,二者相互结合,可以对数据进行更好的统计分析.在统计的同时,如果需要想要及时查看详细信息的话,就得再加一个功能,就是单击柱形体,显示该项下的详 ...
- JavaScript 图片弹框显示
function fnCreate(src) { /* 要创建的div的classname */ var ClassName = "thumb ...
- win10系统rational rose 安装后打开弹框显示java.lang.ClassNotFoundException 解决方案
场景复现:安装Rational Rose,按照破解方法完成后,打开程序,会弹出对话框显示java.lang.ClassNotFoundException,在关闭程序时也会弹出一个对话框,并且程序不能关 ...
- vux弹框显示
//点击按钮,执行什么成功,失败用这个合适this.$vux.toast.show({ text: '添加成功'}) //点击按钮,提示出现的问题 this.$vux.toast.show({ tex ...
- android假设给TextView或EditText的email链接加下划线,并在点击在email连接上能够弹框显示
怎样把textview的一些文字加上背景色: Spannable str = new SpannableString("#fdsfdfsdfdsfd#"); Matcher mat ...
- winfrom 点击按钮button弹框显示颜色集
1.窗体托一个按钮button: 2.单击事件: private void btnForeColor_Click(object sender, EventArgs e) { using (ColorD ...
- layer.js 中弹框显示不全的问题
在使用 layer.js 做弹框的时候,遇到在浏览器缩小时,弹框显示不全的问题,如下: 这是不行的,因为我们有的时候想缩小浏览器视窗,但是一旦缩小到一定程度,就会把弹窗的关闭按钮遮住一部分,并且主体弹 ...
- dev右下角增加弹框提示信息
using System; using System.Drawing; using System.IO; using System.Threading; using System.Windows.Fo ...
随机推荐
- 如何在服务器上搭建svn
svn现在依然是一个流行的版本控制工具,但是大多数的人员只会使用客户端,并且也知道可以进行权限控制, 那么今天,我们就来给大家梳理一下 1.如何搭建svn的服务器 2.如何进行svn的权限控制 === ...
- 【转】Max2013脚本工具的乱码问题
转自:http://www.cnblogs.com/sitt/archive/2012/11/21/2780481.html 有时一些中文的脚本会在max2013中显示为乱码,是因为max2013将多 ...
- Android6.0源码下载编译刷入真机
编译环境是Ubuntu12.04.手机nexus 5,编译安卓6.0.1源码并烧录到真机. 源码用的是科大的镜像:http://mirrors.ustc.edu.cn/aosp-monthly/,下载 ...
- weblogic系列漏洞整理 -- 1. weblogic安装
目录 0. 概述 1. 下载安装Java环境 2. 下载安装weblogic 安装 部署domain域 进入weblogic 3. 排错 如果出现如下错误 0. 概述 WebLogic是美国Oracl ...
- Javascript 高级程序设计--总结【一】
文档模式 混杂模式 标准模式 js 数据类型 Undefined Null 看做是一种空对象的引用 Boolean Number String Object typeof 返回类型 "un ...
- 字典Key值为变量
m='aaa4a' d = dict(name=m) print d['name']
- 使用KeePass管理两步验证
目录 使用KeePass管理两步验证 两步验证 KeePass中管理两步验证 KeeTrayTOTP插件使用 使用KeePass管理两步验证 文:铁乐与猫 2018-9-9 KeePass 是一款管理 ...
- Linux防火墙基础与编写防火墙规则
Iptables采用了表和链的分层结构,每个规则表相当于内核空间的一个容器,根据规则集的不同用途划分为默认的四个表,raw表,mangle表,nat表,filter表,每个表容器内包括不同的规则链,根 ...
- (16)Python练习题
练习题一: 练习题二:
- ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO) ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: YES)
windows下,以上两个错误的解决方法 工具/原料 windows 8 MySql 方法/步骤 找到配置文件my.ini ,然后将其打开,可以选择用记事本打开 打开后,搜索mysq ...