コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
2611 ビュー

Hey, Can anyone please help me finding the solution for this.

      I've created a new menu "AssetMenu1" under "Projects" and created some customized fields in it. Now I want to map the existing "Assets" menu fields data(which is under "Accounting") to the newly created menu "AssetMenu1".

Please guide me.

Thankyou.

アバター
破棄
著作者 最善の回答

Hi Jignesh, thanks for your answer.

   I inherited the account.asset.asset model. But, My requirement is that, whenever I create a record in pre-defined "Asset" menu, I should be able to access the same data in the fields into the customized menu "AssetMenu1" created by me.

Here is my code:

# assetproject.py


from openerp import fields,models

class asset_real(models.Model):

      _name='account.asset.asset'

     _inherit='account.asset.asset'

      asset_ids=fields.One2many('asset.submenu','name','Asset')


class asset_submenu(models.Model):

       _name='asset.submenu'

       name=fields.Many2one('account.asset.asset',String="Asset Name")

      reference=fields.Char("Reference")

      gross_value=fields.Many2one('account.asset.asset',String="Gross Value")

 

アバター
破棄

Do you not access data from your custom model ?

最善の回答

Hello Sai Kumar,


Inherit the account.asset.asset model.

Add the fields which is want by you. create action for it and give it to your custom menu.


Hope it will works for you.

Thanks,

アバター
破棄