diff options
| author | FIN-IT_AndriFP <it@fixcomart.co.id> | 2025-10-23 09:50:40 +0700 |
|---|---|---|
| committer | FIN-IT_AndriFP <it@fixcomart.co.id> | 2025-10-23 09:50:40 +0700 |
| commit | 310f92c9b825a458618daa3b00581b790f8e009e (patch) | |
| tree | 2b8957db596c86525c009ef5e62e23ccd6397f8f /indoteknik_custom/models/account_asset.py | |
| parent | 58a6ca75b9b1bb07ea958ab4bfb553140daeb8f8 (diff) | |
| parent | 8d649f97dade329859b5770d1f3972cdd7233f97 (diff) | |
Merge branch 'odoo-backup' of https://bitbucket.org/altafixco/indoteknik-addons into pum-v3
Diffstat (limited to 'indoteknik_custom/models/account_asset.py')
| -rw-r--r-- | indoteknik_custom/models/account_asset.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indoteknik_custom/models/account_asset.py b/indoteknik_custom/models/account_asset.py index bd5f9adb..211ab229 100644 --- a/indoteknik_custom/models/account_asset.py +++ b/indoteknik_custom/models/account_asset.py @@ -4,6 +4,10 @@ from odoo.exceptions import AccessError, UserError, ValidationError class AccountAsset(models.Model): _inherit = 'account.asset.asset' + asset_type = fields.Selection(string='Tipe Aset', selection=[ + ('aset_gudang', ' Aset Gudang'), + ('aset_kantor', 'Aset Kantor'), + ], tracking=True ) def action_close_asset(self): for asset in self: |
