From 00f94ec61fad94ed49f646396292228187b50173 Mon Sep 17 00:00:00 2001 From: Miqdad Date: Tue, 21 Oct 2025 11:46:47 +0700 Subject: add asset type in assets --- indoteknik_custom/models/account_asset.py | 4 ++++ indoteknik_custom/views/account_asset_views.xml | 3 +++ 2 files changed, 7 insertions(+) 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: diff --git a/indoteknik_custom/views/account_asset_views.xml b/indoteknik_custom/views/account_asset_views.xml index 90c53623..776ab51f 100644 --- a/indoteknik_custom/views/account_asset_views.xml +++ b/indoteknik_custom/views/account_asset_views.xml @@ -12,6 +12,9 @@ type="object" /> + + + -- cgit v1.2.3