私はopenERPバージョン7で新しいモジュールを作成しようとしていました。私のクラスには次のコードがあります。
_columns = {
'hour_from' : fields.float('Work from', required=True),
'hour_to' : fields.float("Work to", required=True),
'totalhour': fields.function(_total, method=True, string='Total Attendance', multi="_total"),
}
クラスに関数を追加するための解決策が見つかりません。必要な関数はとの合計を返しhour_from
ますhour_to
。誰か助けてもらえますか?
_columnsを宣言する前にこのコードを試してみます:
def _total(self, cr, uid, ids, name, args, context=None):
res = {}
res['totalhour'] = hour_from + hour_to
return res
サーバーを再起動すると、次のエラーが発生します。
No handler found.
(他の投稿からの更新)
これが私のコードです:
def _total(self, cr, uid, ids, name, args, context=None):
res = {}
for record in self.browse(cr, uid, ids, context=context):
res['totalhour'] = record.hour_from + record.hour_to
return res
class hr_analytic_timesheet(osv.osv):
_name = "hr.analytic.timesheet"
_inherit = "hr.analytic.timesheet"
_columns = {
'hour_from' : fields.float('Work from', required=True, help="Start and End time of working.", select=True),
'hour_to' : fields.float("Work to", required=True),
'totalhour' : fields.function(_total, type='float', method=True, string='Total Hour'),
}
hr_analytic_timesheet()
私のxml:
<record id="view_ov_perf_timesheet_line_tree" model="ir.ui.view">
<field name="name">hr.analytic.timesheet.tree</field>
<field name="model">hr.analytic.timesheet</field>
<field name="inherit_id" ref="hr_timesheet.hr_timesheet_line_tree"/>
<field name="arch" type="xml">
<field name="unit_amount" position="replace">
<field name="hour_from" widget="float_time" string="Heure début"/>
<field name="hour_to" widget="float_time" string="Heure fin" />
<field name="totalhour" widget="float_time"/>
</field>
</field>
</record>
行を追加または編集したいときに、次のエラーが発生します。
File "C:\Program Files\OpenERP 7.0-20130205-000102\Server\server\.\openerp\osv\orm.py", line 3729, in _read_flat
KeyError: 53
pleeseを助けてくれませんか
これが私のコードです。
def _total(self, cr, uid, ids, name, args, context=None):
res = {}
for record in self.browse(cr, uid, ids, context=context):
res['totalhour'] = record.hour_from + record.hour_to
return res
class hr_analytic_timesheet(osv.osv):
_name = "hr.analytic.timesheet"
_inherit = "hr.analytic.timesheet"
_columns = {
'hour_from' : fields.float('Work from', required=True, help="Start and End time of working.", select=True),
'hour_to' : fields.float("Work to", required=True),
'totalhour' : fields.function(_total, type='float', method=True, string='Total Hour'),
}
hr_analytic_timesheet()
私のxml:
<record id="view_ov_perf_timesheet_line_tree" model="ir.ui.view">
<field name="name">hr.analytic.timesheet.tree</field>
<field name="model">hr.analytic.timesheet</field>
<field name="inherit_id" ref="hr_timesheet.hr_timesheet_line_tree"/>
<field name="arch" type="xml">
<field name="unit_amount" position="replace">
<field name="hour_from" widget="float_time" string="Heure début"/>
<field name="hour_to" widget="float_time" string="Heure fin" />
<field name="totalhour" widget="float_time"/>
</field>
</field>
</record>
行を追加または再作成したい場合、次のエラーが発生します。
File "C:\Program Files\OpenERP 7.0-20130205-000102\Server\server\.\openerp\osv\orm.py", line 3729, in _read_flat
KeyError: 53