diff options
| author | Miqdad <ahmadmiqdad27@gmail.com> | 2025-10-21 11:46:47 +0700 |
|---|---|---|
| committer | Miqdad <ahmadmiqdad27@gmail.com> | 2025-10-21 11:46:47 +0700 |
| commit | 00f94ec61fad94ed49f646396292228187b50173 (patch) | |
| tree | 51ee615387806c72629d51366cc3f28157b4398c /indoteknik_custom/models | |
| parent | fdf9425e60b8c91ef797f7c7b88baf98f2bd4619 (diff) | |
<Miqdad> add asset type in assets
Diffstat (limited to 'indoteknik_custom/models')
| -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: |
