努力终有回报,这是这次研究的深刻体会,为了实现这个主表添加明细行,花了我很长时间也查阅了很多资料,没有一个地方能比较好的说明的,下面我主要提几个点,如何实现在主表下添加明细行。
1、是主表的ID就是关键索引,必须在明细表里体现,等下代码我体现一下;
2、要用fields.One2many来关联;
3、主要关注form视图;
4、models.py的源代码
# -*- coding: utf-8 -*-
fromodooimportmodels, fields, api
'''
这是Python代码,需要按照Python的规范编写
_name 表示该模块的名称,规范:模块名称.模型名称
'''
classcbsystem(models.Model):
_name ='cbsystem.cbsystem'
_inherit = ['mail.thread']#添加操作记录,还有需要在__manifest__.py中添加 'depends': ['base','mail'],
name = fields.Char(string=u'股票名称')#readonly=True,表示只读,如:name = fields.Char(string=u'股票名称',readonly=True)
code=fields.Char(string=u'股票代码')
syear=fields.Char(string=u'上市时间')
sshhy=fields.Char(string=u'所属行业')#要改成选择的数据,后面再处理,我在想是否也搞成标签形式
shxtc=fields.Char(string=u'核心题材')#最好搞成标签的形式,毕竟题材这个东西太多了
sgsgk=fields.Text(string=u'公司概况')
orderid=fields.One2many("cbsystem.cbmxb",'zbid')
#orderid这个是关键,与子表对应的(cbsystem.cbmxb,zbid),大家一定要注意,而且用的是One2many作关联,这是我自己摸索实现了的
classcbsystemmxb(models.Model):
_name ='cbsystem.cbmxb'
name = fields.Char(string=u'股票名称')#readonly=True,表示只读,如:name = fields.Char(string=u'股票名称',readonly=True)
zbid=fields.One2many('cbsystem.cbsystem','id')
#zbid这个是与上面主表(cbsystem.cbsystem,id)对应的
code=fields.Char(string=u'股票代码')
syear=fields.Integer(string=u'年份')
sjd=fields.Integer(string=u'季度')
sbblx=fields.Char(string=u'报表类型')
kmcode=fields.Char(string=u'科目代码')
kmname=fields.Char(string=u'科目名称')
kmfamount=fields.Integer(string=u'发生额')
5、form视图源代码
<odoo>
<data>
<!-- explicit list view definition -->
<!-- tree视图 -->
<record model="ir.ui.view" id="cbsystem_view_list">
<field name="name">股票列表</field>
<field name="model">cbsystem.cbsystem</field>
<field name="arch" type="xml">
<tree>
<field name="name"/>
<field name="code"/>
<field name="syear"/>
<field name="sshhy"/>
<field name="shxtc"/>
<!-- <field name="sgsgk"/>-->
</tree>
</field>
</record>
<!-- form 视图-->
<record model="ir.ui.view" id="cbsystem_form_list">
<field name="name">股票列表</field>
<field name="model">cbsystem.cbsystem</field>
<field name="arch" type="xml">
<form>
<sheet>
<group name="group_top" string="股票列表">
<field name="name"/>
<field name="code"/>
<field name="syear"/>
<field name="sshhy"/>
<field name="shxtc"/>
<field name="sgsgk"/>
</group>
<separator string='明细表'/>
<field name='orderid'>
<!-- 这个写法也很关键,个人理解是以'orderid'为索引关键的关联关系 --->
<tree string='List' editable='bottom'>
<field name="kmcode"/>
<field name="kmname"/>
<field name="kmfamount"/>
</tree>
<form string='Lunch Order Form'>
<group>
<field name="kmcode"/>
<field name="kmname"/>
<field name="kmfamount"/>
</group>
</form>
</field>
</sheet>
<div class="oe_chatter">
<field name="message_follower_ids" widget="mail_followers"/>
<field name="message_ids" widget="mail_thread"/>
</div>
</form>
</field>
</record>
<!-- 视图动作 -->
<act_window id="action_cbsystem_cbsystem" name="公司信息" res_model="cbsystem.cbsystem" view_mode="tree,form" />
<!-- 顶级菜单 -->
<menuitem name="财报系统" id="menu_cbbase"/>
<!-- 二级菜单 -->
<menuitem name="公司信息" id="menu_cbsystem_cbbase" parent="menu_cbbase" action="action_cbsystem_cbsystem" sequence="0"/>
</data>
</odoo>
</field>
</sheet>
<divclass="oe_chatter">
<fieldname="message_follower_ids"widget="mail_followers"/>
<fieldname="message_ids"widget="mail_thread"/>
</div>
</form>
</field>
</record>
<!-- 视图动作 -->
<act_windowid="action_cbsystem_cbsystem"name="公司信息"res_model="cbsystem.cbsystem"view_mode="tree,form"/>
<!-- 顶级菜单 -->
<menuitemname="财报系统"id="menu_cbbase"/>
<!-- 二级菜单 -->
<menuitemname="公司信息"id="menu_cbsystem_cbbase"parent="menu_cbbase"action="action_cbsystem_cbsystem"sequence="0"/>
</data>
</odoo>