openerp 6.1.1を使用していて、thunderbirdアドオンから申請者を作成しようとしています。
hr_applicantモデルにいくつかのフィールドを追加するカスタムモジュールを作成しました。
thunderbird OpenERPアドオンには、申請者を作成するオプションが表示されません。
カスタムモジュールを削除すると、thunderibirdアドオンのオプションが表示されます。
カスタムモジュールで何が間違っているのかわかりません。
class hr_applicant_custom (osv.osv):
_name = 'hr.applicant'
_inherit = 'hr.applicant'
_columns = {
'year_passing': fields.integer('Passing Year', help='Year of passing'),
'experience': fields.float('Experience', digits=(3,1)),
}
hr_applicant_custom()
ご意見をお聞かせください。前もって感謝します。