我在时间表详细信息中添加了两个字段,我想在 account_analytic_line 表中添加这两个字段的值,我该怎么办?
这是.py文件
from osv import osv, fields
class hr_analytic_timesheet(osv.osv):
_inherit = "hr.analytic.timesheet"
_columns = {
'start_at1':fields.char('Start at', size=170),
'end_at1':fields.char('End at', size=170),
}
hr_analytic_timesheet()
这是view.xml文件
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record model="ir.ui.view" id="hr_timesheet_inherit">
<field name="name">hr.timesheet.sheet.form</field>
<field name="model">hr_timesheet_sheet.sheet</field>
<field name="type">form</field>
<field name="inherit_id" ref="hr_timesheet_sheet.hr_timesheet_sheet_form" />
<field name="arch" type="xml">
<xpath expr="//field[@name='unit_amount']" position="after">
<field name="start_at1" />
<field name="end_at1" />
</xpath>
</field>
</record>
</data>
</openerp>
答案 0 :(得分:2)
当您查看第2页上的技术纪念品(https://www.openerp.com/files/memento/)时,您将在OpenERP中看到两种类型的继承。
hr.analytic.timesheet模型正在使用第二个(委托或装饰),因此您的字段不会进入account_analytic_line表,而是进入hr_analytic_timesheet表。
如果你真的想在account_analytic_line表中使用这些字段,只需从analytic.account.line继承并扩展该类。您现在也可以使用hr.analytic.timesheet中的新字段,因此您的id为“hr_timesheet_inherit”的视图应该适合(此处无需更改)。
希望这会有所帮助。